Lines Matching +full:num +full:- +full:strings

1 // SPDX-License-Identifier: GPL-2.0
10 "---------------------------------------------------------------------"
11 "---------------------------------------------------------------------"
12 "---------------------------------------------------------------------";
43 /* two-letter suffices */ in perf_atoll()
68 return -1; in perf_atoll()
84 if (*pat == '-' && *(pat + 1) != ']') { /* Range */ in __match_charclass()
85 if (*(pat - 1) <= c && c <= *(pat + 1)) in __match_charclass()
87 if (*(pat - 1) > *(pat + 1)) in __match_charclass()
159 * strglobmatch - glob expression pattern matching
181 * strlazymatch - matching pattern strings lazily with glob pattern
194 * strtailcmp - Compare the tail of two strings
204 while (--i1 >= 0 && --i2 >= 0) { in strtailcmp()
206 return s1[i1] - s2[i2]; in strtailcmp()
237 printed += scnprintf(e + printed, size - printed, " %s ", or_and); in asprintf_expr_inout_ints()
238 printed += scnprintf(e + printed, size - printed, in asprintf_expr_inout_ints()
258 (ptr == str + 1 && *(ptr - 1) != '\\')) in strpbrk_esc()
261 } while (ptr && *(ptr - 1) == '\\' && *(ptr - 2) != '\\'); in strpbrk_esc()
286 memmove(d, s, p - s); in strdup_esc()
287 d += p - s; in strdup_esc()
299 return c - '0'; in hex()
301 return c - 'a' + 10; in hex()
302 return c - 'A' + 10; in hex()
318 int num = 0; in strreplace_chars() local
323 num++; in strreplace_chars()
327 new_s = malloc(strlen(haystack) + (num * (replace_len - 1) + 1)); in strreplace_chars()
335 memcpy(to, from, 1 + loc - from); in strreplace_chars()
336 to += loc - from; in strreplace_chars()