Lines Matching refs:idx

105 	const char *idx = in, *end;  in php_win32_cp_conv_ascii_to_w()  local
128 while (idx < aidx) { in php_win32_cp_conv_ascii_to_w()
129 ch_err |= *idx; in php_win32_cp_conv_ascii_to_w()
130 idx++; in php_win32_cp_conv_ascii_to_w()
138 while (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
139 const __m128i block = _mm_load_si128((__m128i *)idx); in php_win32_cp_conv_ascii_to_w()
141 idx += 16; in php_win32_cp_conv_ascii_to_w()
149 while (idx < end) { in php_win32_cp_conv_ascii_to_w()
150 ch_err |= *idx; in php_win32_cp_conv_ascii_to_w()
151 idx++; in php_win32_cp_conv_ascii_to_w()
164 idx = in; in php_win32_cp_conv_ascii_to_w()
170 while (idx < aidx) { in php_win32_cp_conv_ascii_to_w()
171 *ret_idx++ = (wchar_t)*idx++; in php_win32_cp_conv_ascii_to_w()
175 if (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
177 while (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
178 const __m128i block = _mm_load_si128((__m128i *)idx); in php_win32_cp_conv_ascii_to_w()
187 idx += 16; in php_win32_cp_conv_ascii_to_w()
194 while (idx < end) { in php_win32_cp_conv_ascii_to_w()
195 *ret_idx++ = (wchar_t)*idx++; in php_win32_cp_conv_ascii_to_w()
352 char *start = cp->enc, *idx; in php_win32_cp_get_by_enc() local
354 idx = strpbrk(start, "|"); in php_win32_cp_get_by_enc()
356 while (NULL != idx) { in php_win32_cp_get_by_enc()
357 if (0 == zend_binary_strcasecmp(enc, enc_len, start, idx - start)) { in php_win32_cp_get_by_enc()
360 start = idx + 1; in php_win32_cp_get_by_enc()
361 idx = strpbrk(start, "|"); in php_win32_cp_get_by_enc()