Lines Matching refs:ERROR
86 …if (FSE_BUILD_CTABLE_WORKSPACE_SIZE(maxSymbolValue, tableLog) > wkspSize) return ERROR(tableLog_to… in FSE_buildCTable_wksp()
268 return ERROR(dstSize_tooSmall); /* Buffer overflow */ in FSE_writeNCount_generic()
283 return ERROR(dstSize_tooSmall); /* Buffer overflow */ in FSE_writeNCount_generic()
300 if (remaining<1) return ERROR(GENERIC); in FSE_writeNCount_generic()
305 return ERROR(dstSize_tooSmall); /* Buffer overflow */ in FSE_writeNCount_generic()
314 return ERROR(GENERIC); /* incorrect normalized distribution */ in FSE_writeNCount_generic()
319 return ERROR(dstSize_tooSmall); /* Buffer overflow */ in FSE_writeNCount_generic()
331 if (tableLog > FSE_MAX_TABLELOG) return ERROR(tableLog_tooLarge); /* Unsupported */ in FSE_writeNCount()
332 if (tableLog < FSE_MIN_TABLELOG) return ERROR(GENERIC); /* Unsupported */ in FSE_writeNCount()
465 return ERROR(GENERIC); in FSE_normalizeM2()
479 if (tableLog < FSE_MIN_TABLELOG) return ERROR(GENERIC); /* Unsupported size */ in FSE_normalizeCount()
480 if (tableLog > FSE_MAX_TABLELOG) return ERROR(tableLog_tooLarge); /* Unsupported size */ in FSE_normalizeCount()
481 …if (tableLog < FSE_minTableLog(total, maxSymbolValue)) return ERROR(GENERIC); /* Too small table… in FSE_normalizeCount()
549 if (nbBits < 1) return ERROR(GENERIC); /* min size */ in FSE_buildCTable_raw()