Home
last modified time | relevance | path

Searched refs:oend (Results 1 – 13 of 13) sorted by relevance

/external/u-boot/lib/
Dlz4.c87 BYTE* const oend = op + outputSize; in LZ4_decompress_generic() local
101 …if ((partialDecoding) && (oexit> oend-MFLIMIT)) oexit = oend-MFLIMIT; /* t… in LZ4_decompress_generic()
130 …if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITER… in LZ4_decompress_generic()
131 || ((!endOnInput) && (cpy>oend-COPYLENGTH))) in LZ4_decompress_generic()
135 …if (cpy > oend) goto _output_error; /* Error : write attempt beyond end … in LZ4_decompress_generic()
140 …if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop … in LZ4_decompress_generic()
141 …if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input … in LZ4_decompress_generic()
173 …if (unlikely(op+length > oend-LASTLITERALS)) goto _output_error; /* doesn't respect parsing rest… in LZ4_decompress_generic()
217 if (unlikely(cpy>oend-12)) in LZ4_decompress_generic()
219 …if (cpy > oend-LASTLITERALS) goto _output_error; /* Error : last LASTLITERALS bytes must be lit… in LZ4_decompress_generic()
[all …]
/external/e2fsprogs/lib/ext2fs/
Dbitmaps.c168 ext2_ino_t end, ext2_ino_t *oend) in ext2fs_fudge_inode_bitmap_end() argument
176 if (oend) in ext2fs_fudge_inode_bitmap_end()
177 *oend = tmp_oend; in ext2fs_fudge_inode_bitmap_end()
182 blk_t end, blk_t *oend) in ext2fs_fudge_block_bitmap_end() argument
187 end, oend)); in ext2fs_fudge_block_bitmap_end()
191 blk64_t end, blk64_t *oend) in ext2fs_fudge_block_bitmap_end2() argument
195 end, oend)); in ext2fs_fudge_block_bitmap_end2()
Dgen_bitmap64.c370 __u64 end, __u64 *oend) in ext2fs_fudge_generic_bmap_end() argument
384 if (oend) in ext2fs_fudge_generic_bmap_end()
385 *oend = tmp_oend; in ext2fs_fudge_generic_bmap_end()
394 if (oend) in ext2fs_fudge_generic_bmap_end()
395 *oend = bitmap->end; in ext2fs_fudge_generic_bmap_end()
Dgen_bitmap.c311 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()
Dext2fsP.h165 __u64 end, __u64 *oend);
Dext2fs.h838 ext2_ino_t end, ext2_ino_t *oend);
840 blk_t end, blk_t *oend);
842 blk64_t end, blk64_t *oend);
1365 ext2_ino_t *oend);
1401 __u64 end, __u64 *oend);
/external/lz4/tests/
Dframetest.c256 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; in basicTests() local
268 oSize = (size_t)(oend-op); in basicTests()
272 if (op>oend) { DISPLAY("decompression write overflow \n"); goto _output_error; } in basicTests()
336 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; in basicTests() local
340 size_t oSize = oend-op; in basicTests()
374 BYTE* const oend = ostart + COMPRESSIBLE_NOISE_LENGTH; in basicTests() local
382 size_t oSize = oend-op; in basicTests()
665 BYTE* const oend = (BYTE*)decodedBuffer + COMPRESSIBLE_NOISE_LENGTH; in basicTests() local
679 size_t oSize = oend-op; in basicTests()
698 size_t oSize = oend-op; in basicTests()
[all …]
/external/lz4/lib/
Dlz4hc.c416 BYTE* oend) in LZ4HC_encodeSequence() argument
440 …if ((limit) && ((*op + (length >> 8) + length + (2 + 1 + LASTLITERALS)) > oend)) return 1; /* Ch… in LZ4HC_encodeSequence()
461 …if ((limit) && (*op + (length >> 8) + (1 + LASTLITERALS) > oend)) return 1; /* Check output limi… in LZ4HC_encodeSequence()
501 BYTE* oend = op + maxOutputSize; in LZ4HC_compress_hashChain() local
514 …if (limit == limitedDestSize) oend -= LASTLITERALS; /* Hack for support LZ4 forma… in LZ4HC_compress_hashChain()
536 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
584 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
587 … if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml2, ref2, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
606 … if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
644 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) goto _dest_overflow; in LZ4HC_compress_hashChain()
[all …]
Dlz4.c1421 BYTE* const oend = op + outputSize; in LZ4_decompress_generic() local
1433 const BYTE* const shortoend = oend - (endOnInput ? 14 : 8) /*maxLL*/ - 18 /*maxML*/; in LZ4_decompress_generic()
1510 if ( ((endOnInput) && ((cpy>oend-MFLIMIT) || (ip+length>iend-(2+1+LASTLITERALS))) ) in LZ4_decompress_generic()
1511 || ((!endOnInput) && (cpy>oend-WILDCOPYLENGTH)) ) in LZ4_decompress_generic()
1514 …if (cpy > oend) { cpy = oend; length = oend-op; } /* Partial decoding : stop in the mi… in LZ4_decompress_generic()
1517 …if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop … in LZ4_decompress_generic()
1518 …if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input … in LZ4_decompress_generic()
1523 if (!partialDecoding || (cpy == oend)) { in LZ4_decompress_generic()
1543 assert(oend > op); in LZ4_decompress_generic()
1544 assert(oend - op >= 4); in LZ4_decompress_generic()
[all …]
/external/golang-protobuf/protoc-gen-go/generator/internal/remap/
Dremap.go67 func (m Map) add(opos, oend, npos, nend int) { argument
68 m[Location{Pos: opos, End: oend}] = Location{Pos: npos, End: nend}
/external/bcc/src/cc/frontends/b/
Dscope.h66 typename vector<T*>::iterator oend() { return elems_ordered_.end(); } in oend() function
Dcodegen_llvm.cc1216 for (auto it = scopes_->current_var()->obegin(); it != scopes_->current_var()->oend(); ++it) in visit_func_decl_stmt_node()
1240 for (auto it = scopes_->top_table()->obegin(); it != scopes_->top_table()->oend(); ++it) in visit()
1243 for (auto it = scopes_->top_func()->obegin(); it != scopes_->top_func()->oend(); ++it) in visit()
1278 for (auto it = scopes_->top_struct()->obegin(); it != scopes_->top_struct()->oend(); ++it) { in print_header()
1283 …for (auto it = proto_scopes_->top_struct()->obegin(); it != proto_scopes_->top_struct()->oend(); +… in print_header()
/external/e2fsprogs/doc/
Dlibext2fs.texinfo1051 …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})