Searched defs:bEnd (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DUnicodeUtilities.cpp353 const UChar* bEnd = secondData + secondLength; local
361 while (b != bEnd && !isKanaLetter(*b))
366 if (a == aEnd || b == bEnd) {
367 return a == aEnd && b == bEnd;
371 const size_t offset = compareKanaLetterAndComposedVoicedSoundMarks(a, aEnd, b, bEnd);
387 const UChar* bEnd = secondData + secondLength; local
390 while (a != aEnd && !isKanaLetter(*a) && b != bEnd && !isKanaLetter(*b)) {
397 if (a == aEnd || b == bEnd) {
398 return a == aEnd && b == bEnd;
405 const size_t offset = compareKanaLetterAndComposedVoicedSoundMarks(a, aEnd, b, bEnd);
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/
H A DUTF8.cpp422 ALWAYS_INLINE bool equalWithUTF8Internal(const CharType* a, const CharType* aEnd, const char* b, const char* bEnd) argument
424 while (b < bEnd) {
433 if (bEnd - b < utf8SequenceLength)
460 bool equalUTF16WithUTF8(const UChar* a, const UChar* aEnd, const char* b, const char* bEnd) argument
462 return equalWithUTF8Internal(a, aEnd, b, bEnd);
465 bool equalLatin1WithUTF8(const LChar* a, const LChar* aEnd, const char* b, const char* bEnd) argument
467 return equalWithUTF8Internal(a, aEnd, b, bEnd);
/external/fio/crc/
H A Dxxhash.c168 const uint8_t * const bEnd = p + len; local
177 const uint8_t * const limit = bEnd - 16;
200 while (p<=bEnd-4)
207 while (p<bEnd)
289 const uint8_t * const bEnd = p + len; local
318 if (p <= bEnd-16)
320 const uint8_t * const limit = bEnd - 16;
340 if (p < bEnd)
342 memcpy(state->memory, p, bEnd-p);
343 state->memsize = (int)(bEnd
365 uint8_t * bEnd = (uint8_t *)state->memory + state->memsize; local
[all...]
/external/bzip2/
H A Dbzip2recover.c297 MaybeUInt64 bEnd [BZ_MAX_HANDLED_BLOCKS]; variable
373 bEnd[currBlock] = bitsRead-1;
377 currBlock, bStart[currBlock], bEnd[currBlock] );
391 bEnd[currBlock] = bitsRead-49;
393 bEnd[currBlock] = 0;
396 (bEnd[currBlock] - bStart[currBlock]) >= 130) {
399 rbCtr+1, bStart[currBlock], bEnd[currBlock] );
401 rbEnd[rbCtr] = bEnd[currBlock];
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DSpatialNavigation.cpp140 LayoutUnit aStart, bStart, aEnd, bEnd; local
145 bEnd = b.x();
149 bEnd = a.x();
153 bEnd = b.y();
157 bEnd = a.y();
164 if (aStart < bEnd)
174 bEnd = end(type, b);
190 || (aMiddle >= bStart && aMiddle <= bEnd); // (2)
205 LayoutUnit bEnd = end(type, b); local
223 || (bEnd >
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashMap.h453 const_iterator bEnd = b.end(); local
456 if (bPos == bEnd || it->value != bPos->value)
/external/sqlite/dist/orig/
H A Dsqlite3.c55509 int bEnd; /* True if reading to end of data */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c55529 int bEnd; /* True if reading to end of data */ local
[all...]

Completed in 4533 milliseconds