Lines Matching refs:ERROR
19 #include "error_private.h" /* ERR_*, ERROR */
81 if (countSize > hbSize) return ERROR(corruption_detected);
90 if (nbBits > FSE_TABLELOG_ABSOLUTE_MAX) return ERROR(tableLog_tooLarge);
196 if (remaining != 1) return ERROR(corruption_detected);
198 if (charnum > maxSV1) return ERROR(maxSymbolValue_tooSmall);
199 if (bitCount > 32) return ERROR(corruption_detected);
271 if (!srcSize) return ERROR(srcSize_wrong);
278 if (iSize+1 > srcSize) return ERROR(srcSize_wrong);
279 if (oSize >= hwSize) return ERROR(corruption_detected);
287 if (iSize+1 > srcSize) return ERROR(srcSize_wrong);
297 if (huffWeight[n] > HUF_TABLELOG_MAX) return ERROR(corruption_detected);
301 if (weightTotal == 0) return ERROR(corruption_detected);
305 if (tableLog > HUF_TABLELOG_MAX) return ERROR(corruption_detected);
312 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
318 if ((rankStats[1] < 2) || (rankStats[1] & 1)) return ERROR(corruption_detected); /* by construction : at least 2 elts of rank 1, must be even */