Lines Matching refs:value
49 * Select "acceleration" for LZ4_compress_fast() when parameter value <= 0
54 * Any "acceleration" value higher than this threshold
169 # define expect(expr,value) (__builtin_expect ((expr),(value)) )
171 # define expect(expr,value) (expr)
375 static void LZ4_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; }
376 static void LZ4_write32(void* memPtr, U32 value) { *(U32*)memPtr = value; }
388 static void LZ4_write16(void* memPtr, U16 value) { ((LZ4_unalign*)memPtr)->u16 = value; }
389 static void LZ4_write32(void* memPtr, U32 value) { ((LZ4_unalign*)memPtr)->u32 = value; }
408 static void LZ4_write16(void* memPtr, U16 value)
410 LZ4_memcpy(memPtr, &value, sizeof(value));
413 static void LZ4_write32(void* memPtr, U32 value)
415 LZ4_memcpy(memPtr, &value, sizeof(value));
431 static void LZ4_writeLE16(void* memPtr, U16 value)
434 LZ4_write16(memPtr, value);
437 p[0] = (BYTE) value;
438 p[1] = (BYTE)(value>>8);
690 static const U32 LZ4_skipTrigger = 6; /* Increase this value ==> compression run slower on incompressible data */
1594 * external dictionary context, since there is no value a table
1941 int outputSize, /* If endOnInput==endOnInputSize, this value is `dstCapacity` */