Lines Matching refs:idx

109 	const char *idx = in, *end;  in php_win32_cp_conv_ascii_to_w()  local
132 while (idx < aidx) { in php_win32_cp_conv_ascii_to_w()
133 ch_err |= *idx; in php_win32_cp_conv_ascii_to_w()
134 idx++; in php_win32_cp_conv_ascii_to_w()
143 while (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
144 const uint8x16_t block = vld1q_u8((const void*)idx); in php_win32_cp_conv_ascii_to_w()
146 idx += 16; in php_win32_cp_conv_ascii_to_w()
154 while (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
155 const __m128i block = _mm_load_si128((__m128i *)idx); in php_win32_cp_conv_ascii_to_w()
157 idx += 16; in php_win32_cp_conv_ascii_to_w()
166 while (idx < end) { in php_win32_cp_conv_ascii_to_w()
167 ch_err |= *idx; in php_win32_cp_conv_ascii_to_w()
168 idx++; in php_win32_cp_conv_ascii_to_w()
181 idx = in; in php_win32_cp_conv_ascii_to_w()
187 while (idx < aidx) { in php_win32_cp_conv_ascii_to_w()
188 *ret_idx++ = (wchar_t)*idx++; in php_win32_cp_conv_ascii_to_w()
192 if (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
194 while (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
200 vld1q_u8((const void*)idx), in php_win32_cp_conv_ascii_to_w()
205 idx += 16; in php_win32_cp_conv_ascii_to_w()
210 while (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
211 const __m128i block = _mm_load_si128((__m128i *)idx); in php_win32_cp_conv_ascii_to_w()
220 idx += 16; in php_win32_cp_conv_ascii_to_w()
228 while (idx < end) { in php_win32_cp_conv_ascii_to_w()
229 *ret_idx++ = (wchar_t)*idx++; in php_win32_cp_conv_ascii_to_w()
386 char *start = cp->enc, *idx; in php_win32_cp_get_by_enc() local
388 idx = strpbrk(start, "|"); in php_win32_cp_get_by_enc()
390 while (NULL != idx) { in php_win32_cp_get_by_enc()
391 if (0 == zend_binary_strcasecmp(enc, enc_len, start, idx - start)) { in php_win32_cp_get_by_enc()
394 start = idx + 1; in php_win32_cp_get_by_enc()
395 idx = strpbrk(start, "|"); in php_win32_cp_get_by_enc()