/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | atof.c | 16 while ((c = *s++) != '\0' && isdigit(c)) { in atof() 20 while ((c = *s++) != '\0' && isdigit(c)) { in atof() 35 while (isdigit(c)) { in atof()
|
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/ |
D | inet_net_pton.c | 170 } else if (isascii(ch) && isdigit(ch)) { in inet_net_pton_ipv4() 182 isascii(ch) && isdigit(ch)); in inet_net_pton_ipv4() 191 if (!isascii(ch) || !isdigit(ch)) in inet_net_pton_ipv4() 198 if (ch == '/' && isascii(src[0]) && isdigit(src[0]) && dst > odst) { in inet_net_pton_ipv4() 207 } while ((ch = *src++) != '\0' && isascii(ch) && isdigit(ch)); in inet_net_pton_ipv4()
|
D | res_debug.c | 599 while (isdigit(*cp)) in precsize_aton() 604 if (isdigit(*cp)) { in precsize_aton() 606 if (isdigit(*cp)) { in precsize_aton() 641 while (isdigit(*cp)) in latlon2ul() 647 if (!(isdigit(*cp))) in latlon2ul() 650 while (isdigit(*cp)) in latlon2ul() 656 if (!(isdigit(*cp))) in latlon2ul() 659 while (isdigit(*cp)) in latlon2ul() 664 if (isdigit(*cp)) { in latlon2ul() 666 if (isdigit(*cp)) { in latlon2ul() [all …]
|
D | ns_ttl.c | 136 if (isdigit(ch)) { in ns_parse_ttl()
|
/device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/ |
D | ctype.h | 50 #define isdigit(c) ((c) >= '0' && (c) <= '9') macro 51 #define isxdigit(c) (isdigit(c) \
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/ |
D | Strings.py | 477 s.isdigit() 485 s.isdigit() 493 s.isdigit() 501 s.isdigit() 509 s.isdigit() 517 s.isdigit() 525 s.isdigit() 533 s.isdigit() 541 s.isdigit() 549 s.isdigit()
|
D | Unicode.py | 399 s.isdigit() 409 s.isdigit() 419 s.isdigit() 429 s.isdigit() 439 s.isdigit()
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
D | ctype.h | 85 int isdigit(int c); 227 #define isdigit(c) (__isCClass( (int)c, (_CD))) macro
|
/device/linaro/bootloader/edk2/StdLib/LibC/NetUtil/ |
D | inet_addr.c | 143 if (!isdigit((unsigned char)c)) in inet_aton() 156 if (isascii(c) && isdigit((unsigned char)c)) { in inet_aton()
|
D | inet_network.c | 83 if (isdigit(c)) { in __weak_alias()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | bytes_methods.h | 53 #undef isdigit 54 #define isdigit(c) undefined_isdigit(c) macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | bytes_methods.h | 53 #undef isdigit 54 #define isdigit(c) undefined_isdigit(c) macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | buffer_tests.py | 83 self.assertFalse(self.marshal(b'').isdigit()) 84 self.assertFalse(self.marshal(b'a').isdigit()) 85 self.assertTrue(self.marshal(b'0').isdigit()) 86 self.assertTrue(self.marshal(b'0123456789').isdigit()) 87 self.assertFalse(self.marshal(b'0123456789a').isdigit()) 89 self.assertRaises(TypeError, self.marshal(b'abc').isdigit, 42)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
D | fix_numliterals.py | 25 elif val.startswith(u'0') and val.isdigit() and len(set(val)) > 1:
|
/device/google/contexthub/util/common/ |
D | JSONObject.cpp | 38 CHECK(isdigit(data[i])); in parseInt32() 235 } else if (isdigit(data[offset]) || data[offset] == '-') { in Parse() 247 while (offset < size && isdigit(data[offset])) { in Parse() 264 while (offset < size && isdigit(data[offset])) { in Parse() 294 while (offset < size && isdigit(data[offset])) { in Parse()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lstrlib.c | 271 case 'd' : res = isdigit(c); break; in match_class() 687 if (!isdigit(uchar(news[i]))) { in add_s() 844 if (!isdigit(uchar(*(s+1)))) in addquoted() 862 if (isdigit(uchar(*p))) p++; /* skip width */ in scanformat() 863 if (isdigit(uchar(*p))) p++; /* (2 digits at most) */ in scanformat() 866 if (isdigit(uchar(*p))) p++; /* skip precision */ in scanformat() 867 if (isdigit(uchar(*p))) p++; /* (2 digits at most) */ in scanformat() 869 if (isdigit(uchar(*p))) in scanformat()
|
D | lctype.h | 85 #define lisdigit(c) (isdigit(c))
|
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
D | gettemp.c | 166 if (isdigit((unsigned char)*trv)) in GETTEMP()
|
/device/linaro/bootloader/edk2/StdLib/LibC/Ctype/ |
D | CClass.c | 97 isdigit( in isdigit() function
|
/device/linaro/bootloader/edk2/StdLib/LibC/StdLib/ |
D | strtoimax.c | 130 if (isdigit(c)) in __weak_alias()
|
D | strtoumax.c | 106 if (isdigit(c)) in __weak_alias()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/ |
D | tokenizer.c | 1411 if (isdigit(c)) { in tok_get() 1423 if (isdigit(c)) { in tok_get() 1477 if (isdigit(c)) { in tok_get() 1481 } while (isdigit(c)); in tok_get() 1504 } while (isdigit(c)); in tok_get() 1514 } while (isdigit(c)); in tok_get() 1524 if (!isdigit(c)) { in tok_get() 1529 } else if (!isdigit(c)) { in tok_get() 1538 } while (isdigit(c)); in tok_get()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | tokenizer.c | 1391 if (isdigit(c)) { in tok_get() 1403 if (isdigit(c)) { in tok_get() 1457 if (isdigit(c)) { in tok_get() 1461 } while (isdigit(c)); in tok_get() 1484 } while (isdigit(c)); in tok_get() 1494 } while (isdigit(c)); in tok_get() 1502 if (!isdigit(c)) { in tok_get() 1509 } while (isdigit(c)); in tok_get()
|
/device/google/marlin/dataservices/datatop/src/ |
D | datatop_cpu_stats_poll.c | 94 (isdigit(entry->d_name[3]))) { in dtop_cpu_search()
|
/device/linaro/bootloader/edk2/StdLib/LibC/Locale/ |
D | iswctype_sb.c | 90 return isdigit((int)c); in iswdigit()
|