Home
last modified time | relevance | path

Searched refs:bEnd (Results 1 – 6 of 6) sorted by relevance

/external/bzip2/
Dbzip2recover.c297 MaybeUInt64 bEnd [BZ_MAX_HANDLED_BLOCKS]; variable
373 bEnd[currBlock] = bitsRead-1; in main()
377 currBlock, bStart[currBlock], bEnd[currBlock] ); in main()
391 bEnd[currBlock] = bitsRead-49; in main()
393 bEnd[currBlock] = 0; in main()
396 (bEnd[currBlock] - bStart[currBlock]) >= 130) { in main()
399 rbCtr+1, bStart[currBlock], bEnd[currBlock] ); in main()
401 rbEnd[rbCtr] = bEnd[currBlock]; in main()
/external/webkit/Source/WebCore/page/
DSpatialNavigation.cpp143 int aStart, bStart, aEnd, bEnd; in areRectsFullyAligned() local
148 bEnd = b.maxX(); in areRectsFullyAligned()
152 bEnd = a.maxX(); in areRectsFullyAligned()
156 bEnd = b.y(); in areRectsFullyAligned()
160 bEnd = a.y(); in areRectsFullyAligned()
167 if (aStart < bEnd) in areRectsFullyAligned()
177 bEnd = end(direction, b); in areRectsFullyAligned()
204 || (aMiddle >= bStart && aMiddle <= bEnd) // (2) in areRectsFullyAligned()
206 || (bEnd == aEnd)); // (4) in areRectsFullyAligned()
219 int bEnd = end(direction, b); in areRectsPartiallyAligned() local
[all …]
/external/llvm/lib/Analysis/
DLoopDependenceAnalysis.cpp259 bEnd = bGEP->idx_end(); in analysePair() local
260 aIdx != aEnd && bIdx != bEnd; in analysePair()
261 aIdx += (aIdx != aEnd), bIdx += (bIdx != bEnd)) { in analysePair()
263 const SCEV* bSCEV = (bIdx != bEnd) ? SE->getSCEV(*bIdx) : GetZeroSCEV(SE); in analysePair()
/external/webkit/Source/JavaScriptCore/wtf/unicode/
DUTF8.cpp368 bool equalUTF16WithUTF8(const UChar* a, const UChar* aEnd, const char* b, const char* bEnd) in equalUTF16WithUTF8() argument
370 while (b < bEnd) { in equalUTF16WithUTF8()
379 if (bEnd - b < utf8SequenceLength) in equalUTF16WithUTF8()
DUTF8.h75 bool equalUTF16WithUTF8(const UChar* a, const UChar* aEnd, const char* b, const char* bEnd);
/external/webkit/Source/WebCore/editing/
DTextIterator.cpp2063 const UChar* bEnd = m_normalizedMatch.end(); in isBadMatch() local
2072 while (b != bEnd && !isKanaLetter(*b)) in isBadMatch()
2077 if (a == aEnd || b == bEnd) { in isBadMatch()
2079 ASSERT(b == bEnd); in isBadMatch()
2094 if (b != bEnd && isCombiningVoicedSoundMark(*b)) in isBadMatch()
2098 if (!(b != bEnd && isCombiningVoicedSoundMark(*b))) in isBadMatch()