Lines Matching defs:byU32
696 typedef enum { clearedTable = 0, byPtr, byU32, byU16 } tableType_t;
789 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = 0; return; }
801 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; }
814 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; }
828 * Assumption 1 : only valid if tableType == byU32 or byU16.
834 if (tableType == byU32) {
850 if (tableType == byU32) { const U32* const hashTable = (const U32*) tableBase; return hashTable[h] + srcBase; }
875 || ((tableType == byU32) && cctx->currentOffset > 1 GB)
893 if (cctx->currentOffset != 0 && tableType == byU32) {
1014 } else { /* byU32, byU16 */
1035 assert(tableType == byU32);
1036 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32);
1218 } else { /* byU32, byU16 */
1227 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32);
1356 const tableType_t tableType = ((sizeof(void*)==4) && ((uptrval)source > LZ4_DISTANCE_MAX)) ? byPtr : byU32;
1363 const tableType_t tableType = ((sizeof(void*)==4) && ((uptrval)source > LZ4_DISTANCE_MAX)) ? byPtr : byU32;
1394 const tableType_t tableType = ((sizeof(void*)==4) && ((uptrval)src > LZ4_DISTANCE_MAX)) ? byPtr : byU32;
1408 const tableType_t tableType = ((sizeof(void*)==4) && ((uptrval)src > LZ4_DISTANCE_MAX)) ? byPtr : byU32;
1455 tableType_t const addrMode = ((sizeof(void*)==4) && ((uptrval)src > LZ4_DISTANCE_MAX)) ? byPtr : byU32;
1526 LZ4_prepareTable(&(ctx->internal_donotuse), 0, byU32);
1544 const tableType_t tableType = byU32;
1637 const tableType_t tableType = byU32;
1720 result = LZ4_compress_generic(streamPtr, source, dest, srcSize, NULL, 0, notLimited, byU32, usingExtDict, dictSmall, 1);
1722 result = LZ4_compress_generic(streamPtr, source, dest, srcSize, NULL, 0, notLimited, byU32, usingExtDict, noDictIssue, 1);