Searched refs:oend (Results 1 – 9 of 9) sorted by relevance
/third_party/e2fsprogs/lib/ext2fs/ |
D | bitmaps.c | 169 ext2_ino_t end, ext2_ino_t *oend) in ext2fs_fudge_inode_bitmap_end() argument 177 if (oend) in ext2fs_fudge_inode_bitmap_end() 178 *oend = tmp_oend; in ext2fs_fudge_inode_bitmap_end() 183 blk_t end, blk_t *oend) in ext2fs_fudge_block_bitmap_end() argument 188 end, oend)); in ext2fs_fudge_block_bitmap_end() 192 blk64_t end, blk64_t *oend) in ext2fs_fudge_block_bitmap_end2() argument 196 end, oend)); in ext2fs_fudge_block_bitmap_end2()
|
D | gen_bitmap64.c | 372 __u64 end, __u64 *oend) in ext2fs_fudge_generic_bmap_end() argument 386 if (oend) in ext2fs_fudge_generic_bmap_end() 387 *oend = tmp_oend; in ext2fs_fudge_generic_bmap_end() 396 if (oend) in ext2fs_fudge_generic_bmap_end() 397 *oend = bitmap->end; in ext2fs_fudge_generic_bmap_end()
|
D | gen_bitmap.c | 311 ext2_ino_t end, ext2_ino_t *oend) in ext2fs_fudge_generic_bitmap_end() argument 319 if (oend) in ext2fs_fudge_generic_bitmap_end() 320 *oend = bitmap->end; in ext2fs_fudge_generic_bitmap_end()
|
D | ext2fsP.h | 184 __u64 end, __u64 *oend);
|
D | ext2fs.h | 878 ext2_ino_t end, ext2_ino_t *oend); 880 blk_t end, blk_t *oend); 882 blk64_t end, blk64_t *oend); 1420 ext2_ino_t *oend); 1456 __u64 end, __u64 *oend);
|
/third_party/lz4/lib/ |
D | lz4hc.c | 470 BYTE* oend) in LZ4HC_encodeSequence() argument 500 if (limit && ((op + (length / 255) + length + (2 + 1 + LASTLITERALS)) > oend)) { in LZ4HC_encodeSequence() 502 (int)length, (int)(oend - op)); in LZ4HC_encodeSequence() 525 if (limit && (op + (length / 255) + (1 + LASTLITERALS) > oend)) { in LZ4HC_encodeSequence() 571 BYTE* oend = op + maxOutputSize; in LZ4HC_compress_hashChain() local 584 …if (limit == fillOutput) oend -= LASTLITERALS; /* Hack for support LZ4 format res… in LZ4HC_compress_hashChain() 606 … if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain() 654 … if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain() 657 if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml2, ref2, limit, oend)) { in LZ4HC_compress_hashChain() 680 … if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain() [all …]
|
D | lz4.c | 1758 BYTE* const oend = op + outputSize; in LZ4_decompress_generic() local 1769 const BYTE* const shortoend = oend - (endOnInput ? 14 : 8) /*maxLL*/ - 18 /*maxML*/; in LZ4_decompress_generic() 1791 if ((oend - op) < FASTLOOP_SAFE_DISTANCE) { in LZ4_decompress_generic() 1799 assert(oend - op >= FASTLOOP_SAFE_DISTANCE); in LZ4_decompress_generic() 1818 if ((cpy>oend-32) || (ip+length>iend-32)) { goto safe_literal_copy; } in LZ4_decompress_generic() 1821 if (cpy>oend-8) { goto safe_literal_copy; } in LZ4_decompress_generic() 1858 if (op + length >= oend - FASTLOOP_SAFE_DISTANCE) { in LZ4_decompress_generic() 1863 if (op + length >= oend - FASTLOOP_SAFE_DISTANCE) { in LZ4_decompress_generic() 1872 assert(op + 18 <= oend); in LZ4_decompress_generic() 1884 if (unlikely(op+length > oend-LASTLITERALS)) { in LZ4_decompress_generic() [all …]
|
/third_party/lz4/tests/ |
D | frametest.c | 276 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; in basicTests() local 288 oSize = (size_t)(oend-op); in basicTests() 292 if (op>oend) { DISPLAY("decompression write overflow \n"); goto _output_error; } in basicTests() 356 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; in basicTests() local 360 size_t oSize = (size_t)(oend-op); in basicTests() 395 BYTE* const oend = ostart + COMPRESSIBLE_NOISE_LENGTH; in basicTests() local 403 size_t oSize = (size_t)(oend-op); in basicTests() 709 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; in basicTests() local 723 size_t oSize = (size_t)(oend-op); in basicTests() 742 size_t oSize = (size_t)(oend-op); in basicTests() [all …]
|
/third_party/e2fsprogs/doc/ |
D | libext2fs.texinfo | 1051 …e_inode_bitmap_end (ext2fs_inode_bitmap @var{bitmap}, ext2_ino_t @var{end}, ext2_ino_t *@var{oend}) 1054 …xt2fs_fudge_block_bitmap_end (ext2fs_block_bitmap @var{bitmap}, blk_t @var{end}, blk_t *@var{oend})
|