Home
last modified time | relevance | path

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

/third_party/protobuf/src/google/protobuf/stubs/
Dstructurally_valid.cc397 const uint8* srclimit = isrc + str_length; in UTF8GenericScan() local
398 const uint8* srclimit8 = str_length < 7 ? isrc : srclimit - 7; in UTF8GenericScan()
411 (src < srclimit) && in UTF8GenericScan()
450 while (src < srclimit) { in UTF8GenericScan()
505 const uint8* srclimit = isrc + str_length; in UTF8GenericScanFastAscii() local
506 const uint8* srclimit8 = str_length < 7 ? isrc : srclimit - 7; in UTF8GenericScanFastAscii()
513 (src < srclimit) && (src[0] < 0x80)) { in UTF8GenericScanFastAscii()
523 while ((src < srclimit) && (src[0] < 0x80)) { in UTF8GenericScanFastAscii()
594 const char* srclimit = isrc + len; in UTF8CoerceToStructurallyValid() local
599 while (src < srclimit) { // src points to bogus byte or is off the end in UTF8CoerceToStructurallyValid()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/common/
Duniset.cpp914 UChar32* srclimit = list + len; in add() local
915 while (src < srclimit) *(dst++) = *(src++); in add()
/third_party/node/deps/icu-small/source/common/
Duniset.cpp888 UChar32* srclimit = list + len; in add() local
889 while (src < srclimit) *(dst++) = *(src++); in add()
/third_party/skia/third_party/externals/icu/source/common/
Duniset.cpp888 UChar32* srclimit = list + len; in add() local
889 while (src < srclimit) *(dst++) = *(src++); in add()
/third_party/icu/icu4c/source/common/
Duniset.cpp888 UChar32* srclimit = list + len; in add() local
889 while (src < srclimit) *(dst++) = *(src++); in add()
/third_party/flutter/skia/third_party/externals/icu/patches/
Duniset_perf2.patch835 - UChar32* srclimit = list + i;
836 - while (src > srclimit) *(--dst) = *(--src);