Searched refs:digit (Results 1 - 17 of 17) sorted by relevance

/vbox/src/VBox/Runtime/common/math/gcc/
H A Dqdivrem.c52 #define B ((int)1 << HALF_BITS) /* digit base */
54 /* Combine two `digits' to make a single two-digit number. */
59 typedef unsigned short digit; typedef
61 typedef u_int digit; typedef
64 static void shl __P((digit *p, int len, int sh));
79 digit *u, *v, *q;
80 digit v1, v2;
83 digit uspace[5], vspace[5], qspace[5];
121 u[1] = (digit)HHALF(tmp.ul[H]);
122 u[2] = (digit)LHAL
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/NetUtil/
H A Dinet_network.c72 int digit, base; local
77 val = 0; base = 10; digit = 0;
79 digit = 1, base = 8, cp++;
88 digit = 1;
94 digit = 1;
99 if (!digit)
H A Dinet_addr.c134 int digit; local
145 val = 0; base = 10; digit = 0;
152 digit = 1 ;
161 digit = 1;
167 digit = 1;
191 * Did we get a valid digit?
193 if (!digit)
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dmemp.c272 char digit[] = "0"; local
274 digit[0] = '0' + (memp_type/10);
275 strcat(errstr, digit);
277 digit[0] = '0' + (memp_type%10);
278 strcat(errstr, digit);
305 char digit[] = "0"; local
307 digit[0] = '0' + (memp_type/10);
308 strcat(errstr, digit);
310 digit[0] = '0' + (memp_type%10);
311 strcat(errstr, digit);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c26 * being an internal Python long digit, in base PyLong_BASE).
79 ((PY_SSIZE_T_MAX - offsetof(PyLongObject, ob_digit))/sizeof(digit))
147 digit *p = v->ob_digit;
151 *p++ = (digit)(t & PyLong_MASK);
175 digit *p = v->ob_digit;
178 *p++ = (digit)(ival & PyLong_MASK);
217 digit bits = (digit)frac;
501 digit msd = v->ob_digit[ndigits - 1];
574 8*numsignificantbytes bits, and each Python long digit ha
[all...]
/vbox/src/VBox/Devices/Network/slirp/
H A Dresolv_conf_parser.c98 int xdigit, digit, dot_number; local
103 digit = 1;
119 digit &= (isdigit(tok) || (tok == '.'));
169 digit &= (isdigit(tok) || (tok == '.'));
176 if (dot_number == 3 && digit)
178 else if (dot_number == 4 && digit)
188 if (digit || xdigit)
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dstring.c569 unsigned char digit; local
577 digit = pszStr[0] - '0';
578 if (digit > 9)
582 result += digit;
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/ResetVector/Vtf0/Ia32/
H A DSearchForBfvBase.asm37 ; just below 4GB. (Addresses at 0xffHHH000 where H is any hex digit.)
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprprf.c267 int digit = (((unsigned long)num) % radix) & 0xF; local
268 *--cvt = hexp[digit];
309 PRInt32 digit; local
312 LL_L2I(digit, rem);
313 *--cvt = hexp[digit & 0xf];
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsTextFormatter.cpp398 int digit = (((unsigned long)num) % radix) & 0xF; local
399 *--cvt = hexp[digit];
440 PRInt32 digit; local
443 LL_L2I(digit, rem);
444 *--cvt = hexp[digit & 0xf];
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Python/
H A Dmarshal.c157 digit d;
580 digit d;
604 d += (digit)md << j*PyLong_MARSHAL_SHIFT;
613 /* topmost marshal digit should be nonzero */
620 d += (digit)md << j*PyLong_MARSHAL_SHIFT;
622 /* top digit should be nonzero, else the resulting PyLong won't be
629 "bad marshal data (digit out of range in long)");
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_lex.l293 * digit or a +/- sign, process it as an integer token.
413 "invalid digit %c\n", yytext, *p);
/vbox/src/VBox/Devices/Graphics/BIOS/
H A Dvgabios.c2054 uint16_t arg, digit, nibble; local
2075 digit = format_width - 1;
2077 nibble = (arg >> (4 * digit)) & 0x000f;
2082 digit--;
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Dsaaj-impl.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...
H A Dsjsxp.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...
H A Djaxws-rt.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...
/vbox/src/bldprogs/
H A DVBoxCPP.cpp3693 return vbcppExprParseError(pParser, "Expected hex digit following '0x'");

Completed in 107 milliseconds