Searched refs:SORT_R_SWAP (Results 1 – 4 of 4) sorted by relevance
/third_party/e2fsprogs/lib/support/ |
D | sort_r.h | 45 #define SORT_R_SWAP(a,b,tmp) ((tmp) = (a), (a) = (b), (b) = (tmp)) macro 53 for(; a < end; a++, b++) { SORT_R_SWAP(*a, *b, tmp); } in sort_r_swap() 129 if(compar(l[0],l[1],arg) > 0) { SORT_R_SWAP(l[0], l[1], tmp); } in sort_r_simple() 131 SORT_R_SWAP(l[1], l[2], tmp); in sort_r_simple() 132 if(compar(l[0],l[1],arg) > 0) { SORT_R_SWAP(l[0], l[1], tmp); } in sort_r_simple()
|
/third_party/ejdb/src/util/ |
D | sort_r.h | 45 #define SORT_R_SWAP(a, b, tmp) ((tmp) = (a), (a) = (b), (b) = (tmp)) macro 55 SORT_R_SWAP(*a, *b, tmp); in sort_r_swap() 137 SORT_R_SWAP(l[0], l[1], tmp); in sort_r_simple() 140 SORT_R_SWAP(l[1], l[2], tmp); in sort_r_simple() 142 SORT_R_SWAP(l[0], l[1], tmp); in sort_r_simple()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-algs.hh | 937 #define SORT_R_SWAP(a,b,tmp) ((tmp) = (a), (a) = (b), (b) = (tmp)) macro 945 for(; a < end; a++, b++) { SORT_R_SWAP(*a, *b, tmp); } in sort_r_swap() 1022 if(compar(l[0],l[1],ds...) > 0) { SORT_R_SWAP(l[0], l[1], tmp); } in sort_r_simple() 1024 SORT_R_SWAP(l[1], l[2], tmp); in sort_r_simple() 1025 if(compar(l[0],l[1],ds...) > 0) { SORT_R_SWAP(l[0], l[1], tmp); } in sort_r_simple()
|
/third_party/harfbuzz/src/ |
D | hb-algs.hh | 916 #define SORT_R_SWAP(a,b,tmp) ((tmp) = (a), (a) = (b), (b) = (tmp)) macro 924 for(; a < end; a++, b++) { SORT_R_SWAP(*a, *b, tmp); } in sort_r_swap() 1001 if(compar(l[0],l[1],ds...) > 0) { SORT_R_SWAP(l[0], l[1], tmp); } in sort_r_simple() 1003 SORT_R_SWAP(l[1], l[2], tmp); in sort_r_simple() 1004 if(compar(l[0],l[1],ds...) > 0) { SORT_R_SWAP(l[0], l[1], tmp); } in sort_r_simple()
|