OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pNewEntries
(Results
1 - 2
of
2
) sorted by null
/bootable/recovery/minzip/
Hash.c
139
HashEntry*
pNewEntries
;
145
pNewEntries
= (HashEntry*) calloc(newSize, sizeof(HashTable));
146
if (
pNewEntries
== NULL)
157
while (
pNewEntries
[newIdx].data != NULL)
160
pNewEntries
[newIdx].hashValue = hashValue;
161
pNewEntries
[newIdx].data = data;
166
pHashTable->pEntries =
pNewEntries
;
/dalvik/vm/
Hash.cpp
134
HashEntry*
pNewEntries
;
140
pNewEntries
= (HashEntry*) calloc(newSize, sizeof(HashEntry));
141
if (
pNewEntries
== NULL)
152
while (
pNewEntries
[newIdx].data != NULL)
155
pNewEntries
[newIdx].hashValue = hashValue;
156
pNewEntries
[newIdx].data = data;
161
pHashTable->pEntries =
pNewEntries
;
Completed in 24 milliseconds