Searched refs:bptr (Results 1 – 7 of 7) sorted by relevance
/PHP-8.3/ext/pcre/pcre2lib/ |
H A D | pcre2_extuni.c | 111 PCRE2_SPTR bptr = eptr - 1; in PRIV() local 112 if (utf) BACKCHAR(bptr); in PRIV() 116 while (bptr > start_subject) in PRIV() 118 bptr--; in PRIV() 121 BACKCHAR(bptr); in PRIV() 122 GETCHAR(c, bptr); in PRIV() 125 c = *bptr; in PRIV()
|
H A D | pcre2_jit_compile.c | 8528 PCRE2_SPTR prevcc, endcc, bptr; in do_extuni_utf() local 8556 bptr = prevcc; in do_extuni_utf() 8561 bptr--; in do_extuni_utf() 8562 BACKCHAR(bptr); in do_extuni_utf() 8563 GETCHAR(c, bptr); in do_extuni_utf() 8596 PCRE2_SPTR prevcc, endcc, bptr; in do_extuni_utf_invalid() local 8624 bptr = prevcc; in do_extuni_utf_invalid() 8661 PCRE2_SPTR bptr; in do_extuni_no_utf() local 8692 bptr = cc - 1; in do_extuni_no_utf() 8697 bptr--; in do_extuni_no_utf() [all …]
|
H A D | pcre2_compile.c | 9552 uint32_t *bptr = *pptrptr; in set_lookbehind_lengths() local 9554 READPLUSOFFSET(offset, bptr); /* Offset for error messages */ in set_lookbehind_lengths() 9569 *bptr |= branchlength; /* branchlength never more than 65535 */ in set_lookbehind_lengths() 9570 bptr = *pptrptr; in set_lookbehind_lengths() 9572 while (*bptr == META_ALT); in set_lookbehind_lengths()
|
/PHP-8.3/ext/bcmath/libbcmath/src/ |
H A D | int2num.c | 39 char *bptr, *vptr; in bc_int2num() local 50 bptr = buffer; in bc_int2num() 51 *bptr++ = val % BASE; in bc_int2num() 56 *bptr++ = val % BASE; in bc_int2num() 72 *vptr++ = *--bptr; in bc_int2num()
|
/PHP-8.3/ext/standard/ |
H A D | file.c | 1951 bptr = buf; in php_fgetcsv() 1968 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv() 1975 bptr = tmp; in php_fgetcsv() 2029 --bptr; in php_fgetcsv() 2079 bptr++; in php_fgetcsv() 2092 bptr++; in php_fgetcsv() 2102 bptr++; in php_fgetcsv() 2128 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv() 2152 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv() 2183 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv() [all …]
|
/PHP-8.3/ext/gd/libgd/ |
H A D | gd_topal.c | 993 register INT32 *bptr; /* pointer into bestdist[] array */ in find_best_colors() local 1004 bptr = bestdist; in find_best_colors() 1006 *bptr++ = 0x7FFFFFFFL; in find_best_colors() 1038 bptr = bestdist; in find_best_colors() 1051 if (dist2 < *bptr) in find_best_colors() 1053 *bptr = dist2; in find_best_colors() 1058 bptr++; in find_best_colors()
|
/PHP-8.3/ext/tidy/ |
H A D | tidy.c | 49 #define FIX_BUFFER(bptr) do { if ((bptr)->size) { (bptr)->bp[(bptr)->size-1] = '\0'; } } while(0) argument
|
Completed in 74 milliseconds