Searched refs:byU16 (Results 1 - 1 of 1) sorted by relevance

/external/lz4/lib/
H A Dlz4.c381 typedef enum { byPtr, byU32, byU16 } tableType_t; enumerator in enum:__anon15298
404 if (tableType == byU16)
414 const U32 hashLog = (tableType == byU16) ? LZ4_HASHLOG+1 : LZ4_HASHLOG;
423 if ((sizeof(reg_t)==8) && (tableType != byU16)) return LZ4_hash5(LZ4_read_ARCH(p), tableType);
433 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; }
506 if ((tableType == byU16) && (inputSize>=LZ4_64Klimit)) return 0; /* Size too large (not within 64K limit) */
544 || ((tableType==byU16) ? 0 : (match + MAX_DISTANCE < ip))
667 return LZ4_compress_generic(ctx, source, dest, inputSize, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
672 return LZ4_compress_generic(ctx, source, dest, inputSize, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
711 return LZ4_compress_generic(&ctx.internal_donotuse, source, dest, inputSize, maxOutputSize, limitedOutput, byU16, noDic
[all...]

Completed in 61 milliseconds