Lines Matching refs:idx

107 	const char *idx = in, *end;  in php_win32_cp_conv_ascii_to_w()  local
130 while (idx < aidx) { in php_win32_cp_conv_ascii_to_w()
131 ch_err |= *idx; in php_win32_cp_conv_ascii_to_w()
132 idx++; in php_win32_cp_conv_ascii_to_w()
140 while (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
141 const __m128i block = _mm_load_si128((__m128i *)idx); in php_win32_cp_conv_ascii_to_w()
143 idx += 16; in php_win32_cp_conv_ascii_to_w()
151 while (idx < end) { in php_win32_cp_conv_ascii_to_w()
152 ch_err |= *idx; in php_win32_cp_conv_ascii_to_w()
153 idx++; in php_win32_cp_conv_ascii_to_w()
166 idx = in; in php_win32_cp_conv_ascii_to_w()
172 while (idx < aidx) { in php_win32_cp_conv_ascii_to_w()
173 *ret_idx++ = (wchar_t)*idx++; in php_win32_cp_conv_ascii_to_w()
177 if (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
179 while (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
180 const __m128i block = _mm_load_si128((__m128i *)idx); in php_win32_cp_conv_ascii_to_w()
193 idx += 16; in php_win32_cp_conv_ascii_to_w()
200 while (idx < end) { in php_win32_cp_conv_ascii_to_w()
201 *ret_idx++ = (wchar_t)*idx++; in php_win32_cp_conv_ascii_to_w()
358 char *start = cp->enc, *idx; in php_win32_cp_get_by_enc() local
360 idx = strpbrk(start, "|"); in php_win32_cp_get_by_enc()
362 while (NULL != idx) { in php_win32_cp_get_by_enc()
363 if (0 == zend_binary_strcasecmp(enc, enc_len, start, idx - start)) { in php_win32_cp_get_by_enc()
366 start = idx + 1; in php_win32_cp_get_by_enc()
367 idx = strpbrk(start, "|"); in php_win32_cp_get_by_enc()