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()
187 char *id, *start; in read_classperms() local
234 start = p; in read_classperms()
238 if (p == start) in read_classperms()
241 id = calloc(1, p - start + 1); in read_classperms()
244 memcpy(id, start, p - start); in read_classperms()
311 start = p; in read_classperms()
315 if (p == start) in read_classperms()
318 id = calloc(1, p - start + 1); in read_classperms()
321 memcpy(id, start, p - start); in read_classperms()
372 char *p, *start; in check_neverallows() local
385 start = p; in check_neverallows()
389 len = p - start; in check_neverallows()
390 if (len != keyword_size || strncmp(start, keyword, keyword_size)) in check_neverallows()