Lines Matching refs:lc_needle
3268 zend_string *lc_needle; local
3275 lc_needle = php_string_tolower(needle);
3277 …stack; (r = (char*)php_memnstr(p, ZSTR_VAL(lc_needle), ZSTR_LEN(lc_needle), end)); p = r + ZSTR_LE…
3284 zend_string_release(lc_needle);
3296 lc_needle = php_string_tolower(needle);
3297 n = ZSTR_VAL(lc_needle);
3299 while ((o = (char*)php_memnstr(o, n, ZSTR_LEN(lc_needle), endp))) {
3300 o += ZSTR_LEN(lc_needle);
3305 zend_string_release(lc_needle);
3309 if (str_len > ZSTR_LEN(lc_needle)) {
3310 new_str = zend_string_safe_alloc(count, str_len - ZSTR_LEN(lc_needle), ZSTR_LEN(haystack), 0);
3312 new_str = zend_string_alloc(count * (str_len - ZSTR_LEN(lc_needle)) + ZSTR_LEN(haystack), 0);
3318 …stack; (r = (char*)php_memnstr(p, ZSTR_VAL(lc_needle), ZSTR_LEN(lc_needle), end)); p = r + ZSTR_LE…
3332 zend_string_release(lc_needle);
3340 lc_needle = php_string_tolower(needle);
3342 if (memcmp(lc_haystack, ZSTR_VAL(lc_needle), ZSTR_LEN(lc_needle))) {
3343 zend_string_release(lc_needle);
3346 zend_string_release(lc_needle);