Searched refs:roundRobin (Results 1 – 9 of 9) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | parallelism.d | 2364 auto roundRobin = RoundRobinBuffer!(C1, C2)(next, empty, initialBufSize, nBuffers); variable 2365 return asyncBuf(roundRobin, nBuffers / 2);
|
H A D | typecons.d | 912 import std.range : roundRobin, iota; in Tuple() 914 roundRobin(iota(nT), iota(nT, 2*nT))))); in Tuple()
|
H A D | uni.d | 2122 import std.range : roundRobin; in fromIntervals() 2123 auto flattened = roundRobin(intervals.save.map!"a[0]"(), in fromIntervals()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
H A D | parallelism.d | 2464 auto roundRobin = RoundRobinBuffer!(C1, C2)(next, empty, initialBufSize, nBuffers); variable 2465 return asyncBuf(roundRobin, nBuffers / 2);
|
H A D | typecons.d | 1012 import std.range : roundRobin, iota; 1014 roundRobin(iota(nT), iota(nT, 2*nT)))));
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/ |
H A D | iteration.d | 2673 import std.range : roundRobin; 2682 auto r1 = roundRobin(valInputRange(a0), valInputRange(a1), valInputRange(a2)) 2686 auto r2 = roundRobin(refInputRange(a0), refInputRange(a1), refInputRange(a2)) 2690 auto r3 = roundRobin(a0, a1, a2).chunkBy!((a, b) => a == b);
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/range/ |
H A D | package.d | 1973 auto roundRobin(Rs...)(Rs rs) 2088 auto r = roundRobin(a, b); 2108 return roundRobin( 2121 auto r = roundRobin(refRange(&f), refRange(&b)); 2146 return roundRobin(retro(r[0 .. startingIndex]), r[startingIndex .. r.length]);
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/range/ |
H A D | package.d | 1674 auto roundRobin(Rs...)(Rs rs) 1780 auto r = roundRobin(a, b); 1800 return roundRobin( 1829 return roundRobin(retro(r[0 .. startingIndex]), r[startingIndex .. r.length]);
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/uni/ |
H A D | package.d | 2090 import std.range : roundRobin; 2091 auto flattened = roundRobin(intervals.save.map!"a[0]"(),
|