HomeSort by relevance Sort by last modified time
    Searched refs:htab (Results 1 - 14 of 14) sorted by null

  /external/elfutils/lib/
dynamicsizehash.c 32 lookup (htab, hval, val)
33 NAME *htab;
38 size_t idx = 1 + hval % htab->size;
40 if (htab->table[idx].hashval != 0)
44 if (htab->table[idx].hashval == hval
45 && COMPARE (htab->table[idx].data, val) == 0)
49 hash = 1 + hval % (htab->size - 2);
54 idx = htab->size + idx - hash;
59 if (htab->table[idx].hashval == hval
60 && COMPARE (htab->table[idx].data, val) == 0
    [all...]
fixedsizehash.h 113 CONCAT(PREFIX,fshash_fini) (struct CONCAT(PREFIX,fshash) *htab)
115 free (htab);
121 CONCAT(PREFIX,fshash_lookup) (struct CONCAT(PREFIX,fshash) *htab,
124 size_t idx = 1 + hval % htab->nslots;
126 if (htab->table[idx].hval != 0)
131 if (htab->table[idx].hval == hval
132 && COMPARE (data, ENTRYP (htab->table[idx])) == 0)
133 return &htab->table[idx];
136 hash = 1 + hval % (htab->nslots - 2);
141 idx = htab->nslots + idx - hash
    [all...]
dynamicsizehash.h 69 extern int name##_init (name *htab, unsigned long int init_size); \
72 extern int name##_free (name *htab); \
75 extern int name##_insert (name *htab, unsigned long int hval, TYPE data); \
78 extern int name##_overwrite (name *htab, unsigned long int hval, TYPE data); \
81 extern TYPE name##_find (name *htab, unsigned long int hval, TYPE val);
89 extern TYPE name##_iterate (name *htab, void **ptr);
  /device/samsung/crespo/alsa-lib/src/compat/
hsearch_r.c 70 hcreate_r (nel, htab)
72 struct hsearch_data *htab;
75 if (htab == NULL)
82 if (htab->table != NULL)
90 htab->size = nel;
91 htab->filled = 0;
94 htab->table = (_ENTRY *) calloc (htab->size + 1, sizeof (_ENTRY));
95 if (htab->table == NULL)
106 hdestroy_r (htab)
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
hashtab.h 99 struct htab GTY(()) function
144 typedef struct htab *htab_t;
ggc.h 84 struct htab;
86 struct htab * *base;
tree-flow-inline.h 109 hti->htab = table;
    [all...]
tree-flow.h 210 htab_t htab; member in struct:__anon13051
215 /* Iterate through the elements of hashtable HTAB, using htab_iterator ITER,
217 #define FOR_EACH_HTAB_ELEMENT(HTAB, RESULT, TYPE, ITER) \
218 for (RESULT = (TYPE) first_htab_element (&(ITER), (HTAB)); \
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
hashtab.h 99 struct htab GTY(()) function
144 typedef struct htab *htab_t;
ggc.h 84 struct htab;
86 struct htab * *base;
tree-flow-inline.h 109 hti->htab = table;
    [all...]
tree-flow.h 210 htab_t htab; member in struct:__anon13408
215 /* Iterate through the elements of hashtable HTAB, using htab_iterator ITER,
217 #define FOR_EACH_HTAB_ELEMENT(HTAB, RESULT, TYPE, ITER) \
218 for (RESULT = (TYPE) first_htab_element (&(ITER), (HTAB)); \
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/include/
bfdlink.h 697 void *htab;
694 void *htab; member in struct:bfd_elf_version_expr_head
  /system/core/adb/
sysdeps_win32.c 1357 HANDLE htab[ MAX_LOOPER_HANDLES ]; member in struct:EventLooperRec_
    [all...]

Completed in 221 milliseconds