Home
last modified time | relevance | path

Searched refs:eptr (Results 1 – 25 of 35) sorted by relevance

12

/third_party/glib/glib/pcre/
Dpcre_exec.c146 match_ref(int offset, PCRE_PUCHAR eptr, int length, match_data *md, in match_ref() argument
149 PCRE_PUCHAR eptr_start = eptr; in match_ref()
153 if (eptr >= md->end_subject) in match_ref()
158 pchars(eptr, length, TRUE, md); in match_ref()
192 if (eptr >= md->end_subject) return -2; /* Partial match */ in match_ref()
193 GETCHARINC(c, eptr); in match_ref()
207 if (eptr >= md->end_subject) return -2; /* Partial match */ in match_ref()
208 if (TABLE_GET(*p, md->lcc, *p) != TABLE_GET(*eptr, md->lcc, *eptr)) return -1; in match_ref()
210 eptr++; in match_ref()
222 if (eptr >= md->end_subject) return -2; /* Partial match */ in match_ref()
[all …]
Dpcre_internal.h544 #define GETCHAR(c, eptr) c = *eptr; argument
545 #define GETCHARTEST(c, eptr) c = *eptr; argument
546 #define GETCHARINC(c, eptr) c = *eptr++; argument
547 #define GETCHARINCTEST(c, eptr) c = *eptr++; argument
548 #define GETCHARLEN(c, eptr, len) c = *eptr; argument
584 #define GETUTF8(c, eptr) \ argument
587 c = ((c & 0x1f) << 6) | (eptr[1] & 0x3f); \
589 c = ((c & 0x0f) << 12) | ((eptr[1] & 0x3f) << 6) | (eptr[2] & 0x3f); \
591 c = ((c & 0x07) << 18) | ((eptr[1] & 0x3f) << 12) | \
592 ((eptr[2] & 0x3f) << 6) | (eptr[3] & 0x3f); \
[all …]
/third_party/pcre2/pcre2/src/
Dpcre2_intmodedep.h243 #define UCHAR21(eptr) (*(eptr)) argument
244 #define UCHAR21TEST(eptr) (*(eptr)) argument
245 #define UCHAR21INC(eptr) (*(eptr)++) argument
246 #define UCHAR21INCTEST(eptr) (*(eptr)++) argument
261 #define GETCHAR(c, eptr) c = *eptr; argument
262 #define GETCHARTEST(c, eptr) c = *eptr; argument
263 #define GETCHARINC(c, eptr) c = *eptr++; argument
264 #define GETCHARINCTEST(c, eptr) c = *eptr++; argument
265 #define GETCHARLEN(c, eptr, len) c = *eptr; argument
301 #define GETCHAR(c, eptr) \ argument
[all …]
Dpcre2_extuni.c60 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject, in PRIV()
64 (void)eptr; in PRIV()
92 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject, in PRIV()
97 while (eptr < end_subject) in PRIV()
101 if (!utf) c = *eptr; else { GETCHARLEN(c, eptr, len); } in PRIV()
111 PCRE2_SPTR bptr = eptr - 1; in PRIV()
139 eptr += len; in PRIV()
143 return eptr; in PRIV()
Dpcre2_internal.h266 #define GETUTF8(c, eptr) \ argument
269 c = ((c & 0x1fu) << 6) | (eptr[1] & 0x3fu); \
271 c = ((c & 0x0fu) << 12) | ((eptr[1] & 0x3fu) << 6) | (eptr[2] & 0x3fu); \
273 c = ((c & 0x07u) << 18) | ((eptr[1] & 0x3fu) << 12) | \
274 ((eptr[2] & 0x3fu) << 6) | (eptr[3] & 0x3fu); \
276 c = ((c & 0x03u) << 24) | ((eptr[1] & 0x3fu) << 18) | \
277 ((eptr[2] & 0x3fu) << 12) | ((eptr[3] & 0x3fu) << 6) | \
278 (eptr[4] & 0x3fu); \
280 c = ((c & 0x01u) << 30) | ((eptr[1] & 0x3fu) << 24) | \
281 ((eptr[2] & 0x3fu) << 18) | ((eptr[3] & 0x3fu) << 12) | \
[all …]
/third_party/musl/libc-test/src/math/gen/
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, errno); in main()
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, errno); in main()
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, errno); in main()
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, errno); in main()
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, errno); in main()
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, errno); in main()
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()
21 (unsigned)(d.i>>32), (unsigned)d.i, *eptr, errno); in main()
23 ld.f = strtold(argv[i], &eptr); in main()
25 ld.i.se, (unsigned)(ld.i.m>>32), (unsigned)ld.i.m, *eptr, errno); in main()
/third_party/boost/libs/iostreams/test/
Dsymmetric_filter_test.cpp51 bool result = buf_.ptr() != buf_.eptr(); in filter()
60 (buf_.eptr() - buf_.data()) ); in read()
62 *buf_.eptr()++ = std::toupper(*src_begin++); in read()
68 buf_.eptr() - buf_.ptr() ); in write()
71 if (buf_.ptr() == buf_.eptr()) in write()
75 { return src_begin != src_end && buf_.eptr() != buf_.end(); } in can_read()
77 { return dest_begin != dest_end && buf_.ptr() != buf_.eptr(); } in can_write()
/third_party/openssl/crypto/asn1/
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()
Dasn1_gen.c352 char *eptr; in parse_tagging() local
355 tag_num = strtoul(vstart, &eptr, 10); in parse_tagging()
357 if (eptr && *eptr && (eptr > vstart + vlen)) in parse_tagging()
365 if (eptr) in parse_tagging()
366 vlen -= eptr - vstart; in parse_tagging()
370 switch (*eptr) { in parse_tagging()
389 erch[0] = *eptr; in parse_tagging()
748 char *eptr; in bitstr_cb() local
751 bitnum = strtoul(elem, &eptr, 10); in bitstr_cb()
752 if (eptr && *eptr && (eptr != elem + len)) in bitstr_cb()
/third_party/boost/boost/iostreams/filter/
Dsymmetric.hpp115 if (buf.ptr() != buf.eptr() || flush) { in read()
118 !filter().filter(next, buf.eptr(), next_s, end_s, flush); in read()
128 if ( (status == f_would_block && buf.ptr() == buf.eptr()) || in read()
149 if (buf.ptr() == buf.eptr() && !flush(snk)) in write()
151 if(!filter().filter(next_s, end_s, buf.ptr(), buf.eptr(), false)) { in write()
174 if (buf.ptr() != buf.eptr()) in close()
176 buf.eptr(), true ); in close()
303 { return string_type(buf().ptr(), buf().eptr()); } in unconsumed_input()
/third_party/e2fsprogs/lib/e2p/
Dhashstr.c52 char *eptr; in e2p_string2hash() local
65 num = strtol(string+8, &eptr, 10); in e2p_string2hash()
68 if (*eptr) in e2p_string2hash()
Dcrypto_mode.c54 char *eptr; in e2p_string2encmode() local
67 num = strtol(string+9, &eptr, 10); in e2p_string2encmode()
70 if (*eptr) in e2p_string2encmode()
Dfeature.c184 char *eptr; in e2p_string2feature() local
215 num = strtol(string+9, &eptr, 10); in e2p_string2feature()
218 if (*eptr) in e2p_string2feature()
258 char *eptr; in e2p_jrnl_string2feature() local
289 num = strtol(string+9, &eptr, 10); in e2p_jrnl_string2feature()
292 if (*eptr) in e2p_jrnl_string2feature()
Dmntopts.c61 char *eptr; in e2p_string2mntopt() local
75 num = strtol(string+8, &eptr, 10); in e2p_string2mntopt()
78 if (*eptr) in e2p_string2mntopt()
/third_party/boost/boost/iostreams/
Dcode_converter.hpp319 if (buf.ptr() == buf.eptr() || partial) { in read()
321 if (buf.ptr() == buf.eptr()) in read()
329 buf.ptr(), buf.eptr(), next, in read()
372 if (buf.eptr() == buf.end() || partial) { in write()
382 buf.eptr(), buf.end(), next ); in write()
383 int progress = (int) (next - buf.eptr()); in write()
384 buf.eptr() += progress; in write()
397 buf.end() - buf.eptr() ); in write()
398 detail::strncpy_if_same(buf.eptr(), s + total, amt); in write()
/third_party/iowow/src/utils/
Diwarr.h28 void *restrict eptr,
46 void *restrict eptr,
53 void *restrict eptr,
60 void *restrict eptr,
Diwarr.c12 void *restrict eptr, in iwarr_sorted_insert() argument
23 memcpy(els, eptr, elsize); in iwarr_sorted_insert()
29 cr = cmp(EL(idx), eptr); in iwarr_sorted_insert()
49 memcpy(EL(idx), eptr, elsize); in iwarr_sorted_insert()
57 void *restrict eptr, in iwarr_sorted_remove() argument
72 cr = cmp(EL(idx), eptr); in iwarr_sorted_remove()
97 void *restrict eptr, in iwarr_sorted_find() argument
112 cr = cmp(EL(idx), eptr); in iwarr_sorted_find()
134 void *restrict eptr, in iwarr_sorted_find2() argument
151 iwrc rc = cmp(EL(idx), eptr, op, &cr); in iwarr_sorted_find2()
/third_party/eudev/src/udev/
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/ffmpeg/libavcodec/
Dxbmdec.c58 char *eptr; in parse_str_int() local
59 int64_t ret = strtol(p, &eptr, 10); in parse_str_int()
60 if ((const uint8_t *)eptr != p) in parse_str_int()

12