Searched refs:srcBase (Results 1 – 1 of 1) sorted by relevance
/DragonOS-0.1.2/kernel/src/libs/ |
D | lz4.c | 1007 const BYTE *srcBase) in LZ4_putPositionOnHash() argument 1025 hashTable[h] = (U32)(p - srcBase); in LZ4_putPositionOnHash() 1031 hashTable[h] = (U16)(p - srcBase); in LZ4_putPositionOnHash() 1037 …NE void LZ4_putPosition(const BYTE *p, void *tableBase, tableType_t tableType, const BYTE *srcBase) in LZ4_putPosition() argument 1040 LZ4_putPositionOnHash(p, h, tableBase, tableType, srcBase); in LZ4_putPosition() 1068 …TE *LZ4_getPositionOnHash(U32 h, const void *tableBase, tableType_t tableType, const BYTE *srcBase) in LZ4_getPositionOnHash() argument 1078 return hashTable[h] + srcBase; in LZ4_getPositionOnHash() 1082 return hashTable[h] + srcBase; in LZ4_getPositionOnHash() 1089 const BYTE *srcBase) in LZ4_getPosition() argument 1092 return LZ4_getPositionOnHash(h, tableBase, tableType, srcBase); in LZ4_getPosition()
|