Lines Matching refs:idx

105 	const char *idx = in, *end;  in php_win32_cp_conv_ascii_to_w()  local
126 while (idx < aidx) { in php_win32_cp_conv_ascii_to_w()
127 if (!__isascii(*idx) && '\0' != *idx) { in php_win32_cp_conv_ascii_to_w()
130 idx++; in php_win32_cp_conv_ascii_to_w()
134 while (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
135 const __m128i block = _mm_load_si128((__m128i *)idx); in php_win32_cp_conv_ascii_to_w()
139 idx += 16; in php_win32_cp_conv_ascii_to_w()
144 while (idx < end) { in php_win32_cp_conv_ascii_to_w()
145 if (!__isascii(*idx) && '\0' != *idx) { in php_win32_cp_conv_ascii_to_w()
148 idx++; in php_win32_cp_conv_ascii_to_w()
158 idx = in; in php_win32_cp_conv_ascii_to_w()
167 while (idx < aidx) { in php_win32_cp_conv_ascii_to_w()
168 *ret_idx++ = (wchar_t)*idx++; in php_win32_cp_conv_ascii_to_w()
172 if (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
174 while (end - idx > 15) { in php_win32_cp_conv_ascii_to_w()
175 const __m128i block = _mm_load_si128((__m128i *)idx); in php_win32_cp_conv_ascii_to_w()
188 idx += 16; in php_win32_cp_conv_ascii_to_w()
195 while (idx < end) { in php_win32_cp_conv_ascii_to_w()
196 *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()