/haiku/src/system/libroot/posix/glibc/arch/generic/ |
H A D | mplog.h | 32 static const number 37 static const number
|
H A D | mpsqrt.h | 32 static const number 38 static const number
|
H A D | sincos32.h | 32 static const number 38 static const number
|
H A D | mpatan.h | 33 static const number 44 static const number 81 static const number 93 static const number 100 static const number 111 static const number 148 static const number 160 static const number
|
/haiku/src/add-ons/kernel/file_systems/reiserfs/ |
H A D | IndirectItem.h | 47 uint number = 0; local 49 number = le2h(((uint32*)GetData())[index]); 50 return number;
|
H A D | BlockCache.cpp | 121 BlockCache::GetBlock(uint64 number, Block **result) argument 124 if (!result || number >= fBlockCount) 131 Block *block = _FindBlock(number); 134 error = _ReadBlock(number, &block); 165 BlockCache::_FindBlock(uint64 number) argument 168 if (block->GetNumber() == number) 176 BlockCache::_ReadBlock(uint64 number, Block **result) argument 185 status_t error = block->_SetTo(this, number); 197 BlockCache::_GetBlock(off_t number) const 200 return const_cast<void*>(block_cache_get(fCacheHandle, number)); 205 _ReleaseBlock(off_t number, void *data) const argument [all...] |
H A D | BlockCache.h | 45 status_t GetBlock(uint64 number, Block **block); 49 Block *_FindBlock(uint64 number); 50 status_t _ReadBlock(uint64 number, Block **block); 54 void *_GetBlock(off_t number) const; 55 void _ReleaseBlock(off_t number, void *data) const;
|
/haiku/src/system/libroot/posix/ |
H A D | inttypes.c | 12 imaxabs(intmax_t number) argument 14 return number > 0 ? number : -number;
|
/haiku/src/apps/glteapot/ |
H A D | FPS.cpp | 18 FPS::drawChar(GLfloat x, GLfloat y, GLint number) argument 54 if (numbers[number][0]) { 59 if (numbers[number][1]) { 64 if (numbers[number][2]) { 69 if (numbers[number][3]) { 74 if (numbers[number][4]) { 79 if (numbers[number][5]) { 84 if (numbers[number][6]) { 100 int number = 1; local 101 while (ifps > number) { [all...] |
H A D | FPS.h | 15 static void drawChar(GLfloat x, GLfloat y, GLint number);
|
/haiku/src/apps/terminal/ |
H A D | TitlePlaceholderMapper.cpp | 27 TitlePlaceholderMapper::MapPlaceholder(char placeholder, int64 number, argument 35 // If a number is given, extract the respective number of rightmost 38 if (numberGiven && number > 0) { 40 while (number > 0 && index > 0) { 42 number--; 45 if (number == 0 && index >= 0 && index + 1 < directory.Length()) 90 WindowTitlePlaceholderMapper::MapPlaceholder(char placeholder, int64 number, argument 112 return TitlePlaceholderMapper::MapPlaceholder(placeholder, number, 130 TabTitlePlaceholderMapper::MapPlaceholder(char placeholder, int64 number, argument [all...] |
H A D | TitlePlaceholderMapper.h | 23 int64 number, bool numberGiven, 40 int64 number, bool numberGiven, 57 int64 number, bool numberGiven,
|
H A D | PatternEvaluator.h | 28 int64 number, bool numberGiven,
|
/haiku/src/add-ons/kernel/file_systems/udf/ |
H A D | PhysicalPartition.cpp | 8 PhysicalPartition::PhysicalPartition(uint16 number, uint32 start, uint32 length) argument 10 fNumber(number), 14 TRACE(("PhysicalPartition::PhysicalPartition: number = %d, start = %" 15 B_PRIu32 ",length = %" B_PRIu32 "\n", number, start, length));
|
H A D | SparablePartition.cpp | 12 SparablePartition::SparablePartition(uint16 number, uint32 start, uint32 length, argument 15 fNumber(number), 22 TRACE(("SparablePartition::SparablePartition: number = %d, start = %" 23 B_PRIu32 ",length = %" B_PRIu32 ", packetLength = %d\n", number, start,
|
/haiku/headers/libs/print/libprint/ |
H A D | PagesView.h | 23 void _DrawPages(BPoint position, int number, int count); 24 void _DrawPage(BPoint position, int number);
|
/haiku/src/apps/showimage/ |
H A D | Filter.h | 47 #define to_fixed_point(number) static_cast<fixed_point>((number) * kFPPrecisionFactor) 48 #define from_fixed_point(number) ((number) / kFPPrecisionFactor) 49 #define to_float(number) from_fixed_point(static_cast<float>(number)) 51 #define int_value(number) ((number) & kFPInverseMask) 52 #define tail_value(number) ((number) [all...] |
/haiku/src/system/kernel/arch/x86/32/ |
H A D | signals.cpp | 55 #define TO_STRING_LITERAL_HELPER(number) #number 56 #define TO_STRING_LITERAL(number) TO_STRING_LITERAL_HELPER(number) 64 // syscall number to eax
|
/haiku/headers/private/system/ |
H A D | vfs_defs.h | 20 int number; member in struct:fd_info
|
/haiku/src/add-ons/kernel/drivers/midi/usb_midi/ |
H A D | devlist.cpp | 90 int number = 0; local 95 if (port->device->devnum == number) { 96 number++; 102 return number;
|
/haiku/src/tests/system/kernel/cache/ |
H A D | block_cache_test.cpp | 21 #define TEST_BLOCKS(number, count) \ 22 test_blocks(number, count, __LINE__) 26 #define TEST_BLOCK_DATA(block, number, type) \ 27 if ((block)->type ## _data != NULL && gBlocks[(number)]. type == 0) \ 28 error(line, "Block %Ld: " #type " should be NULL!", (number)); \ 29 if ((block)->type ## _data != NULL && gBlocks[(number)]. type != 0 \ 30 && *(int32*)(block)->type ## _data != gBlocks[(number)]. type) { \ 32 (number), *(int32*)(block)->type ## _data, \ 33 gBlocks[(number)]. type); \ 185 test_blocks(off_t number, int3 argument [all...] |
/haiku/src/system/libroot/posix/stdlib/ |
H A D | strtol.c | 91 * base. An input number that is greater than this value, if 100 * the number is too big, and we will return a range error. 142 long __strtol_internal(const char *number, char **_end, int base, int group); 145 __strtol_internal(const char *number, char **_end, int base, int group) argument 150 return strtol(number, _end, base);
|
H A D | strtoll.c | 91 * base. An input number that is greater than this value, if 100 * next digit is > 7 (or 8), the number is too big, and we will 144 long long __strtoll_internal(const char *number, char **_end, int base, int group); 147 __strtoll_internal(const char *number, char **_end, int base, int group) argument 152 return strtoll(number, _end, base);
|
H A D | strtoul.c | 121 unsigned long __strtoul_internal(const char *number, char **_end, int base, int group); 124 __strtoul_internal(const char *number, char **_end, int base, int group) argument 129 return strtoul(number, _end, base);
|
H A D | strtoull.c | 122 unsigned long long __strtoull_internal(const char *number, char **_end, int base, int group); 125 __strtoull_internal(const char *number, char **_end, int base, int group) argument 130 return strtoull(number, _end, base);
|