• Home
  • Raw
  • Download

Lines Matching refs:pSrcLimit

665       const uint8_t *pSrcLimit = (pSrc!=nullptr)?(pSrc + srcLength):nullptr;  in u_strFromUTF8Lenient()  local
680 if((pSrcLimit - pSrc) >= 4) { in u_strFromUTF8Lenient()
681 pSrcLimit -= 3; /* temporarily reduce pSrcLimit */ in u_strFromUTF8Lenient()
709 } while(pSrc < pSrcLimit); in u_strFromUTF8Lenient()
711 pSrcLimit += 3; /* restore original pSrcLimit */ in u_strFromUTF8Lenient()
714 while(pSrc < pSrcLimit) { in u_strFromUTF8Lenient()
725 if(pSrc < pSrcLimit) { in u_strFromUTF8Lenient()
731 if((pSrcLimit - pSrc) >= 2) { in u_strFromUTF8Lenient()
740 if((pSrcLimit - pSrc) >= 3) { in u_strFromUTF8Lenient()
897 const char16_t *pSrcLimit = (pSrc!=nullptr)?(pSrc+srcLength):nullptr; in u_strToUTF8WithSub() local
909 srcLength = (int32_t)(pSrcLimit - pSrc); in u_strToUTF8WithSub()
968 while(pSrc<pSrcLimit) { in u_strToUTF8WithSub()
997 if(U16_IS_SURROGATE_LEAD(ch) && pSrc<pSrcLimit && U16_IS_TRAIL(ch2=*pSrc)) { in u_strToUTF8WithSub()
1019 while(pSrc<pSrcLimit) { in u_strToUTF8WithSub()
1027 } else if(U16_IS_SURROGATE_LEAD(ch) && pSrc<pSrcLimit && U16_IS_TRAIL(ch2=*pSrc)) { in u_strToUTF8WithSub()
1322 const char16_t *pSrcLimit; in u_strToJavaModifiedUTF8() local
1358 pSrcLimit = (src!=nullptr)?(src+srcLength):nullptr; in u_strToJavaModifiedUTF8()
1361 srcLength = (int32_t)(pSrcLimit - src); in u_strToJavaModifiedUTF8()
1366 while(src < pSrcLimit && (ch = *src) <= 0x7f && ch != 0) { in u_strToJavaModifiedUTF8()
1404 while(src<pSrcLimit) { in u_strToJavaModifiedUTF8()
1432 while(src<pSrcLimit) { in u_strToJavaModifiedUTF8()