/third_party/skia/third_party/externals/icu/source/tools/gensprep/ |
D | store.c | 212 static UHashtable* hashTable = NULL; variable 253 if (hashTable == NULL) { in storeMappingData() 256 elementCount = uhash_count(hashTable); in storeMappingData() 263 while( (element = uhash_nextElement(hashTable, &pos))!=NULL){ in storeMappingData() 368 if(hashTable==NULL){ in storeMapping() 369 hashTable = uhash_open(hashEntry, compareEntries, NULL, status); in storeMapping() 370 uhash_setValueDeleter(hashTable, valueDeleter); in storeMapping() 458 uhash_iput(hashTable,codepoint,value,status); in storeMapping() 626 if (hashTable != NULL) { in generateData() 627 uhash_close(hashTable); in generateData()
|
/third_party/icu/icu4c/source/tools/gensprep/ |
D | store.c | 212 static UHashtable* hashTable = NULL; variable 253 if (hashTable == NULL) { in storeMappingData() 256 elementCount = uhash_count(hashTable); in storeMappingData() 263 while( (element = uhash_nextElement(hashTable, &pos))!=NULL){ in storeMappingData() 368 if(hashTable==NULL){ in storeMapping() 369 hashTable = uhash_open(hashEntry, compareEntries, NULL, status); in storeMapping() 370 uhash_setValueDeleter(hashTable, valueDeleter); in storeMapping() 458 uhash_iput(hashTable,codepoint,value,status); in storeMapping() 626 if (hashTable != NULL) { in generateData() 627 uhash_close(hashTable); in generateData()
|
/third_party/flutter/skia/third_party/externals/icu/source/tools/gensprep/ |
D | store.c | 211 static UHashtable* hashTable = NULL; variable 252 if (hashTable == NULL) { in storeMappingData() 255 elementCount = uhash_count(hashTable); in storeMappingData() 262 while( (element = uhash_nextElement(hashTable, &pos))!=NULL){ in storeMappingData() 367 if(hashTable==NULL){ in storeMapping() 368 hashTable = uhash_open(hashEntry, compareEntries, NULL, status); in storeMapping() 369 uhash_setValueDeleter(hashTable, valueDeleter); in storeMapping() 456 uhash_iput(hashTable,codepoint,value,status); in storeMapping() 623 if (hashTable != NULL) { in generateData() 624 uhash_close(hashTable); in generateData()
|
/third_party/lz4/lib/ |
D | lz4.c | 730 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = NULL; return; } in LZ4_clearHash() local 731 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash() local 732 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash() local 743 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; } in LZ4_putIndexOnHash() local 744 …case byU16: { U16* hashTable = (U16*) tableBase; assert(idx < 65536); hashTable[h] = (U16)idx; ret… in LZ4_putIndexOnHash() local 755 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash() local 756 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash() local 757 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; } in LZ4_putPositionOnHash() local 777 const U32* const hashTable = (const U32*) tableBase; in LZ4_getIndexOnHash() local 779 return hashTable[h]; in LZ4_getIndexOnHash() [all …]
|
D | lz4hc.c | 96 MEM_INIT(hc4->hashTable, 0, sizeof(hc4->hashTable)); in LZ4HC_clearTables() 121 U32* const hashTable = hc4->hashTable; in LZ4HC_Insert() local 128 size_t delta = idx - hashTable[h]; in LZ4HC_Insert() 131 hashTable[h] = idx; in LZ4HC_Insert() 251 U32* const HashTable = hc4->hashTable; in LZ4HC_InsertAndGetWiderMatch() 417 U32 dictMatchIndex = dictCtx->hashTable[LZ4HC_hashPtr(ip)]; in LZ4HC_InsertAndGetWiderMatch()
|
D | lz4hc.h | 204 LZ4_u32 hashTable[LZ4HC_HASHTABLESIZE]; member
|
D | lz4.h | 597 LZ4_u32 hashTable[LZ4_HASH_SIZE_U32]; member
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | LzcompCompress.java | 53 private HashNode[] hashTable; field in LzcompCompress 123 hashTable = new HashNode[0x10000]; in initializeModel() 213 for (HashNode hNode = hashTable[pos]; hNode != null; prevNode = hNode, hNode = hNode.next) { in findMatch() 218 if (hashTable[pos] == hNode) { in findMatch() 219 hashTable[pos] = null; in findMatch() 402 hNode.next = hashTable[pos]; in updateModel() 403 hashTable[pos] = hNode; in updateModel()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | LzcompCompress.java | 53 private HashNode[] hashTable; field in LzcompCompress 123 hashTable = new HashNode[0x10000]; in initializeModel() 213 for (HashNode hNode = hashTable[pos]; hNode != null; prevNode = hNode, hNode = hNode.next) { in findMatch() 218 if (hashTable[pos] == hNode) { in findMatch() 219 hashTable[pos] = null; in findMatch() 402 hNode.next = hashTable[pos]; in updateModel() 403 hashTable[pos] = hNode; in updateModel()
|