Searched refs:radix (Results 1 - 13 of 13) sorted by relevance

/haiku-fatelf/src/system/kernel/util/
H A DRadixBitmap.cpp29 * BLIST.C - Bitmap allocator/deallocator, using a radix tree with hinting
36 * A radix tree is used to maintain the bitmap. Two radix constants are
42 * low. When the radix tree is searched, allocation failures in subtrees
45 * The radix tree also implements two collapsed states for meta nodes:
52 * the general radix structure optimizes both allocations and frees. The
53 * radix tree should be able to operate well no matter how much
65 * LAYOUT: The radix tree is layed out recursively using a
74 * must be encompassed in larger root-node radix.
79 * radix i
106 radix_bitmap_init(radix_node *node, uint32 radix, uint32 skip, uint32 slots) argument
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Dscm-exp.c43 scm_istr2int (char *str, int len, int radix) argument
92 if (c >= radix)
93 return SCM_BOOL_F; /* bad digit for radix */
94 inum *= radix;
108 scm_istring2number (char *str, int len, int radix) argument
112 char ex_p = 0, rx_p = 0; /* Only allow 1 exactness and 1 radix prefix */
127 radix = 2;
133 radix = 8;
139 radix = 10;
145 radix
[all...]
H A Dvalprint.c218 'o' and 'x' format do not include the standard C radix prefix
1056 /* Validate an input or output radix setting, and make sure the user
1058 setting the input radix to "10" never changes it! */
1067 set_input_radix_1 (int from_tty, unsigned radix)
1069 /* We don't currently disallow any input radix except 0 or 1, which don't
1071 radix greater than 1, even if we don't have unique digits for every
1072 value from 0 to radix-1, but in practice we lose on large radix values.
1073 We should either fix the lossage or restrict the radix range more.
1076 if (radix <
1065 set_input_radix_1(int from_tty, unsigned radix) argument
1096 set_output_radix_1(int from_tty, unsigned radix) argument
1136 unsigned radix; local
[all...]
H A Dstabsread.c3655 int radix = 10;
3671 radix = 8;
3675 upper_limit = LONG_MAX / radix;
3677 while ((c = *p++) >= '0' && c < ('0' + radix))
3681 n *= radix;
3689 if (radix == 8)
3649 int radix = 10; local
H A Dutils.c2818 /* Convert VAL to a numeral in the given radix. For
2819 * radix 10, IS_SIGNED may be true, indicating a signed quantity;
2826 int_string (LONGEST val, int radix, int is_signed, int width,
2829 switch (radix)
2813 int_string(LONGEST val, int radix, int is_signed, int width, int use_c_format) argument
H A Dbreakpoint.c4297 int radix;
4301 input radix. */
4307 input_radix = p->radix;
4328 /* Set language, input-radix, then reissue breakpoint command.
4329 Ensure the language and input-radix are restored afterwards. */
4331 old_lr.radix = input_radix;
4288 int radix; member in struct:lang_and_radix
/haiku-fatelf/src/bin/less/
H A Dlessecho.c73 lstrtol(s, radix, pend)
75 int radix;
96 /* Determine radix if caller does not specify. */
97 if (radix == 0)
99 radix = 10;
105 radix = 16;
109 radix = 8;
126 if (v >= radix)
128 n = n * radix + v;
/haiku-fatelf/src/system/libroot/posix/glibc/arch/generic/
H A Dmpa2.h37 /**/ radix = {{0x41700000, 0x00000000} }, /* 2**24 */ variable
57 /**/ radix = {{0x00000000, 0x41700000} }, /* 2**24 */ variable
77 #define RADIX radix.d
H A Dmpexp.h82 /**/ radix = {{0x41700000, 0x00000000} }, /* 2**24 */ variable
141 /**/ radix = {{0x00000000, 0x41700000} }, /* 2**24 */ variable
151 #define RADIX radix.d
/haiku-fatelf/headers/private/kernel/util/
H A DRadixBitmap.h29 * The radix bitmap structure is ported from FreeBSD.
51 // Bitmap which uses radix tree for hinting.
52 // The radix tree is stored in an array.
55 radix_slot_t radix; // coverage radix member in struct:radix_bitmap
57 radix_node *root; // root of radix tree, actually it is an array
/haiku-fatelf/src/add-ons/translators/exr/openexr/half/
H A DhalfLimits.h71 static const int radix = HALF_RADIX; member in class:std::numeric_limits
/haiku-fatelf/src/bin/coreutils/src/
H A Dod.c287 {"address-radix", required_argument, NULL, 'A'},
325 -A, --address-radix=RADIX decide how file offsets are printed\n\
1280 int radix; local
1289 /* Determine the radix we'll use to interpret S. If there is a `.',
1293 radix = 10;
1297 radix = 16;
1299 radix = 8;
1302 return xstrtoumax (s, NULL, radix, offset, "Bb") == LONGINT_OK;
1603 _("invalid output address radix `%c'; \
/haiku-fatelf/src/bin/gdb/gdb/rdi-share/
H A Darmdbg.h836 int Dbg_SetInputRadix(Dbg_MCState *state, int radix);

Completed in 183 milliseconds