Lines Matching refs:p

236 	const unsigned int *p = &_uccase_extra_table[w & 0xFFFFFF];  in emit_special_casing_sequence()  local
238 *out++ = *++p; in emit_special_casing_sequence()
299 uint32_t *p = converted_buf; in php_unicode_convert_case() local
306 *p++ = (UNEXPECTED(w > 0xFFFFFF)) ? w : php_unicode_toupper_simple(w, src_encoding); in php_unicode_convert_case()
313 *p++ = (UNEXPECTED(w > 0xFFFFFF)) ? w : php_unicode_tolower_simple(w, src_encoding); in php_unicode_convert_case()
320 *p++ = (UNEXPECTED(w > 0xFFFFFF)) ? w : php_unicode_tofold_simple(w, src_encoding); in php_unicode_convert_case()
328 *p++ = w; in php_unicode_convert_case()
331 …*p++ = title_mode ? php_unicode_tolower_simple(w, src_encoding) : php_unicode_totitle_simple(w, sr… in php_unicode_convert_case()
342 *p++ = w; in php_unicode_convert_case()
347 p = emit_special_casing_sequence(w, p); in php_unicode_convert_case()
349 *p++ = w; in php_unicode_convert_case()
358 *p++ = w; in php_unicode_convert_case()
384 … if (j >= 0 ? php_unicode_is_cased(wchar_buf[j]) : scan_back_for_cased_letter(p, converted_end)) { in php_unicode_convert_case()
393 *p++ = 0x3C2; in php_unicode_convert_case()
400 p = emit_special_casing_sequence(w, p); in php_unicode_convert_case()
402 *p++ = w; in php_unicode_convert_case()
411 *p++ = w; in php_unicode_convert_case()
416 p = emit_special_casing_sequence(w, p); in php_unicode_convert_case()
418 *p++ = w; in php_unicode_convert_case()
427 *p++ = w; in php_unicode_convert_case()
437 … if (j >= 0 ? php_unicode_is_cased(wchar_buf[j]) : scan_back_for_cased_letter(p, converted_end)) { in php_unicode_convert_case()
443 *p++ = 0x3C2; in php_unicode_convert_case()
453 p = emit_special_casing_sequence(w2, p); in php_unicode_convert_case()
455 *p++ = w2; in php_unicode_convert_case()
467 converted_end = p; in php_unicode_convert_case()
468 ZEND_ASSERT(p - converted_buf <= 192); in php_unicode_convert_case()
469 dst_encoding->from_wchar(converted_buf, p - converted_buf, &buf, !in_len); in php_unicode_convert_case()