Home
last modified time | relevance | path

Searched refs:source_end (Results 1 – 3 of 3) sorted by path

/php-src/ext/bcmath/libbcmath/src/
H A Dconvert.c29 …and_shift_numbers(char *restrict dest, const char *source, const char *source_end, unsigned char s… in bc_copy_and_shift_numbers() argument
40 while (source + sizeof(__m128i) <= source_end) { in bc_copy_and_shift_numbers()
54 while (source + sizeof(size_t) <= source_end) { in bc_copy_and_shift_numbers()
65 while (source < source_end) { in bc_copy_and_shift_numbers()
74 char *bc_copy_ch_val(char *restrict dest, const char *source, const char *source_end) in bc_copy_ch_val() argument
76 return bc_copy_and_shift_numbers(dest, source, source_end, '0', false); in bc_copy_ch_val()
79 char *bc_copy_bcd_val(char *restrict dest, const char *source, const char *source_end) in bc_copy_bcd_val() argument
81 return bc_copy_and_shift_numbers(dest, source, source_end, '0', true); in bc_copy_bcd_val()
H A Dconvert.h20 char *bc_copy_ch_val(char *restrict dest, const char *source, const char *source_end);
21 char *bc_copy_bcd_val(char *restrict dest, const char *source, const char *source_end);
/php-src/ext/standard/
H A Dstring.c3133 const char *source, *source_end; local
3141 source_end = ZSTR_VAL(str) + ZSTR_LEN(str);
3142 for (source = ZSTR_VAL(str); source < source_end; source++) {
3178 source_end = ZSTR_VAL(str) + ZSTR_LEN(str);
3179 for (source = ZSTR_VAL(str); source < source_end; source++) {

Completed in 21 milliseconds