OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HashEntry
(Results
1 - 5
of
5
) sorted by null
/bootable/recovery/minzip/
Hash.h
49
typedef struct
HashEntry
{
52
}
HashEntry
;
65
HashEntry
* pEntries; /* array on heap */
108
return sizeof(HashTable) + pHashTable->tableSize * sizeof(
HashEntry
);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
hash.c
52
struct
HashEntry
{
55
struct
HashEntry
*Next; /**< pointer to next entry */
63
struct
HashEntry
*Table[TABLE_SIZE]; /**< the lookup table */
104
struct
HashEntry
*entry = table->Table[pos];
106
struct
HashEntry
*next = entry->Next;
130
const struct
HashEntry
*entry;
180
struct
HashEntry
*entry;
208
entry = MALLOC_STRUCT(
HashEntry
);
234
struct
HashEntry
*entry, *prev;
293
struct
HashEntry
*entry, *next
[
all
...]
/external/mesa3d/src/mesa/main/
hash.c
52
struct
HashEntry
{
55
struct
HashEntry
*Next; /**< pointer to next entry */
63
struct
HashEntry
*Table[TABLE_SIZE]; /**< the lookup table */
104
struct
HashEntry
*entry = table->Table[pos];
106
struct
HashEntry
*next = entry->Next;
130
const struct
HashEntry
*entry;
180
struct
HashEntry
*entry;
208
entry = MALLOC_STRUCT(
HashEntry
);
234
struct
HashEntry
*entry, *prev;
293
struct
HashEntry
*entry, *next
[
all
...]
/bionic/libc/bionic/
malloc_debug_common.h
58
struct
HashEntry
{
60
HashEntry
* prev;
61
HashEntry
* next;
72
HashEntry
* slots[HASHTABLE_SIZE];
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ExpandedNameTable.java
87
* internal
HashEntry
array.
102
private
HashEntry
[] m_table;
123
m_table = new
HashEntry
[m_capacity];
138
m_table[i] = new
HashEntry
(m_defaultExtendedTypes[i], i, i, null);
192
// Calculate the index into the
HashEntry
table.
199
for (
HashEntry
e = m_table[index]; e != null; e = e.next)
210
// Expand the internal
HashEntry
array if necessary.
233
HashEntry
entry = new
HashEntry
(newET, m_nextType, hash, m_table[index]);
248
HashEntry
[] oldTable = m_table
[
all
...]
Completed in 397 milliseconds