Home
last modified time | relevance | path

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

/xnu-8020.101.4/bsd/vfs/
H A Dvfs_unicode.c672 static void swapBufCharCCWithPrevious(int32_t jdx, int32_t buf[], uint8_t bufcc[]);
683 int32_t idx, jdx; in doReorder() local
685 for (jdx = buflen - 1; jdx > idx; jdx--) { in doReorder()
686 if (bufcc[jdx] < bufcc[jdx - 1]) { in doReorder()
687 swapBufCharCCWithPrevious(jdx, buf, bufcc); in doReorder()
694 swapBufCharCCWithPrevious(int32_t jdx, int32_t buf[], uint8_t bufcc[]) in swapBufCharCCWithPrevious() argument
696 int32_t bufchar = buf[jdx]; in swapBufCharCCWithPrevious()
697 uint8_t bufccval = bufcc[jdx]; in swapBufCharCCWithPrevious()
698 buf[jdx] = buf[jdx - 1]; in swapBufCharCCWithPrevious()
699 bufcc[jdx] = bufcc[jdx - 1]; in swapBufCharCCWithPrevious()
[all …]