Home
last modified time | relevance | path

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

/xnu-12377.61.12/bsd/vfs/
H A Dvfs_unicode.c718 static void swapBufCharCCWithPrevious(int32_t jdx, int32_t buf[], uint8_t bufcc[]);
729 int32_t idx, jdx; in doReorder() local
731 for (jdx = buflen - 1; jdx > idx; jdx--) { in doReorder()
732 if (bufcc[jdx] < bufcc[jdx - 1]) { in doReorder()
733 swapBufCharCCWithPrevious(jdx, buf, bufcc); in doReorder()
740 swapBufCharCCWithPrevious(int32_t jdx, int32_t buf[], uint8_t bufcc[]) in swapBufCharCCWithPrevious() argument
742 int32_t bufchar = buf[jdx]; in swapBufCharCCWithPrevious()
743 uint8_t bufccval = bufcc[jdx]; in swapBufCharCCWithPrevious()
744 buf[jdx] = buf[jdx - 1]; in swapBufCharCCWithPrevious()
745 bufcc[jdx] = bufcc[jdx - 1]; in swapBufCharCCWithPrevious()
[all …]