HomeSort by relevance Sort by last modified time
    Searched defs:ishex (Results 1 - 16 of 16) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
quopri.py 149 elif i+2 < n and ishex(line[i+1]) and ishex(line[i+2]):
171 def ishex(c): function
  /external/python/cpython2/Lib/
quopri.py 149 elif i+2 < n and ishex(line[i+1]) and ishex(line[i+2]):
171 def ishex(c): function
  /external/python/cpython3/Lib/
quopri.py 150 elif i+2 < n and ishex(line[i+1:i+2]) and ishex(line[i+2:i+3]):
172 def ishex(c): function
  /prebuilts/gdb/darwin-x86/lib/python2.7/
quopri.py 149 elif i+2 < n and ishex(line[i+1]) and ishex(line[i+2]):
171 def ishex(c): function
  /prebuilts/gdb/linux-x86/lib/python2.7/
quopri.py 149 elif i+2 < n and ishex(line[i+1]) and ishex(line[i+2]):
171 def ishex(c): function
  /prebuilts/go/darwin-x86/src/mime/
mediatype.go 335 if i+2 >= len(s) || !ishex(s[i+1]) || !ishex(s[i+2]) {
365 func ishex(c byte) bool { func
  /prebuilts/go/linux-x86/src/mime/
mediatype.go 335 if i+2 >= len(s) || !ishex(s[i+1]) || !ishex(s[i+2]) {
365 func ishex(c byte) bool { func
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
quopri.py 149 elif i+2 < n and ishex(line[i+1]) and ishex(line[i+2]):
171 def ishex(c): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
quopri.py 149 elif i+2 < n and ishex(line[i+1]) and ishex(line[i+2]):
171 def ishex(c): function
  /bionic/libc/stdio/
parsefloat.c 48 int gotmantdig = 0, ishex = 0; local
129 ishex = 1;
136 if ((ishex && isxdigit(c)) || isdigit(c))
147 if (((c == 'E' || c == 'e') && !ishex) ||
148 ((c == 'P' || c == 'p') && ishex)) {
153 } else if ((ishex && isxdigit(c)) || isdigit(c)) {
196 int gotmantdig = 0, ishex = 0; local
279 ishex = 1;
286 if ((ishex && iswxdigit(c)) || iswdigit(c))
297 if (((c == 'E' || c == 'e') && !ishex) ||
    [all...]
  /prebuilts/go/darwin-x86/src/net/url/
url.go 49 func ishex(c byte) bool { func
197 if i+2 >= len(s) || !ishex(s[i+1]) || !ishex(s[i+2]) {
  /prebuilts/go/linux-x86/src/net/url/
url.go 49 func ishex(c byte) bool { func
197 if i+2 >= len(s) || !ishex(s[i+1]) || !ishex(s[i+2]) {
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfscanf.c 993 _Bool gotmantdig = 0, ishex = 0; local
1079 ishex = 1;
1086 if ((ishex && isxdigit(c)) || isdigit(c))
1097 if (((c == 'E' || c == 'e') && !ishex) ||
1098 ((c == 'P' || c == 'p') && ishex)) {
1103 } else if ((ishex && isxdigit(c)) || isdigit(c)) {
vfwscanf.c 772 int gotmantdig = 0, ishex = 0; local
855 ishex = 1;
862 if ((ishex && iswxdigit(c)) || iswdigit(c))
873 if (((c == 'E' || c == 'e') && !ishex) ||
874 ((c == 'P' || c == 'p') && ishex)) {
879 } else if ((ishex && iswxdigit(c)) || iswdigit(c)) {
  /external/freetype/src/tools/ftrandom/
ftrandom.c 97 unsigned int ishex: 1; member in struct:fontlist
273 item->isbinary = item->isascii = item->ishex = false;
305 item->ishex = true;
317 item->ishex = true;
  /external/boringssl/src/crypto/x509v3/
v3_utl.c 227 int isneg, ishex; local
242 ishex = 1;
244 ishex = 0;
246 if (ishex)
    [all...]

Completed in 293 milliseconds