/external/libmicrohttpd/src/microhttpd/ |
tsearch.c | 23 tsearch(vkey, vrootp, compar) 24 const void *vkey; /* key to be located */ 37 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */ 49 q->key = (void *)vkey; /* initialize new node */ 57 tfind(vkey, vrootp, compar) 58 const void *vkey; /* key to be found */ 70 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */ 82 * vkey: key to be deleted 87 tdelete(const void * __restrict vkey, void ** __restrict vrootp, 97 while ((cmp = (*compar)(vkey, (*rootp)->key)) != 0) [all...] |
/bionic/libc/upstream-openbsd/lib/libc/stdlib/ |
tfind.c | 24 tfind(const void *vkey, void * const *vrootp, 27 char *key = (char *)vkey;
|
tsearch.c | 25 tsearch(const void *vkey, void **vrootp, 29 char *key = (char *)vkey; 54 tdelete(const void *vkey, void **vrootp, 58 char *key = (char *)vkey;
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_tgsi.h | 77 struct svga_vs_compile_key vkey; member in struct:svga_compile_key 152 const struct svga_vs_compile_key *vkey );
|
svga_tgsi.c | 286 emit.imm_start += key.vkey.need_prescale ? 2 : 0; 365 const struct svga_vs_compile_key *vkey ) 371 memcpy(&key.vkey, vkey, sizeof *vkey); 373 /* Note: we could alternately store the remap table in the vkey but 376 svga_remap_generics(vkey->fs_generic_inputs, key.generic_remap_table);
|
svga_state_vs.c | 62 if (compare_vs_keys( key, &result->key.vkey ) == 0)
|
svga_state_constants.c | 332 key = &result->key.vkey;
|
svga_tgsi_decl_sm30.c | 468 if (!emit->key.vkey.allow_psiz)
|
svga_tgsi_insn.c | [all...] |
/external/valgrind/memcheck/tests/ |
unit_oset.c | 80 static Word wordCmp(void* vkey, void* velem) 82 return *(Word*)vkey - *(Word*)velem; 448 static Word blockCmp(const void* vkey, const void* velem) 450 Addr key = *(const Addr*)vkey;
|