Lines Matching defs:value
72 FSE_PUBLIC_API unsigned FSE_isError(size_t code); /* tells if a return value is an error code */
137 maxSymbolValuePtr[0] will be updated, with its real value (necessarily <= original value)
145 You can use 'tableLog'==0 to mean "use default tableLog value".
146 If you are unsure of which tableLog value to use, you can ask FSE_optimalTableLog(),
152 The return value is tableLog if everything proceeded as expected.
154 If there is an error (ex: invalid tableLog value), the function will return an ErrorCode (which can be tested using FSE_isError()).
259 * This function is unsafe, and will segfault if any value within `src` is `> *maxSymbolValuePtr` (presuming it's also the size of `count`).
295 ptrdiff_t value;
340 Your last FSE encoding operation shall be to flush your last state value(s).
432 statePtr->value = (ptrdiff_t)1 << tableLog;
440 * uses the smallest state value possible, saving the cost of this symbol */
448 statePtr->value = (nbBitsOut << 16) - symbolTT.deltaNbBits;
449 statePtr->value = stateTable[(statePtr->value >> nbBitsOut) + symbolTT.deltaFindState];
457 U32 nbBitsOut = (U32)((statePtr->value + symbolTT.deltaNbBits) >> 16);
458 BIT_addBits(bitC, statePtr->value, nbBitsOut);
459 statePtr->value = stateTable[(statePtr->value >> nbBitsOut) + symbolTT.deltaFindState];
464 BIT_addBits(bitC, statePtr->value, statePtr->stateLog);
537 * Recommended max value is 14, for 16KB, which nicely fits into Intel x86 L1 cache */
546 * Maximum symbol value authorized.