Lines Matching defs:start
54 ohash_create_entry(struct ohash_info *i, const char *start, const char **end)
59 *end = start + strlen(start);
60 p = (i->alloc)(i->key_offset + (*end - start) + 1, i->data);
62 memcpy(p+i->key_offset, start, *end-start);
63 p[i->key_offset + (*end - start)] = '\0';
232 ohash_lookup_interval(struct ohash *h, const char *start, const char *end,
252 strncmp(h->t[i].p+h->info.key_offset, start,
253 end - start) == 0 &&
254 (h->t[i].p+h->info.key_offset)[end-start] == '\0') {