Home
last modified time | relevance | path

Searched refs:chunk_pos (Results 1 – 2 of 2) sorted by path

/php-src/ext/dom/lexbor/lexbor/core/
H A Ddobject.c156 size_t chunk_idx, chunk_pos, i; in lexbor_dobject_by_absolute_position() local
164 chunk_pos = pos * dobject->struct_size; in lexbor_dobject_by_absolute_position()
165 chunk_idx = chunk_pos / dobject->mem->chunk_min_size; in lexbor_dobject_by_absolute_position()
171 return &chunk->data[chunk_pos % chunk->size]; in lexbor_dobject_by_absolute_position()
/php-src/ext/mbstring/
H A Dphp_mbregex.c1183 OnigUChar *pos, *chunk_pos; in PHP_FUNCTION() local
1208 chunk_pos = pos = (OnigUChar *)string; in PHP_FUNCTION()
1221 if (beg < string_len && beg >= (size_t)(chunk_pos - (OnigUChar *)string)) { in PHP_FUNCTION()
1222 …add_next_index_stringl(return_value, (char *)chunk_pos, ((OnigUChar *)(string + beg) - chunk_pos)); in PHP_FUNCTION()
1229 chunk_pos = pos = (OnigUChar *)string + end; in PHP_FUNCTION()
1249 if ((OnigUChar *)(string + string_len) > chunk_pos) { in PHP_FUNCTION()
1250 size_t n = ((OnigUChar *)(string + string_len) - chunk_pos); in PHP_FUNCTION()
1251 add_next_index_stringl(return_value, (char *)chunk_pos, n); in PHP_FUNCTION()

Completed in 11 milliseconds