Lines Matching refs:s
41 static int type_list_append(struct list_head *list, const char *s, void *owned) in type_list_append() argument
45 if (!s) in type_list_append()
49 entry->str = s; in type_list_append()
91 static void type_expansion_append(struct type_expansion *type, const char *s, in type_expansion_append() argument
94 type->len += type_list_append(&type->expanded, s, owned); in type_expansion_append()
254 static void version_add(struct version *version, const char *s) in version_add() argument
256 version->crc = crc32(version->crc, (void *)s, strlen(s)); in version_add()
258 type_expansion_append(&version->type, s, NULL); in version_add()
270 static inline bool is_type_prefix(const char *s) in is_type_prefix() argument
272 return (s[0] == 's' || s[0] == 'u' || s[0] == 'e' || s[0] == 't') && in is_type_prefix()
273 s[1] == '#'; in is_type_prefix()