Searched refs:tabptr (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/pcre-7/pcre/
H A Dpcredemo.c192 unsigned char *tabptr; local
213 tabptr = name_table;
216 int n = (tabptr[0] << 8) | tabptr[1];
217 printf("(%d) %*s: %.*s\n", n, name_entry_size - 3, tabptr + 2,
219 tabptr += name_entry_size;
327 unsigned char *tabptr = name_table; local
331 int n = (tabptr[0] << 8) | tabptr[1];
332 printf("(%d) %*s: %.*s\n", n, name_entry_size - 3, tabptr
[all...]
/macosx-10.10.1/Heimdal-398.1.2/base/
H A Ddict.c194 struct hashentry **tabptr, *h; local
212 tabptr = &dict->tab[v % dict->size];
213 h->next = *tabptr;
214 *tabptr = h;
215 h->prev = tabptr;
/macosx-10.10.1/Heimdal-398.1.2/lib/asn1/
H A Dhash.c104 Hashentry **tabptr; local
115 tabptr = &htab->tab[(*htab->hash) (ptr) % htab->sz];
116 h->next = *tabptr;
117 *tabptr = h;
118 h->prev = tabptr;

Completed in 141 milliseconds