Searched refs:first_escaped (Results 1 – 2 of 2) sorted by relevance
7254 size_t no_meta_len, first_escaped; in subevalvar() local7272 first_escaped = (str[0] == '\\' && str[1]); in subevalvar()7277 no_meta_len = strpbrk(str + first_escaped * 2, "*?[\\") ? 0 : strlen(str); in subevalvar()7293 if (strncmp(rmesc, str + first_escaped, no_meta_len - first_escaped) != 0) in subevalvar()7297 loc += no_meta_len - first_escaped; in subevalvar()7299 size_t n = no_meta_len - first_escaped; in subevalvar()
6475 int first_escaped = (pattern[0] == '\\' && pattern[1]); in strstr_pattern() local6480 int sz = strcspn(pattern + first_escaped * 2, "*?[\\"); in strstr_pattern()6481 if ((pattern + first_escaped * 2)[sz] == '\0') { in strstr_pattern()6488 *size = sz + first_escaped; in strstr_pattern()6489 return strstr(val, pattern + first_escaped); in strstr_pattern()