Lines Matching refs:flen
46 size_t flen; in strcount() local
54 flen = strlen(find); in strcount()
55 if (strlen(source) == 0 || flen == 0) in strcount()
60 if (strncmp(p, find, flen) == 0) { /* found an instance */ in strcount()
61 p += flen; in strcount()
93 size_t flen; in replaceall() local
108 flen = strlen(find); in replaceall()
112 if (slen == 0 || flen == 0 || slen < flen) in replaceall()
116 if (rlen > flen) { in replaceall()
128 if (strncmp(t, find, flen) == 0) { in replaceall()
132 t += flen; in replaceall()