Searched refs:spaces (Results 1 - 16 of 16) sorted by relevance

/haiku/src/apps/cortex/Persistence/
H A Dxml_export_utils.h46 // Writes the correct number of spaces to the given stream,
59 int16 spaces = column - (strlen(text) + context.indentLevel()); local
60 if(spaces < 0) spaces = 0;
61 while(spaces--) str << ' ';
H A DExportContext.h192 // return a string padded with spaces to the current
269 int16 spaces = column - (strlen(text) + context.indentLevel()); local
270 if(spaces < 0) spaces = 0;
271 while(spaces--) out << ' ';
/haiku/headers/private/graphics/common/
H A Dcreate_display_modes.h23 const color_space* spaces, uint32 spacesCount,
/haiku/src/kits/mail/
H A DHaikuMailFormatFilter.cpp51 //! Replaces tabs and other white space with spaces, compresses spaces.
60 int32 spaces = 0; local
64 spaces++;
66 if (spaces > 1)
67 memmove(buffer + i + 1 - spaces, buffer + i, count + 1);
68 spaces = 0;
239 int spaces = 0; local
242 spaces++;
244 } else if (spaces >
[all...]
/haiku/src/add-ons/accelerants/et6x00/
H A DProposeDisplayMode.c95 color_space spaces[] = {B_RGB15_LITTLE, B_RGB16_LITTLE, B_RGB24_LITTLE}; local
123 for (j = 0; j < (sizeof(spaces) / sizeof(color_space)); j++) {
127 dst->space = low.space = high.space = spaces[j];
/haiku/src/kits/storage/disk_device/
H A DPartitioningInfo.cpp171 // remove all spaces that are completely eaten
223 printf("BPartitioningInfo has %" B_PRId32 " spaces:\n", fCount);
241 // If the capacity is sufficient, we just need to copy the spaces to create
254 partitionable_space_data* spaces local
256 if (!spaces)
260 memcpy(spaces, fSpaces, index * sizeof(partitionable_space_data));
261 memcpy(spaces + index + count, fSpaces + index,
265 fSpaces = spaces;
/haiku/src/libs/stdc++/legacy/
H A Dlibiberty.h62 /* Allocate memory filled with spaces. Allocates using malloc. */
64 extern const char *spaces PARAMS ((int count));
/haiku/src/add-ons/accelerants/common/
H A Dcreate_display_modes.cpp99 bool CreateColorSpaces(const color_space* spaces,
339 ModeList::CreateColorSpaces(const color_space* spaces, uint32 count) argument
356 fModes[j + fCount - baseModeCount].space = spaces[i];
488 const color_space *spaces, uint32 spacesCount,
508 if (spaces == NULL) {
514 modes.CreateColorSpaces(spaces, spacesCount);
486 create_display_modes(const char* name, edid1_info* edid, const display_mode* initialModes, uint32 initialModeCount, const color_space *spaces, uint32 spacesCount, check_display_mode_hook hook, display_mode** _modes, uint32* _count) argument
/haiku/src/add-ons/accelerants/neomagic/
H A DProposeDisplayMode.c353 color_space spaces[4] = {B_RGB24_LITTLE,B_RGB16_LITTLE,B_RGB15_LITTLE,B_CMAP8}; local
380 for (j = 0; j < (sizeof(spaces) / sizeof(color_space)); j++)
385 dst->space = low.space = high.space = spaces[j];
/haiku/src/add-ons/accelerants/matrox/
H A DProposeDisplayMode.c485 color_space spaces[4] = {B_RGB32_LITTLE,B_RGB16_LITTLE,B_RGB15_LITTLE,B_CMAP8}; local
512 for (j = 0; j < (sizeof(spaces) / sizeof(color_space)); j++)
517 dst->space = low.space = high.space = spaces[j];
/haiku/src/add-ons/accelerants/skeleton/
H A DProposeDisplayMode.c535 color_space spaces[4] = {B_RGB32_LITTLE,B_RGB16_LITTLE,B_RGB15_LITTLE,B_CMAP8}; local
563 for (j = 0; j < (sizeof(spaces) / sizeof(color_space)); j++)
568 dst->space = low.space = high.space = spaces[j];
/haiku/src/add-ons/accelerants/via/
H A DProposeDisplayMode.c537 color_space spaces[4] = {B_RGB32_LITTLE,B_RGB16_LITTLE,B_RGB15_LITTLE,B_CMAP8}; local
565 for (j = 0; j < (sizeof(spaces) / sizeof(color_space)); j++)
570 dst->space = low.space = high.space = spaces[j];
/haiku/src/add-ons/accelerants/nvidia/
H A DProposeDisplayMode.c585 color_space spaces[4] = {B_RGB32_LITTLE, B_RGB16_LITTLE, B_RGB15_LITTLE, B_CMAP8}; local
599 for (j = 0; j < (sizeof(spaces) / sizeof(color_space)); j++) {
603 dst[si->mode_count].space = low.space = high.space = spaces[j];
/haiku/src/add-ons/accelerants/radeon/
H A DProposeDisplayMode.c431 static const color_space spaces[4] = { variable
484 // iterator through all colour spaces
485 for( i = 0; i < (sizeof(spaces) / sizeof(color_space)); i++ ) {
488 dst->space = low.space = high.space = spaces[i];
499 dst->space = spaces[i];
597 // (predefined-modes + fp-modes) * number-of-colour-spaces * number-of-(non)-span-modes
/haiku/src/servers/app/drawing/interface/local/
H A DAccelerantHWInterface.cpp1350 const uint32* spaces = fAccOverlaySupportedSpaces(&fDisplayMode); local
1351 if (spaces == NULL)
1354 for (int32 i = 0; spaces[i] != 0; i++) {
1355 if (spaces[i] == (uint32)colorSpace)
/haiku/src/kits/interface/
H A DView.cpp6876 int32 spaces = 2; local
6883 for (int i = 0; i < spaces; i++)
6892 spaces += 2;
6901 spaces -= 2;
6909 spaces -= 2;

Completed in 123 milliseconds