Home
last modified time | relevance | path

Searched refs:eptr (Results 1 - 25 of 28) sorted by relevance

12

/third_party/pcre2/pcre2/src/
H A Dpcre2_intmodedep.h243 #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 Dpcre2_internal.h265 #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 Dpcre2_extuni.c60 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 Dpcre2_match.c177 #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 Dprev.c12 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 Dnext.c12 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 Dtoe.c11 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 Dtog.c11 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 Dtof.c11 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 Dtoa.c11 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 Dtox.c12 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 Ducptest.c220 #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 Dasn_mstbl.c59 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 Dasn1_gen.c350 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 Dasn_mstbl.c59 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 Dasn1_gen.c350 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 Dudev-builtin-usb_id.c86 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 Dhp-scl.c192 {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 Dxbmdec.c60 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 Dwmaenc.c317 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 Dastcenccli_image_load_store.cpp2357 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 Dastcenccli_toplevel.cpp2098 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 Dbase64.c445 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 Ddotest.c835 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 Dscsi_id.c73 char *eptr; in set_type() local
76 type_num = strtoul(from, &eptr, 0); in set_type()
77 if (eptr != from) { in set_type()

Completed in 22 milliseconds

12