Searched refs:number (Results 1 - 25 of 142) sorted by relevance

123456

/haiku/src/system/libroot/posix/glibc/arch/generic/
H A Dmplog.h32 static const number
37 static const number
H A Dmpsqrt.h32 static const number
38 static const number
H A Dmpatan.h33 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 DIndirectItem.h47 uint number = 0; local
49 number = le2h(((uint32*)GetData())[index]);
50 return number;
H A DBlockCache.cpp122 BlockCache::GetBlock(uint64 number, Block **result) argument
125 if (!result || number >= fBlockCount)
132 Block *block = _FindBlock(number);
135 error = _ReadBlock(number, &block);
166 BlockCache::_FindBlock(uint64 number) argument
169 if (block->GetNumber() == number)
177 BlockCache::_ReadBlock(uint64 number, Block **result) argument
186 status_t error = block->_SetTo(this, number);
198 BlockCache::_GetBlock(off_t number) const
201 return const_cast<void*>(block_cache_get(fCacheHandle, number));
206 _ReleaseBlock(off_t number, void *data) const argument
[all...]
H A DBlockCache.h45 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 Dinttypes.c12 imaxabs(intmax_t number) argument
14 return number > 0 ? number : -number;
/haiku/src/apps/glteapot/
H A DFPS.cpp18 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 DFPS.h15 static void drawChar(GLfloat x, GLfloat y, GLint number);
/haiku/src/apps/terminal/
H A DTitlePlaceholderMapper.cpp27 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 DTitlePlaceholderMapper.h23 int64 number, bool numberGiven,
40 int64 number, bool numberGiven,
57 int64 number, bool numberGiven,
H A DPatternEvaluator.h28 int64 number, bool numberGiven,
H A DPatternEvaluator.cpp88 // parse a number, if there is one
89 int64 number = 0; local
93 number = strtoll(pattern, &numberEnd, 10);
100 number, hasNumber, mappedValue)) {
/haiku/src/add-ons/kernel/file_systems/udf/
H A DPhysicalPartition.cpp8 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 DSparablePartition.cpp12 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 DPagesView.h23 void _DrawPages(BPoint position, int number, int count);
24 void _DrawPage(BPoint position, int number);
/haiku/src/apps/showimage/
H A DFilter.h47 #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/libroot/posix/musl/time/
H A Dstrftime.c77 goto number;
82 goto number;
96 goto number;
99 goto number;
104 goto number;
108 goto number;
111 goto number;
114 goto number;
130 goto number;
133 goto number;
[all...]
/haiku/src/system/kernel/arch/x86/32/
H A Dsignals.cpp55 #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 Dvfs_defs.h20 int number; member in struct:fd_info
/haiku/src/system/kernel/arch/x86/64/
H A Dsignals.cpp32 #define TO_STRING_LITERAL_HELPER(number) #number
33 #define TO_STRING_LITERAL(number) TO_STRING_LITERAL_HELPER(number)
/haiku/src/system/kernel/arch/riscv64/
H A Darch_commpage.cpp33 #define TO_STRING_LITERAL_HELPER(number) #number
34 #define TO_STRING_LITERAL(number) TO_STRING_LITERAL_HELPER(number)
/haiku/src/add-ons/kernel/drivers/midi/usb_midi/
H A Ddevlist.cpp90 int number = 0; local
95 if (port->device->devnum == number) {
96 number++;
102 return number;
/haiku/src/tests/system/kernel/cache/
H A Dblock_cache_test.cpp21 #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 %lld: " #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/malloc_debug/
H A Dmalloc_debug_api.h51 is_valid_alignment(size_t number) argument
54 return ((~number + 1) | ((number << 1) - 1)) == ~0UL;

Completed in 818 milliseconds

123456