Lines Matching defs:swap
1173 function swap(b, n, m) {
1181 // do the swap in javascript. For larger buffers,
1188 swap(this, i, i + 1);
1196 // do the swap in javascript. For larger buffers,
1203 swap(this, i, i + 3);
1204 swap(this, i + 1, i + 2);
1213 // do the swap in javascript. For larger buffers,
1220 swap(this, i, i + 7);
1221 swap(this, i + 1, i + 6);
1222 swap(this, i + 2, i + 5);
1223 swap(this, i + 3, i + 4);