Home
last modified time | relevance | path

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

/external/lz4/programs/
Dframetest.c231 BYTE* const iend = (BYTE*)compressedBuffer + cSize; in basicTests() local
244 while (ip < iend) in basicTests()
289 BYTE* const iend = (BYTE*)compressedBuffer + cSize; in basicTests() local
296 while (ip < iend) in basicTests()
301 if (iSize > (size_t)(iend-ip)) iSize = iend-ip; in basicTests()
447 const BYTE* const iend = ip + srcSize; in fuzzerTests() local
454 while (ip < iend) in fuzzerTests()
460 if (iSize > (size_t)(iend-ip)) iSize = iend-ip; in fuzzerTests()
483 const BYTE* const iend = ip + cSize; in fuzzerTests() local
490 while (ip < iend) in fuzzerTests()
[all …]
/external/lz4/lib/
Dlz4.c519 const BYTE* const iend = ip + inputSize; in LZ4_compress_generic() local
520 const BYTE* const mflimit = iend - MFLIMIT; in LZ4_compress_generic()
521 const BYTE* const matchlimit = iend - LASTLITERALS; in LZ4_compress_generic()
696 int lastRun = (int)(iend - anchor); in LZ4_compress_generic()
701 memcpy(op, anchor, iend - anchor); in LZ4_compress_generic()
702 op += iend-anchor; in LZ4_compress_generic()
959 const BYTE* const iend = ip + inputSize; in LZ4_decompress_generic() local
998 while (likely((endOnInput)?ip<iend-RUN_MASK:1) && (s==255)); in LZ4_decompress_generic()
1005 …if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITER… in LZ4_decompress_generic()
1011 …if ((endOnInput) && (ip+length > iend)) goto _output_error; /* Error : read attempt beyond end o… in LZ4_decompress_generic()
[all …]
Dlz4hc.c343 const BYTE* const iend = ip + inputSize; in LZ4HC_compress_generic() local
344 const BYTE* const mflimit = iend - MFLIMIT; in LZ4HC_compress_generic()
345 const BYTE* const matchlimit = (iend - LASTLITERALS); in LZ4HC_compress_generic()
521 int lastRun = (int)(iend - anchor); in LZ4HC_compress_generic()
525 memcpy(op, anchor, iend - anchor); in LZ4HC_compress_generic()
526 op += iend-anchor; in LZ4HC_compress_generic()
/external/v8/src/
Dlithium.cc415 iend = deprecation_dependencies_.end(); it != iend; ++it) { in CommitDependencies() local
423 iend = stability_dependencies_.end(); it != iend; ++it) { in CommitDependencies() local
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGPrinter.cpp236 for(SDNodeIterator i = SDNodeIterator::begin(N), iend = SDNodeIterator::end(N); in setSubgraphColorHelper() local
237 i != iend; in setSubgraphColorHelper()
/external/llvm/lib/TableGen/
DRecord.cpp402 iend = T1SuperClasses.end(); in resolveTypes() local
403 i != iend; in resolveTypes()
420 iend = T2SuperClasses.end(); in resolveTypes() local
421 i != iend; in resolveTypes()
465 iend = Range.end(); in ProfileBitsInit() local
466 i != iend; in ProfileBitsInit()
630 iend = Range.end(); in ProfileListInit() local
631 i != iend; in ProfileListInit()
1600 iend = args.end(); in get() local
1601 i != iend; in get()
DTGParser.cpp55 iend = TemplateArgs.end(); in dump() local
56 i != iend; in dump()
232 iend = SMC->DefPrototypes.end(); in AddSubMultiClass() local
233 i != iend; in AddSubMultiClass()
761 for (LoopVector::iterator i = Loops.begin(), iend = Loops.end(); in ParseIDValue() local
762 i != iend; in ParseIDValue()
/external/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()
/external/pcre/dist/
Dpcre_exec.c1979 register int *iend = md->offset_vector + offset; in match() local
1980 while (iptr < iend) *iptr++ = -1; in match()
6673 register int *iend = iptr - re->top_bracket; in pcre_exec() local
6674 if (iend < md->offset_vector + 2) iend = md->offset_vector + 2; in pcre_exec()
6675 while (--iptr >= iend) *iptr = -1; in pcre_exec()
7077 register int *iptr, *iend; in pcre_exec() local
7081 iend = offsets + resetcount; in pcre_exec()
7082 while (iptr < iend) *iptr++ = -1; in pcre_exec()