Searched refs:SORT_R_SWAP (Results 1 – 1 of 1) sorted by relevance
/external/harfbuzz_ng/src/ |
D | hb-algs.hh | 683 #define SORT_R_SWAP(a,b,tmp) ((tmp) = (a), (a) = (b), (b) = (tmp)) macro 691 for(; a < end; a++, b++) { SORT_R_SWAP(*a, *b, tmp); } in sort_r_swap() 768 if(compar(l[0],l[1],ds...) > 0) { SORT_R_SWAP(l[0], l[1], tmp); } in sort_r_simple() 770 SORT_R_SWAP(l[1], l[2], tmp); in sort_r_simple() 771 if(compar(l[0],l[1],ds...) > 0) { SORT_R_SWAP(l[0], l[1], tmp); } in sort_r_simple()
|