HomeSort by relevance Sort by last modified time
    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.c 135 HashEntry* pNewEntries;
141 pNewEntries = (HashEntry*) calloc(newSize, sizeof(HashEntry));
142 if (pNewEntries == NULL)
153 while (pNewEntries[newIdx].data != NULL)
156 pNewEntries[newIdx].hashValue = hashValue;
157 pNewEntries[newIdx].data = data;
162 pHashTable->pEntries = pNewEntries;

Completed in 36 milliseconds