Lines Matching defs:len
50 static bool looks_like_rust(const char *sym, size_t len);
79 size_t len, len_without_hash;
84 len = strlen(sym);
85 if (len <= hash_prefix_len + hash_len)
89 len_without_hash = len - (hash_prefix_len + hash_len);
129 static bool looks_like_rust(const char *str, size_t len)
131 const char *end = str + len;
258 size_t len = strlen(seq);
260 if (strncmp(*in, seq, len))
265 *in += len;