Home
last modified time | relevance | path

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

/third_party/lz4/tests/
Dframetest.c406 const BYTE* const iend = ip + cSize; in basicTests() local
407 while (ip < iend) { in basicTests()
445 const BYTE* const iend = (const BYTE*)compressedBuffer + cSize; in basicTests() local
448 while (ip < iend) { in basicTests()
452 if (iSize > (size_t)(iend-ip)) iSize = (size_t)(iend-ip); in basicTests()
772 BYTE* iend = (BYTE*)compressedBuffer + cSize + 8; in basicTests() local
781 while (ip < iend) { in basicTests()
785 if (iSize > (size_t)(iend-ip)) iSize = (size_t)(iend-ip); in basicTests()
798 iend = ip+8; in basicTests()
800 while (ip < iend) { in basicTests()
[all …]
/third_party/lz4/lib/
Dlz4.c941 const BYTE* const iend = ip + inputSize; in LZ4_compress_generic_validated() local
942 const BYTE* const mflimitPlusOne = iend - MFLIMIT + 1; in LZ4_compress_generic_validated()
943 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4_compress_generic_validated()
1268 { size_t lastRun = (size_t)(iend - anchor); in LZ4_compress_generic_validated()
1953 const BYTE* const iend = ip + srcSize; in LZ4_decompress_generic() local
1965 const BYTE* const shortiend = iend - 14 /*maxLL*/ - 2 /*offset*/; in LZ4_decompress_generic()
1999 assert(ip < iend); in LZ4_decompress_generic()
2005 size_t const addl = read_variable_length(&ip, iend-RUN_MASK, 1); in LZ4_decompress_generic()
2014 if ((cpy>oend-32) || (ip+length>iend-32)) { goto safe_literal_copy; } in LZ4_decompress_generic()
2021 if (ip > iend-(16 + 1/*max lit + offset + nextToken*/)) { goto safe_literal_copy; } in LZ4_decompress_generic()
[all …]
Dlz4hc.c569 const BYTE* const iend = ip + inputSize; in LZ4HC_compress_hashChain() local
570 const BYTE* const mflimit = iend - MFLIMIT; in LZ4HC_compress_hashChain()
571 const BYTE* const matchlimit = (iend - LASTLITERALS); in LZ4HC_compress_hashChain()
736 { size_t lastRunSize = (size_t)(iend - anchor); /* literals */ in LZ4HC_compress_hashChain()
1352 const BYTE* const iend = ip + *srcSizePtr; in LZ4HC_compress_optimal() local
1353 const BYTE* const mflimit = iend - MFLIMIT; in LZ4HC_compress_optimal()
1354 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4HC_compress_optimal()
1569 { size_t lastRunSize = (size_t)(iend - anchor); /* literals */ in LZ4HC_compress_optimal()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGPrinter.cpp240 for(SDNodeIterator i = SDNodeIterator::begin(N), iend = SDNodeIterator::end(N); in setSubgraphColorHelper() local
241 i != iend; in setSubgraphColorHelper()
/third_party/toybox/toys/pending/
Dvi.c1398 char* iend = TT.il->data; //input end in draw_page() local
1401 iw = crunch_str(&iend, INT_MAX, 0, "\t\n", vi_crunch); in draw_page()
1407 iend = TT.il->data; in draw_page()
1409 iw -= crunch_str(&iend, clip, 0, "\t\n", vi_crunch); in draw_page()
1410 x = crunch_str(&iend, iw, stdout, "\t\n", vi_crunch); in draw_page()
1412 iend = TT.il->data; in draw_page()
1418 x += crunch_str(&iend, iw, stdout, "\t\n", vi_crunch); in draw_page()
/third_party/icu/icu4c/source/common/
Dushape.cpp1201 int32_t i, iend; in shapeUnicode() local
1234 iend = -1; in shapeUnicode()
1247 while (i != iend) { in shapeUnicode()
1252 if(Nw == iend) { in shapeUnicode()
1347 } else if(i != iend) { in shapeUnicode()
/third_party/node/deps/icu-small/source/common/
Dushape.cpp1201 int32_t i, iend; in shapeUnicode() local
1234 iend = -1; in shapeUnicode()
1247 while (i != iend) { in shapeUnicode()
1252 if(Nw == iend) { in shapeUnicode()
1347 } else if(i != iend) { in shapeUnicode()
/third_party/skia/third_party/externals/icu/source/common/
Dushape.cpp1201 int32_t i, iend; in shapeUnicode() local
1234 iend = -1; in shapeUnicode()
1247 while (i != iend) { in shapeUnicode()
1252 if(Nw == iend) { in shapeUnicode()
1347 } else if(i != iend) { in shapeUnicode()
/third_party/skia/src/codec/
DSkPngCodec.cpp216 bool iend = false; in processData() local
228 iend = true; in processData()
242 || iend) { in processData()
/third_party/libwebsockets/lib/roles/h2/
Dhttp2.c2013 unsigned char c, *oldin = in, *iend = in + (size_t)_inlen; in lws_h2_parser() local
2019 while (in < iend) { in lws_h2_parser()
2211 (unsigned long)(lws_ptr_diff_size_t(iend, in) + 1), in lws_h2_parser()
2226 n = (int)lws_ptr_diff_size_t(iend, in) + 1; in lws_h2_parser()
/third_party/skia/third_party/externals/icu/source/data/locales/
Det.txt1009 modifier{"täiend"}
/third_party/icu/icu4c/source/data/locales/
Det.txt1082 modifier{"täiend"}
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp57274 const elem_type* iend = Elements() + Length(); in IndexOf() local
57275 for (; iter != iend; ++iter) { in IndexOf()
57300 const elem_type* iend = Elements() - 1; in LastIndexOf() local
57301 const elem_type* iter = iend + endOffset; in LastIndexOf()
57302 for (; iter != iend; --iter) { in LastIndexOf()
57934 elem_type* iend = iter + aCount; in InsertElementsAt() local
57935 for (; iter != iend; ++iter) { in InsertElementsAt()
57999 for (index_type i = 0, iend = len / 2; i < iend; ++i) { in Reverse() local
58014 elem_type *iend = iter + aCount; in DestructRange() local
58015 for (; iter != iend; ++iter) { in DestructRange()
[all …]