Lines Matching refs:start
27 char *start, *id; in read_typeset() local
92 start = p; in read_typeset()
96 if (p == start) in read_typeset()
99 len = p - start; in read_typeset()
100 if (len == keyword_size && !strncmp(start, keyword, keyword_size)) { in read_typeset()
110 memcpy(id, start, len); in read_typeset()
190 char *id, *start; in read_classperms() local
237 start = p; in read_classperms()
241 if (p == start) in read_classperms()
244 id = calloc(1, p - start + 1); in read_classperms()
247 memcpy(id, start, p - start); in read_classperms()
314 start = p; in read_classperms()
318 if (p == start) in read_classperms()
321 id = calloc(1, p - start + 1); in read_classperms()
324 memcpy(id, start, p - start); in read_classperms()
375 char *p, *start; in check_neverallows() local
388 start = p; in check_neverallows()
392 len = p - start; in check_neverallows()
393 if (len != keyword_size || strncmp(start, keyword, keyword_size)) in check_neverallows()