HomeSort by: relevance | last modified time | path
    Searched defs:endIndex (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 78 SlotIndex endIndex() const { return Segments.stop(); }
  /src/external/bsd/zstd/dist/lib/compress/
zstd_fast.c 203 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
204 const U32 prefixStartIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog);
517 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
518 assert(endIndex - prefixStartIndex <= maxDistance);
519 (void)maxDistance; (void)endIndex; /* these variables are not used when assert() is disabled */
722 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
723 const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog);
zstd_double_fast.c 117 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
119 const U32 prefixLowestIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog);
342 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
344 const U32 prefixLowestIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog);
366 assert(ms->window.dictLimit + (1U << cParams->windowLog) >= endIndex);
626 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
627 const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 4327 /// Returns true if any of the declarator chunks before \p endIndex include a
4331 /// every chunk before \p endIndex is testing all chunks that embed the current
4336 static bool hasOuterPointerLikeChunk(const Declarator &D, unsigned endIndex) {
4337 unsigned i = endIndex;
8174 unsigned endIndex;
8176 endIndex = state.getCurrentChunkIndex();
8178 endIndex = state.getDeclarator().getNumTypeObjects();
8181 !hasOuterPointerLikeChunk(state.getDeclarator(), endIndex);

Completed in 28 milliseconds