Lines Matching defs:start
124 static int get_line(char **start, char *end, char **line)
132 for (p = *start; p < end && isspace(*p); p++);
134 *start = p;
150 memcpy(*line, *start, len);
153 *start = p;
158 *start = NULL;
493 static int is_id_in_scope_with_start(struct policydb *pdb, struct stack *decl_stack, int start, uint32_t symbol_type, char *id)
505 for (i = start; i >= 0; i--) {
520 int start = decl_stack->pos - 1;
522 return is_id_in_scope_with_start(pdb, decl_stack, start, symbol_type, type);
527 int start = decl_stack->pos;
529 return is_id_in_scope_with_start(pdb, decl_stack, start, symbol_type, type);
4166 size_t max_len = 1 << 17; // start at 128KB, this is enough to hold about half of all the existing pp files