Home
last modified time | relevance | path

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

/xnu-12377.61.12/bsd/vfs/
H A Dvfs_unicode.c565 int32_t *ustrA = (int32_t *)buf; in utf8_normalizeOptCaseFoldAndMatchSubstring() local
566 const int32_t *ustrALimit = ustrA + (buf_size / sizeof(int32_t)); in utf8_normalizeOptCaseFoldAndMatchSubstring()
567 int32_t *ustrANormEnd = ustrA; /* how far we have already normalized in ustrA */ in utf8_normalizeOptCaseFoldAndMatchSubstring()
581 if (ustrANormEnd - ustrA < ustrB_len) { in utf8_normalizeOptCaseFoldAndMatchSubstring()
615 } while ((ustrANormEnd - ustrA < ustrB_len) && (strA < strALimit || unormAlen > 0)); in utf8_normalizeOptCaseFoldAndMatchSubstring()
618 if (ustrANormEnd - ustrA < ustrB_len) { in utf8_normalizeOptCaseFoldAndMatchSubstring()
622 if (memcmp(ustrA, ustrB, ustrB_len * sizeof(ustrB[0])) == 0) { in utf8_normalizeOptCaseFoldAndMatchSubstring()
626 ustrA++; /* advance match position */ in utf8_normalizeOptCaseFoldAndMatchSubstring()