Searched refs:n_l (Results 1 – 3 of 3) sorted by relevance
/string/ |
A D | strcasestr.c | 39 #define AVAILABLE(h, h_l, j, n_l) \ argument 40 (((j) + (n_l) <= (h_l)) \ 41 || ((h_l) += __strnlen ((void*)((h) + (h_l)), (n_l) + 512), \ 42 (j) + (n_l) <= (h_l)))
|
A D | strstr.c | 26 #define AVAILABLE(h, h_l, j, n_l) \ argument 27 (((j) + (n_l) <= (h_l)) \ 28 || ((h_l) += __strnlen ((void*)((h) + (h_l)), (n_l) + 512), \ 29 (j) + (n_l) <= (h_l)))
|
A D | memmem.c | 29 #define AVAILABLE(h, h_l, j, n_l) ((j) <= (h_l) - (n_l)) argument
|
Completed in 6 milliseconds