HomeSort by: relevance | last modified time | path
    Searched refs:iota (Results 1 - 25 of 57) sorted by relevancy

1 2 3

  /src/external/gpl2/groff/dist/font/devps/generate/
lgreekmap 11 iota *i
symbolchars 20 Iota *I
45 iota *i
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/test/
dummyrange.d 322 static auto iota(size_t low = 1, size_t high = 11)
324 import std.range : iota;
325 return iota(cast(uint) low, cast(uint) high);
331 arr = iota().array;
345 static auto iota(size_t low = 1, size_t high = 11)
347 import std.range : iota;
348 return iota(cast(double) low, cast(double) high, 1.0);
354 arr = iota().array;
389 static auto iota(size_t low = 1, size_t high = 11)
392 import std.range : iota;
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
package.d 12 const r = 6.iota
28 assert(10.iota.map!(a => pow(2, a)).sum == 1023);
parallelism.d 58 import std.range : iota;
83 immutable pi = 4.0 * taskPool.reduce!"a + b"(n.iota.map!getTerm);
1678 auto numbers = iota(100_000_000.0);
2515 auto nums = iota(10_000_000.0f);
3025 foreach (num; parallel(iota(1_000)))
3070 foreach (i; parallel(iota(n)))
3528 import std.range : iota;
3532 auto r = iota(1, N + 1);
3635 import std.range : iota;
3644 assert(arrIndex.sum == 10.iota.sum)
    [all...]
meta.d 409 import std.range : iota;
420 static assert(NoDuplicates!(aliasSeqOf!(iota(7)), aliasSeqOf!(iota(7))) == aliasSeqOf!(iota(7)));
421 static assert(NoDuplicates!(aliasSeqOf!(iota(8)), aliasSeqOf!(iota(8))) == aliasSeqOf!(iota(8)));
1030 import std.range : iota;
1032 foreach (I2; aliasSeqOf!(iota(0, 8)))
1033 foreach (I1; aliasSeqOf!(iota(0, 8))
    [all...]
bitmanip.d 1045 import std.range : iota, repeat;
1049 assert(a.bitsSet.equal(iota(0, 70)));
1362 import std.range : iota;
1376 assert(b1.bitsSet.equal(iota(0, 64)));
1383 assert(b2.bitsSet.equal(iota(3, 245)));
1404 import std.range : iota;
1415 assert(b1.bitsSet.equal(iota(0, 270)));
2475 import std.range : iota;
2480 assert(equal(b.bitsSet, iota(0, 64)));
2482 assert(equal(b.bitsSet, iota(64, 128)))
    [all...]
array.d 265 import std.range : iota;
267 auto arr = iota(3).map!(a => S(a)).array;
746 import std.range : iota;
747 auto b = assocArray(3.iota, 3.iota(6));
772 import std.range : iota;
773 static assert(!__traits(compiles, () nothrow { assocArray(1.iota, [ThrowingElement()]);}));
774 assert(assocArray(1.iota, [ThrowingElement()]) == [0: ThrowingElement()]);
779 import std.range : iota;
789 static assert(!__traits(compiles, () @safe { assocArray(1.iota, [UnsafeElement()]);}))
    [all...]
random.d 126 import std.range : iota;
155 auto el = 10.iota.choice(rnd);
166 assert(10.iota.randomSample(3, rnd2).equal([7, 8, 9]));
170 assert(10.iota.randomCover(rnd2).equal([7, 4, 2, 0, 1, 6, 8, 3, 9, 5]));
172 assert(10.iota.randomCover(rnd2).equal([4, 8, 7, 3, 5, 9, 2, 6, 0, 1]));
1112 try { gen.seed(iota(624u)); } catch (Exception) { assert(false); }
1155 try { gen.seed(iota(312uL)); } catch (Exception) { assert(false); }
3369 import std.range : iota;
3373 assert(10.iota.randomCover(rnd).equal([7, 4, 2, 0, 1, 6, 8, 3, 9, 5]));
3379 import std.range : iota;
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/range/
package.d 112 $(TR $(TD $(LREF iota))
462 auto LL = iota(1L, 4L);
862 auto LL = iota(1L, 10L);
1318 assert(equal(chain(iota(0, 3), iota(0, 3)), [0, 1, 2, 0, 1, 2]));
1589 aliasSeqOf!(rs.length.iota)));
1690 aliasSeqOf!(rs.length.iota)));
2221 auto LL = iota(1L, 6L);
2563 assert(iota(4).cycle.take(4)[start .. stop]
2564 .equal(iota(start, stop)))
    [all...]
primitives.d 1246 import std.range : iota, repeat;
1257 static assert( hasMobileElements!(typeof(iota(1000))));
1284 import std.range : iota;
1298 auto range = iota(0, 10);
1372 import std.range : iota;
1380 auto range = iota(0, 10);
1522 import std.range : iota, chain;
1528 static assert(!hasLvalueElements!(typeof(iota(3))));
1816 import std.range : iota;
1818 assert(10.iota.walkLength == 10)
    [all...]
interfaces.d 115 * for foreach, using timings for iterating over an iota(100_000_000) range
118 * Bare Iota struct, range primitives: 278 milliseconds
137 import std.range : iota;
144 auto squares = map!"a * a"(iota(10));
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/container/
util.d 140 import std.range : iota;
142 auto arr = make!Array(iota(5));
145 auto rbtmax = make!(RedBlackTree, "a > b")(iota(5));
rbtree.d 44 import std.range : iota;
45 auto maxTree = redBlackTree!"a > b"(iota(5));
2042 import std.range : iota;
2051 auto rbt6 = redBlackTree(iota(3));
2052 auto rbt7 = redBlackTree!true(iota(3));
2053 auto rbt8 = redBlackTree!"a > b"(iota(3));
2054 auto rbt9 = redBlackTree!("a > b", true)(iota(3));
2069 import std.range : iota;
2070 auto rbt = new RedBlackTree!(int, "a > b")(iota(5));
2109 import std.range : chain, iota;
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
tests.d 411 enum Tests = iota(0, 155);
416 enum Tests = iota(155, 174);
422 enum Tests = iota(178, 220);
427 enum Tests = iota(220, tv.length);
430 enum Tests = chain(iota(0, 30), iota(235, tv.length-5));
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/
crc.d 516 import std.range : iota;
518 assert(iota(S, F).crc32Of == [59, 140, 234, 154]);
552 import std.range : iota;
554 assert(iota(S, F).crc64ECMAOf == [6, 184, 91, 238, 46, 213, 127, 188]);
588 import std.range : iota;
591 assert(iota(S, F).crc64ISOOf == [21, 185, 116, 95, 219, 11, 54, 7]);
  /src/lib/libm/ld80/
b_tgammal.c 379 * iota is a sloppy threshold to isolate x = 0.
382 static const double iota = 0x1p-116; variable
401 if (x > iota)
404 if (x > -iota) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86PartialReduction.cpp 160 std::iota(ConcatMask.begin(), ConcatMask.end(), 0);
257 std::iota(ExtractMask.begin(), ExtractMask.end(), i * IntrinsicNumElts);
271 std::iota(ConcatMask.begin(), ConcatMask.end(), 0);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
sorting.d 760 import std.range : iota;
763 a = iota(0, uniform(1, 1000, g))
1074 import std.range : iota;
1077 iota(256).makeIndex(index[]);
1078 assert(index[].equal(iota(256)));
1080 iota(128).makeIndex(sindex[]);
1081 assert(sindex[].equal(iota(128)));
1084 10.iota.makeIndex(index2);
1085 assert(index2.equal(10.iota));
1598 auto pts3 = indexed(pts1, iota(pts1.length))
    [all...]
setops.d 390 import std.range : iota;
392 iota(0, current.length)));
467 import std.range : iota;
470 iota(0, otherRanges.length+1));
1566 import std.range : iota;
1569 auto dummyResult2 = iota(1, 11);
iteration.d 140 auto result1 = iota(-4, 5).map!(a =>tuple(a, fun(a)))()
150 assert(counter == iota(-4, 5).length + result1.length);
154 auto result2 = iota(-4, 5).map!(a =>tuple(a, fun(a)))()
164 assert(counter == iota(-4, 5).length);
193 auto r = iota(0, 4).tee!((a){i = a;}, No.pipeOnPop);
778 auto LL = iota(1L, 4L);
785 import std.range : iota;
787 // https://issues.dlang.org/show_bug.cgi?id=10130 - map of iota with const step.
789 assert(map!(i => i)(iota(0, 10, step)).walkLength == 5);
792 // CommonType template used in the float specialization of iota
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
segmented_array_test.cc 319 std::iota(Integers.begin(), Integers.end(), 0);
336 std::iota(Integers.begin(), Integers.end(), 0);
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
ordered_set.bench.cpp 86 std::iota(Keys.begin(), Keys.end(), uint64_t{0});
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
SerialSnippetGenerator.cpp 44 std::iota(Opcodes.begin(), Opcodes.end(), 0U);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
stl_numeric.h 88 iota(_ForwardIterator __first, _ForwardIterator __last, _Tp __value) function

Completed in 38 milliseconds

1 2 3