/third_party/pcre2/pcre2/src/ |
H A D | pcre2_intmodedep.h | 243 #define UCHAR21(eptr) (*(eptr)) 244 #define UCHAR21TEST(eptr) (*(eptr)) 245 #define UCHAR21INC(eptr) (*(eptr)++) 246 #define UCHAR21INCTEST(eptr) (*(eptr)++) 261 #define GETCHAR(c, eptr) c = *eptr; 829 PCRE2_SPTR eptr; /* MUST BE FIRST */ global() member [all...] |
H A D | pcre2_internal.h | 265 #define GETUTF8(c, eptr) \ 268 c = ((c & 0x1fu) << 6) | (eptr[1] & 0x3fu); \ 270 c = ((c & 0x0fu) << 12) | ((eptr[1] & 0x3fu) << 6) | (eptr[2] & 0x3fu); \ 272 c = ((c & 0x07u) << 18) | ((eptr[1] & 0x3fu) << 12) | \ 273 ((eptr[2] & 0x3fu) << 6) | (eptr[3] & 0x3fu); \ 275 c = ((c & 0x03u) << 24) | ((eptr[1] & 0x3fu) << 18) | \ 276 ((eptr[2] & 0x3fu) << 12) | ((eptr[ [all...] |
H A D | pcre2_extuni.c | 60 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject, in extuni() argument 64 (void)eptr; in extuni() 81 eptr pointer to next character 92 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject, in extuni() argument 97 while (eptr < end_subject) in extuni() 101 if (!utf) c = *eptr; else { GETCHARLEN(c, eptr, len); } in extuni() 111 PCRE2_SPTR bptr = eptr - 1; in extuni() 139 eptr += len; in extuni() 143 return eptr; in extuni() [all...] |
H A D | pcre2_match.c | 177 #define Feptr F->eptr 235 i, Q->group_frame_type, Q->eptr - mb->start_subject, *(Q->ecode), in display_frames() 361 PCRE2_SPTR eptr; in match_ref() local 379 eptr = eptr_start = Feptr; in match_ref() 405 if (eptr >= mb->end_subject) return 1; /* Partial match */ in match_ref() 409 GETCHARINC(c, eptr); in match_ref() 414 c = *eptr++; in match_ref() 438 if (eptr >= mb->end_subject) return 1; /* Partial match */ in match_ref() 439 cc = UCHAR21TEST(eptr); in match_ref() 444 eptr in match_ref() [all...] |
/third_party/musl/libc-test/src/math/gen/ |
H A D | prev.c | 12 char *eptr; in main() local 16 f = strtof(argv[i], &eptr); in main() 18 printf("%a (*eptr:%d errno:%d)\n", f, *eptr, errno); in main() 20 d = strtod(argv[i], &eptr); in main() 22 printf("%a (*eptr:%d errno:%d)\n", d, *eptr, errno); in main() 24 ld = strtold(argv[i], &eptr); in main() 26 printf("%La (*eptr:%d errno:%d)\n", ld, *eptr, errn in main() [all...] |
H A D | next.c | 12 char *eptr; in main() local 16 f = strtof(argv[i], &eptr); in main() 18 printf("%a (*eptr:%d errno:%d)\n", f, *eptr, errno); in main() 20 d = strtod(argv[i], &eptr); in main() 22 printf("%a (*eptr:%d errno:%d)\n", d, *eptr, errno); in main() 24 ld = strtold(argv[i], &eptr); in main() 26 printf("%La (*eptr:%d errno:%d)\n", ld, *eptr, errn in main() [all...] |
H A D | toe.c | 11 char *eptr; in main() local 15 f = strtof(argv[i], &eptr); in main() 16 printf("%.42e (*eptr:%d errno:%d)\n", f, *eptr, errno); in main() 18 d = strtod(argv[i], &eptr); in main() 19 printf("%.42e (*eptr:%d errno:%d)\n", d, *eptr, errno); in main() 21 ld = strtold(argv[i], &eptr); in main() 22 printf("%.42Le (*eptr:%d errno:%d)\n", ld, *eptr, errn in main() [all...] |
H A D | tog.c | 11 char *eptr; in main() local 15 f = strtof(argv[i], &eptr); in main() 16 printf("%.42g (*eptr:%d errno:%d)\n", f, *eptr, errno); in main() 18 d = strtod(argv[i], &eptr); in main() 19 printf("%.42g (*eptr:%d errno:%d)\n", d, *eptr, errno); in main() 21 ld = strtold(argv[i], &eptr); in main() 22 printf("%.42Lg (*eptr:%d errno:%d)\n", ld, *eptr, errn in main() [all...] |
H A D | tof.c | 11 char *eptr; in main() local 15 f = strtof(argv[i], &eptr); in main() 16 printf("%.42f (*eptr:%d errno:%d)\n", f, *eptr, errno); in main() 18 d = strtod(argv[i], &eptr); in main() 19 printf("%.42f (*eptr:%d errno:%d)\n", d, *eptr, errno); in main() 21 ld = strtold(argv[i], &eptr); in main() 22 printf("%.42Lf (*eptr:%d errno:%d)\n", ld, *eptr, errn in main() [all...] |
H A D | toa.c | 11 char *eptr; in main() local 15 f = strtof(argv[i], &eptr); in main() 16 printf("%a (*eptr:%d errno:%d)\n", f, *eptr, errno); in main() 18 d = strtod(argv[i], &eptr); in main() 19 printf("%a (*eptr:%d errno:%d)\n", d, *eptr, errno); in main() 21 ld = strtold(argv[i], &eptr); in main() 22 printf("%La (*eptr:%d errno:%d)\n", ld, *eptr, errn in main() [all...] |
H A D | tox.c | 12 char *eptr; in main() local 16 f.f = strtof(argv[i], &eptr); in main() 17 printf("0x%08x (*eptr:%d errno:%d)\n", f.i, *eptr, errno); in main() 19 d.f = strtod(argv[i], &eptr); in main() 20 printf("0x%08x %08x (*eptr:%d errno:%d)\n", in main() 21 (unsigned)(d.i>>32), (unsigned)d.i, *eptr, errno); in main() 23 ld.f = strtold(argv[i], &eptr); in main() 24 printf("0x%04x %08x %08x (*eptr:%d errno:%d)\n", in main() 25 ld.i.se, (unsigned)(ld.i.m>>32), (unsigned)ld.i.m, *eptr, errn in main() [all...] |
/third_party/pcre2/pcre2/maint/ |
H A D | ucptest.c | 220 #define GETUTF8INC(c, eptr) \ 223 c = ((c & 0x1fu) << 6) | (*eptr++ & 0x3fu); \ 226 c = ((c & 0x0fu) << 12) | ((*eptr & 0x3fu) << 6) | (eptr[1] & 0x3fu); \ 227 eptr += 2; \ 231 c = ((c & 0x07u) << 18) | ((*eptr & 0x3fu) << 12) | \ 232 ((eptr[1] & 0x3fu) << 6) | (eptr[2] & 0x3fu); \ 233 eptr += 3; \ 237 c = ((c & 0x03u) << 24) | ((*eptr [all...] |
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
H A D | asn_mstbl.c | 59 char *eptr; in do_tcreate() local 78 tbl_min = strtoul(cnf->value, &eptr, 0); in do_tcreate() 79 if (*eptr) in do_tcreate() 82 tbl_max = strtoul(cnf->value, &eptr, 0); in do_tcreate() 83 if (*eptr) in do_tcreate()
|
H A D | asn1_gen.c | 350 char *eptr; in parse_tagging() local 353 tag_num = strtoul(vstart, &eptr, 10); in parse_tagging() 355 if (eptr && *eptr && (eptr > vstart + vlen)) in parse_tagging() 363 if (eptr) in parse_tagging() 364 vlen -= eptr - vstart; in parse_tagging() 368 switch (*eptr) { in parse_tagging() 388 "Char=%c", *eptr); in parse_tagging() 748 char *eptr; in bitstr_cb() local [all...] |
/third_party/openssl/crypto/asn1/ |
H A D | asn_mstbl.c | 59 char *eptr; in do_tcreate() local 76 tbl_min = strtoul(cnf->value, &eptr, 0); in do_tcreate() 77 if (*eptr) in do_tcreate() 80 tbl_max = strtoul(cnf->value, &eptr, 0); in do_tcreate() 81 if (*eptr) in do_tcreate()
|
H A D | asn1_gen.c | 350 char *eptr; in parse_tagging() local 353 tag_num = strtoul(vstart, &eptr, 10); in parse_tagging() 355 if (eptr && *eptr && (eptr > vstart + vlen)) in parse_tagging() 363 if (eptr) in parse_tagging() 364 vlen -= eptr - vstart; in parse_tagging() 368 switch (*eptr) { in parse_tagging() 388 "Char=%c", *eptr); in parse_tagging() 745 char *eptr; in bitstr_cb() local [all...] |
/third_party/eudev/src/udev/ |
H A D | udev-builtin-usb_id.c | 86 char *eptr; in set_usb_mass_storage_ifsubtype() local 89 type_num = strtoul(from, &eptr, 0); in set_usb_mass_storage_ifsubtype() 90 if (eptr != from) { in set_usb_mass_storage_ifsubtype() 117 char *eptr; in set_scsi_type() local 120 type_num = strtoul(from, &eptr, 0); in set_scsi_type() 121 if (eptr != from) { in set_scsi_type()
|
/third_party/backends/backend/ |
H A D | hp-scl.c | 192 {char *eptr; in hp_AddOpenDevice() local 196 eptr = getenv ("SANE_HP_KEEPOPEN_SCSI"); in hp_AddOpenDevice() 197 if ( (eptr != NULL) && ((*eptr == '0') || (*eptr == '1')) ) in hp_AddOpenDevice() 198 iKeepOpenSCSI = (*eptr == '1'); in hp_AddOpenDevice() 200 eptr = getenv ("SANE_HP_KEEPOPEN_USB"); in hp_AddOpenDevice() 201 if ( (eptr != NULL) && ((*eptr == '0') || (*eptr in hp_AddOpenDevice() 347 {char *eptr = getenv ("SANE_HP_RDREDO"); hp_nonscsi_read() local [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | xbmdec.c | 60 char *eptr; in parse_str_int() local 61 int64_t ret = strtol(p, &eptr, 10); in parse_str_int() 62 if ((const uint8_t *)eptr != p) in parse_str_int()
|
H A D | wmaenc.c | 317 WMACoef *ptr, *eptr; in encode_block() local 320 eptr = ptr + nb_coefs[ch]; in encode_block() 323 for (; ptr < eptr; ptr++) { in encode_block()
|
/third_party/astc-encoder/Source/ |
H A D | astcenccli_image_load_store.cpp | 2357 const char *eptr = strrchr(filename, '.'); in get_output_filename_enforced_bitness() local 2358 if (!eptr) in get_output_filename_enforced_bitness() 2365 if (strcmp(eptr, storer_descs[i].ending1) == 0 in get_output_filename_enforced_bitness() 2366 || strcmp(eptr, storer_descs[i].ending2) == 0) in get_output_filename_enforced_bitness() 2383 const char* eptr = strrchr(filename, '.'); in load_ncimage() local 2384 if (!eptr) in load_ncimage() 2386 eptr = filename; in load_ncimage() 2393 || strcmp(eptr, loader_descs[i].ending1) == 0 in load_ncimage() 2394 || strcmp(eptr, loader_descs[i].ending2) == 0) in load_ncimage() 2410 const char* eptr in store_ncimage() local [all...] |
H A D | astcenccli_toplevel.cpp | 2098 const char *eptr = strrchr(output_filename.c_str(), '.'); 2099 eptr = eptr ? eptr : ""; 2100 print_error("ERROR: Unknown uncompressed output file type '%s'\n", eptr); 2115 const char *eptr = strrchr(output_filename.c_str(), '.'); 2116 eptr = eptr ? eptr : ""; 2117 print_error("ERROR: Unknown compressed output file type '%s'\n", eptr); [all...] |
/third_party/node/deps/base64/base64/bin/ |
H A D | base64.c | 445 char *eptr; in get_wrap() local 453 const long wrap = strtol(str, &eptr, 10); in get_wrap() 461 if (*eptr != '\0') { in get_wrap()
|
/third_party/optimized-routines/math/test/rtest/ |
H A D | dotest.c | 835 int sign, eptr; in float32_case() local 854 for (eptr = 0; eptr < sizeof(exps)/sizeof(*exps); eptr++) { in float32_case() 855 se = (sign ? 0x80000000 : 0) | ((exps[eptr]+127) << 23); in float32_case() 963 int sign, eptr; in float64_case() local 982 for (eptr = 0; eptr < sizeof(exps)/sizeof(*exps); eptr++) { in float64_case() 983 se = (sign ? 0x80000000 : 0) | ((exps[eptr] in float64_case() [all...] |
/third_party/eudev/src/scsi_id/ |
H A D | scsi_id.c | 73 char *eptr; in set_type() local 76 type_num = strtoul(from, &eptr, 0); in set_type() 77 if (eptr != from) { in set_type()
|