Searched refs:digits (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dns_ttl.c131 int ch, digits, dirty; local
135 digits = 0;
143 digits++;
146 if (digits == 0)
160 digits = 0;
163 if (digits > 0) {
H A Dinet_net_pton.c138 static const char digits[] = "0123456789"; local
175 n = (int)(strchr(digits, ch) - digits);
203 n = (int)(strchr(digits, ch) - digits);
H A Dns_name.c73 static char digits[] = "0123456789"; variable
137 *dn++ = digits[c / 100];
138 *dn++ = digits[(c % 100) / 10];
139 *dn++ = digits[c % 10];
188 if ((cp = strchr(digits, c)) != NULL) {
189 n = (int)(cp - digits) * 100;
191 (cp = strchr(digits, c)) == NULL) {
195 n += (int)(cp - digits) * 10;
197 (cp = strchr(digits, c)) == NULL) {
201 n += (int)(cp - digits);
[all...]
H A Dinet_pton.c124 static const char digits[] = "0123456789"; local
134 if ((pch = strchr(digits, ch)) != NULL) {
135 u_int new = *tp * 10 + (u_int)(pch - digits);
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.1/Objects/stringlib/
H A Dlocaleutil.h52 /* Fill in some digits, leading zeros, and thousands separator. All
90 * @digits: A pointer to the digits we're reading from. If count
92 * @n_digits: The number of digits in the string, in which we want
94 * @min_width: The minimum width of the digits in the output string.
119 STRINGLIB_CHAR *digits,
145 digits_end = digits + n_digits;
197 * @n_digits: The number of digits in the string, in which we want
205 STRINGLIB_CHAR *digits,
213 return _Py_InsertThousandsGrouping(buffer, n_buffer, digits, n_digit
117 _Py_InsertThousandsGrouping(STRINGLIB_CHAR *buffer, Py_ssize_t n_buffer, STRINGLIB_CHAR *digits, Py_ssize_t n_digits, Py_ssize_t min_width, const char *grouping, const char *thousands_sep) argument
203 _Py_InsertThousandsGroupingLocale(STRINGLIB_CHAR *buffer, Py_ssize_t n_buffer, STRINGLIB_CHAR *digits, Py_ssize_t n_digits, Py_ssize_t min_width) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/stringlib/
H A Dlocaleutil.h63 /* Fill in some digits, leading zeros, and thousands separator. All
101 * @digits: A pointer to the digits we're reading from. If count
103 * @n_digits: The number of digits in the string, in which we want
105 * @min_width: The minimum width of the digits in the output string.
130 STRINGLIB_CHAR *digits,
156 digits_end = digits + n_digits;
208 * @n_digits: The number of digits in the string, in which we want
216 STRINGLIB_CHAR *digits,
224 return _Py_InsertThousandsGrouping(buffer, n_buffer, digits, n_digit
128 _Py_InsertThousandsGrouping(STRINGLIB_CHAR *buffer, Py_ssize_t n_buffer, STRINGLIB_CHAR *digits, Py_ssize_t n_digits, Py_ssize_t min_width, const char *grouping, const char *thousands_sep) argument
214 _Py_InsertThousandsGroupingLocale(STRINGLIB_CHAR *buffer, Py_ssize_t n_buffer, STRINGLIB_CHAR *digits, Py_ssize_t n_digits, Py_ssize_t min_width) argument
[all...]
/vbox/src/VBox/Main/include/
H A DMatching.h200 (Lim::is_signed && Lim::digits <= numeric_limits <int64_t>::digits) ||
201 (!Lim::is_signed && Lim::digits <= numeric_limits <uint64_t>::digits),
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprprf.c154 ** Fill a number. The order is: optional-sign zero-filling conversion-digits
252 int digits; local
261 ** need to stop when we hit 10 digits. In the signed case, we can
265 digits = 0;
269 digits++;
272 if (digits == 0) {
274 digits++;
281 return fill_n(ss, cvt, digits, width, prec, type, flags);
292 int digits; local
302 ** need to stop when we hit 10 digits
[all...]
H A Dprscanf.c136 static const char digits[] = "0123456789abcdef"; local
189 while ((digitPtr = (char*)memchr(digits, tolower(*cPtr), base)) != NULL) {
192 LL_I2L(d, (digitPtr - digits));
233 static const char digits[] = "0123456789abcdefABCDEF"; local
283 dlen = 16 + 6; /* 16 digits, plus 6 in uppercase */
285 while (WITHIN_WIDTH(state) && memchr(digits, ch, dlen)) {
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsTextFormatter.cpp281 ** Fill a number. The order is: optional-sign zero-filling conversion-digits
383 int digits; local
392 ** need to stop when we hit 10 digits. In the signed case, we can
396 digits = 0;
400 digits++;
403 if (digits == 0) {
405 digits++;
412 return fill_n(ss, cvt, digits, width, prec, type, flags);
423 int digits; local
433 ** need to stop when we hit 10 digits
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_printf.c875 int digits = 0; local
905 if (dot == 0 && digits == 0 && c == '0') {
920 digits++;
959 digits = 0;
/vbox/src/VBox/Main/webservice/jaxlibs/
H A DFastInfoset.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/fastinfoset/ ...
H A Djaxb-xjc.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/common/dtrace/
H A Ddtrace.c4599 const char digits[] = "0123456789abcdef"; local
4604 * Lower case hexadecimal digits are used.
4722 *end-- = digits[val % 16];
13484 char c[32]; /* enough for "dof-data-" + digits */

Completed in 118 milliseconds