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

1 2

  /external/elfutils/lib/
dynamicsizehash.c 68 lookup (htab, hval, val)
69 NAME *htab;
74 size_t idx = 1 + hval % htab->size;
76 if (htab->table[idx].hashval != 0)
80 if (htab->table[idx].hashval == hval
81 && COMPARE (htab->table[idx].data, val) == 0)
85 hash = 1 + hval % (htab->size - 2);
90 idx = htab->size + idx - hash;
95 if (htab->table[idx].hashval == hval
96 && COMPARE (htab->table[idx].data, val) == 0
    [all...]
fixedsizehash.h 146 CONCAT(PREFIX,fshash_fini) (struct CONCAT(PREFIX,fshash) *htab)
148 free (htab);
154 CONCAT(PREFIX,fshash_lookup) (struct CONCAT(PREFIX,fshash) *htab,
157 size_t idx = 1 + hval % htab->nslots;
159 if (htab->table[idx].hval != 0)
164 if (htab->table[idx].hval == hval
165 && COMPARE (data, ENTRYP (htab->table[idx])) == 0)
166 return &htab->table[idx];
169 hash = 1 + hval % (htab->nslots - 2);
174 idx = htab->nslots + idx - hash
    [all...]
dynamicsizehash.h 105 extern int name##_init (name *htab, unsigned long int init_size); \
108 extern int name##_free (name *htab); \
111 extern int name##_insert (name *htab, unsigned long int hval, TYPE data); \
114 extern int name##_overwrite (name *htab, unsigned long int hval, TYPE data); \
117 extern TYPE name##_find (name *htab, unsigned long int hval, TYPE val);
125 extern TYPE name##_iterate (name *htab, void **ptr);
  /external/liblzf/src/org/liblzf/
CLZF.java 156 int []htab=new int[1<<14]; local
159 htab[c]=0;
179 reference = htab[hslot];
180 htab[hslot] = (int)iidx;
230 htab[IDX (hval)] = iidx;
234 htab[IDX (hval)] = iidx;
  /external/liblzf/
lzf_c.c 102 , LZF_STATE htab
107 LZF_STATE htab; local
134 memset (htab, 0, sizeof (htab));
145 hslot = htab + IDX (hval);
236 htab[IDX (hval)] = ip - LZF_HSLOT_BIAS;
241 htab[IDX (hval)] = ip - LZF_HSLOT_BIAS;
250 htab[IDX (hval)] = ip - LZF_HSLOT_BIAS;
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
hashtab.h 100 struct GTY(()) htab {
144 typedef struct htab *htab_t;
except.h 298 extern struct htab *get_eh_throw_stmt_table (struct function *);
299 extern void set_eh_throw_stmt_table (struct function *, struct htab *);
ggc.h 82 struct htab;
84 struct htab * *base;
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
hashtab.h 100 struct GTY(()) htab {
144 typedef struct htab *htab_t;
except.h 298 extern struct htab *get_eh_throw_stmt_table (struct function *);
299 extern void set_eh_throw_stmt_table (struct function *, struct htab *);
ggc.h 82 struct htab;
84 struct htab * *base;
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
hashtab.h 100 struct GTY(()) htab {
144 typedef struct htab *htab_t;
except.h 298 extern struct htab *get_eh_throw_stmt_table (struct function *);
299 extern void set_eh_throw_stmt_table (struct function *, struct htab *);
ggc.h 82 struct htab;
84 struct htab * *base;
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
hashtab.h 100 struct GTY(()) htab {
144 typedef struct htab *htab_t;
except.h 298 extern struct htab *get_eh_throw_stmt_table (struct function *);
299 extern void set_eh_throw_stmt_table (struct function *, struct htab *);
ggc.h 82 struct htab;
84 struct htab * *base;
  /external/liblzf/cs/
CLZF.cs 156 long []htab=new long[1<<14];
159 htab[c]=0;
179 reference = htab[hslot];
180 htab[hslot] = (long)iidx;
230 htab[IDX (hval)] = iidx;
234 htab[IDX (hval)] = iidx;
  /external/valgrind/main/exp-sgcheck/
sg_main.c 1222 IInstance* htab; member in struct:_StackFrame
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/include/
bfdlink.h 738 void *htab;
735 void *htab; member in struct:bfd_elf_version_expr_head
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/include/
bfdlink.h 771 void *htab;
768 void *htab; member in struct:bfd_elf_version_expr_head
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/include/
bfdlink.h 738 void *htab;
735 void *htab; member in struct:bfd_elf_version_expr_head
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/include/
bfdlink.h 771 void *htab;
768 void *htab; member in struct:bfd_elf_version_expr_head
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.6/include/
bfdlink.h 738 void *htab;
735 void *htab; member in struct:bfd_elf_version_expr_head
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.7/include/
bfdlink.h 771 void *htab;
768 void *htab; member in struct:bfd_elf_version_expr_head

Completed in 830 milliseconds

1 2