HomeSort by: relevance | last modified time | path
    Searched defs:errorMsg (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/zstd/dist/tests/
fullbench.c 809 const char errorMsg[] = "error: numeric value too large";
813 if (result > max) ERROR_OUT(errorMsg);
820 if (result > maxK) ERROR_OUT(errorMsg);
823 if (result > maxK) ERROR_OUT(errorMsg);
paramgrill.c 2589 const char errorMsg[] = "error: numeric value too large";
2595 if (result > max) errorOut(errorMsg);
2603 if (result > maxK) errorOut(errorMsg);
2606 if (result > maxK) errorOut(errorMsg);
  /src/external/bsd/zstd/dist/programs/
zstdcli.c 385 static const char errorMsg[] = "error: numeric value overflows 32-bit unsigned int";
387 if (readU32FromCharChecked(stringPtr, &result)) { errorOut(errorMsg); }
397 static const char errorMsg[] = "error: numeric value overflows 32-bit int";
404 if (readU32FromCharChecked(stringPtr, &result)) { errorOut(errorMsg); }
447 static const char errorMsg[] = "error: numeric value overflows size_t";
449 if (readSizeTFromCharChecked(stringPtr, &result)) { errorOut(errorMsg); }

Completed in 20 milliseconds