| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/ |
| string.d | 26 radix = the numeric base to use in the conversion (defaults to 10) 31 char[] unsignedToTempString(uint radix = 10)(ulong value, return scope char[] buf) @safe 32 if (radix >= 2 && radix <= 16) 38 if (value < radix) 45 x = cast(uint)(value % radix); 46 value /= radix; 48 buf[--i] = cast(char)((radix <= 10 || x < 10) ? x + '0' : x - 10 + 'a'); 71 radix = the numeric base to use in the conversion (defaults to 10) 76 auto unsignedToTempString(uint radix = 10)(ulong value) @saf [all...] |
| /src/sys/kern/ |
| subr_blist.c | 30 * BLIST.C - Bitmap allocator/deallocator, using a radix tree with hinting 37 * A radix tree is used to maintain the bitmap. Two radix constants are 43 * low. When the radix tree is searched, allocation failures in subtrees 46 * The radix tree also implements two collapsed states for meta nodes: 53 * the general radix structure optimizes both allocations and frees. The 54 * radix tree should be able to operate well no matter how much 66 * LAYOUT: The radix tree is laid out recursively using a 75 * must be encompassed in larger root-node radix. 80 * radix is large enough that this restriction does not affect the swap 187 blist_blkno_t radix; local [all...] |
| /src/bin/ed/ |
| cbc.c | 263 int radix /* base (2 to 16) */) 268 case '2': return(radix > 2 ? 0x2 : -1); 269 case '3': return(radix > 3 ? 0x3 : -1); 270 case '4': return(radix > 4 ? 0x4 : -1); 271 case '5': return(radix > 5 ? 0x5 : -1); 272 case '6': return(radix > 6 ? 0x6 : -1); 273 case '7': return(radix > 7 ? 0x7 : -1); 274 case '8': return(radix > 8 ? 0x8 : -1); 275 case '9': return(radix > 9 ? 0x9 : -1); 276 case 'A': case 'a': return(radix > 10 ? 0xa : -1) [all...] |
| /src/external/bsd/less/dist/ |
| lessecho.c | 70 static long lstrtol(char *s, char **pend, int radix) 90 /* Determine radix if caller does not specify. */ 91 if (radix == 0) 93 radix = 10; 99 radix = 16; 103 radix = 8; 120 if (v >= radix) 122 n = n * radix + v;
|
| output.c | 476 void funcname(type num, char *buf, int radix) \ 484 *--s = "0123456789ABCDEF"[num % radix]; \ 485 } while ((num /= radix) != 0); \ 498 type funcname(char *buf, char **ebuf, int radix) \ 505 if (digit < 0 || digit >= radix) break; \ 506 v |= ckd_mul(&val, val, radix); \ 521 static int funcname(type num, int radix) \ 524 typetoa(num, buf, radix); \
|
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| x-scheme.c | 258 is_integer_syntax (const char *str, int len, int radix) 265 where DIGIT is a hexadecimal digit whose value is below radix. */ 287 if (c >= radix) 299 is_other_number_syntax (const char *str, int len, int radix, bool unconstrained) 311 (Dot and exponent are allowed only if radix is 10.) 345 if (c >= 'D' && radix == 10) /* exponent? */ 351 if (c >= 'd' && radix == 10) /* exponent? */ 357 if (c >= radix) 368 if (!seen_digits && !(*p == '.' && radix == 10)) 392 if (c >= radix) 501 int radix = 10; local [all...] |
| x-librep.c | 212 int radix = -1; local 240 radix = 0; 250 radix = 0; 262 if (radix != 0) 269 radix = 2; 272 radix = 8; 275 radix = 10; 278 radix = 16; 284 radix = 0; 296 radix = 0 [all...] |
| /src/sbin/routed/ |
| Makefile | 6 SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/ |
| limits.cc | 51 const int __numeric_limits_base::radix; member in class:__numeric_limits_base 76 const int numeric_limits<bool>::radix; member in class:numeric_limits 101 const int numeric_limits<char>::radix; member in class:numeric_limits 126 const int numeric_limits<signed char>::radix; member in class:numeric_limits 151 const int numeric_limits<unsigned char>::radix; member in class:numeric_limits 178 const int numeric_limits<wchar_t>::radix; member in class:numeric_limits 204 const int numeric_limits<short>::radix; member in class:numeric_limits 229 const int numeric_limits<unsigned short>::radix; member in class:numeric_limits 254 const int numeric_limits<int>::radix; member in class:numeric_limits 279 const int numeric_limits<unsigned int>::radix; member in class:numeric_limits 304 const int numeric_limits<long>::radix; member in class:numeric_limits 329 const int numeric_limits<unsigned long>::radix; member in class:numeric_limits 354 const int numeric_limits<long long>::radix; member in class:numeric_limits 378 const int numeric_limits<unsigned long long>::radix; member in class:numeric_limits 465 const int numeric_limits<float>::radix; member in class:numeric_limits 490 const int numeric_limits<double>::radix; member in class:numeric_limits 515 const int numeric_limits<long double>::radix; member in class:numeric_limits 541 const int numeric_limits<char8_t>::radix; member in class:numeric_limits 567 const int numeric_limits<char16_t>::radix; member in class:numeric_limits 592 const int numeric_limits<char32_t>::radix; member in class:numeric_limits [all...] |
| /src/external/gpl3/binutils/dist/binutils/ |
| size.c | 48 radix = decimal; 95 -o|-d|-x --radix={8|10|16} Display numbers in octal, decimal or hex\n\ 124 {"radix", required_argument, 0, OPTION_RADIX}, 195 radix = decimal; 198 radix = octal; 201 radix = hex; 204 non_fatal (_("Invalid radix: %s\n"), optarg); 223 radix = decimal; 226 radix = hex; 229 radix = octal 47 radix = decimal; variable in typeref:enum:__anon7585 [all...] |
| /src/external/gpl3/binutils.old/dist/binutils/ |
| size.c | 48 radix = decimal; 95 -o|-d|-x --radix={8|10|16} Display numbers in octal, decimal or hex\n\ 124 {"radix", required_argument, 0, OPTION_RADIX}, 195 radix = decimal; 198 radix = octal; 201 radix = hex; 204 non_fatal (_("Invalid radix: %s\n"), optarg); 223 radix = decimal; 226 radix = hex; 229 radix = octal 47 radix = decimal; variable in typeref:enum:__anon9065 [all...] |
| /src/sys/netcan/ |
| can_proto.c | 42 #include <net/radix.h>
|
| /src/usr.bin/m4/ |
| tokenizer.l | 47 radix 0[rR][0-9]+:[0-9a-zA-Z]+ 52 {radix} { if (mimic_gnu) {
|
| /src/sbin/dmesg/ |
| dmesg.c | 71 static const char *radix; variable 112 APPENDFMT("%jd%s%.*ld%c", a, radix, pr, ms, \ 167 radix = nl_langinfo(RADIXCHAR); 168 if (radix == NULL) 169 radix = "."; /* could also select "," */ 377 printf(" %5jd%s", sec, radix); 388 (intmax_t)dt.tv_sec, radix,
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-strings/ |
| llvm-strings.cpp | 48 enum radix { none, octal, hexadecimal, decimal }; enum 49 static cl::opt<radix> 50 Radix("radix", cl::desc("print the offset within the file"), 55 static cl::alias RadixShort("t", cl::desc(""), cl::aliasopt(Radix)); 66 switch (Radix) {
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
| i915_gem_context_types.h | 17 #include <linux/radix-tree.h>
|
| i915_gem_pages.c | 178 radix_tree_for_each_slot(slot, &obj->mm.get_page.radix, &iter, 0) 179 radix_tree_delete(&obj->mm.get_page.radix, iter.index); 541 ret = radix_tree_insert(&iter->radix, idx, sg); 547 ret = radix_tree_insert(&iter->radix, idx + i, entry); 581 sg = radix_tree_lookup(&iter->radix, n); 585 * the radix tree will contain a value entry that points 594 sg = radix_tree_lookup(&iter->radix, base);
|
| i915_gem_object_types.h | 270 struct radix_tree_root radix; member in struct:drm_i915_gem_object::__anon4968::i915_gem_object_page_iter
|
| /src/sys/net/ |
| Makefile | 11 pfil.h pfkeyv2.h pfvar.h ppp-comp.h ppp_defs.h radix.h \
|
| /src/external/gpl3/gcc.old/dist/libgfortran/ |
| mk-kinds-h.sh | 102 # Check for the value of RADIX 103 echo "print *, radix(0._$k) ; end" > tmq$$.f90 104 radix=`$compile -S -fdump-parse-tree tmq$$.f90 | grep TRANSFER \ 122 echo "#define GFC_REAL_${k}_RADIX ${radix}"
|
| /src/usr.bin/bdes/ |
| bdes.c | 142 #define KEY_DEFAULT 0 /* interpret radix of key from key */ 377 tobinhex(char c, int radix) 382 case '2': return(radix > 2 ? 0x2 : -1); 383 case '3': return(radix > 3 ? 0x3 : -1); 384 case '4': return(radix > 4 ? 0x4 : -1); 385 case '5': return(radix > 5 ? 0x5 : -1); 386 case '6': return(radix > 6 ? 0x6 : -1); 387 case '7': return(radix > 7 ? 0x7 : -1); 388 case '8': return(radix > 8 ? 0x8 : -1); 389 case '9': return(radix > 9 ? 0x9 : -1) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| LiteralSupport.cpp | 560 if (*s == '0') { // parse radix 565 radix = 10; 782 /// parsing. If it detects a floating point number, the radix is set to 10. 784 assert((radix == 8 || radix == 10) && "Unexpected radix"); 793 << StringRef(s, 1) << (radix == 8 ? 1 : 0); 801 radix = 10; 810 radix = 10; 879 /// radix etc [all...] |
| /src/external/gpl3/binutils/dist/gas/ |
| expr.c | 265 integer_constant (int radix, expressionS *expressionP) 271 short int digit; /* Value of next digit in current radix. */ 285 they do fit into 32 bits. Numbers of any radix can have excess 308 if ((NUMBERS_WITH_SUFFIX || flag_m68k_mri) && radix == 0) 313 radix. For that matter, it might actually be a floating 323 radix = 10; 334 radix = 2; 336 radix = 10; 338 radix = 8; 340 radix = 16 [all...] |
| /src/external/gpl3/binutils.old/dist/gas/ |
| expr.c | 268 integer_constant (int radix, expressionS *expressionP) 274 short int digit; /* Value of next digit in current radix. */ 288 they do fit into 32 bits. Numbers of any radix can have excess 311 if ((NUMBERS_WITH_SUFFIX || flag_m68k_mri) && radix == 0) 316 radix. For that matter, it might actually be a floating 326 radix = 10; 337 radix = 2; 339 radix = 10; 341 radix = 8; 343 radix = 16 [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| APInt.cpp | 50 inline static unsigned getDigit(char cdigit, uint8_t radix) { 53 if (radix == 16 || radix == 36) { 59 if (r <= radix - 11U) 63 if (r <= radix - 11U) 66 radix = 10; 70 if (r < radix) 118 APInt::APInt(unsigned numbits, StringRef Str, uint8_t radix) 121 fromString(numbits, Str, radix); 488 unsigned APInt::getBitsNeeded(StringRef str, uint8_t radix) { [all...] |