Lines Matching defs:offset
452 size_t size, n, total_in = 0, total_out, offset = 0, frame_size;
475 n = offset = total_out = LZ4F_compressBegin(ctx, buf, size, &preferences);
489 n = LZ4F_compressUpdate(ctx, buf + offset, size - offset,
497 offset += n;
505 if (size - offset < frame_size + 4) {
506 k = loop_write(fdt, buf, offset, false);
511 offset = 0;
515 n = LZ4F_compressEnd(ctx, buf + offset, size - offset, &options);
521 offset += n;
523 r = loop_write(fdt, buf, offset, false);