Lines Matching refs:size
284 if (avail_in != fhs) goto _output_error; /* must consume all, since header size is supposed to be exact */
350 DISPLAYLEVEL(3, "Start by feeding 0 bytes, to get next input size : ");
355 DISPLAYLEVEL(3, "LZ4F_getFrameInfo on zero-size input : ");
523 /* frame content size tests */
574 DISPLAYLEVEL(3, "created frame header of size %i bytes \n", (int)cErr);
589 size_t const srcSize = 65 KB; /* must be > 64 KB to avoid short-size optimizations */
748 DISPLAYLEVEL(3, "Returned block size of %u bytes for blockID %u \n",
792 /* generate zero-size skippable frame */
793 DISPLAYLEVEL(3, "zero-size skippable frame\n");
846 static void locateBuffDiff(const void* buff1, const void* buff2, size_t size, o_scenario_e o_scenario)
855 (int)o_scenario, (unsigned)size);
858 while (p < size && b1[p]==b2[p]) p++;
859 if (p != size) {
860 DISPLAY("Error at pos %i/%i : %02X != %02X \n", (int)p, (int)size, b1[p], b2[p]);
927 "Decompression overwrites beyond assigned dst size",
1064 BYTE* const oend = op + (neverFlush ? LZ4F_compressFrameBound(srcSize, prefsPtr) : compressedBufferSize); /* when flushes are possible, can't guarantee a max compressed size */