/third_party/glib/glib/pcre/ |
D | pcre_exec.c | 146 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 …]
|
D | pcre_internal.h | 544 #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/ |
D | pcre2_intmodedep.h | 243 #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 …]
|
D | pcre2_extuni.c | 60 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()
|
D | pcre2_internal.h | 266 #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/ |
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, errno); in main()
|
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, errno); in main()
|
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, errno); in main()
|
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, errno); in main()
|
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, errno); in main()
|
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, errno); in main()
|
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() 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/ |
D | symmetric_filter_test.cpp | 51 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/ |
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()
|
D | asn1_gen.c | 352 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/ |
D | symmetric.hpp | 115 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/ |
D | hashstr.c | 52 char *eptr; in e2p_string2hash() local 65 num = strtol(string+8, &eptr, 10); in e2p_string2hash() 68 if (*eptr) in e2p_string2hash()
|
D | crypto_mode.c | 54 char *eptr; in e2p_string2encmode() local 67 num = strtol(string+9, &eptr, 10); in e2p_string2encmode() 70 if (*eptr) in e2p_string2encmode()
|
D | feature.c | 184 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()
|
D | mntopts.c | 61 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/ |
D | code_converter.hpp | 319 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/ |
D | iwarr.h | 28 void *restrict eptr, 46 void *restrict eptr, 53 void *restrict eptr, 60 void *restrict eptr,
|
D | iwarr.c | 12 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/ |
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/ffmpeg/libavcodec/ |
D | xbmdec.c | 58 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()
|