/external/autotest/test_suites/ |
control.iota-cts | 16 NAME = "iota-cts" 32 args_dict['name'] = 'iota-cts'
|
control.iota-load | 16 NAME = "iota-load" 32 args_dict['name'] = 'iota-load'
|
control.iota-performance | 16 NAME = "iota-performance" 32 args_dict['name'] = 'iota-performance'
|
control.iota-sanity | 16 NAME = "iota-sanity" 32 args_dict['name'] = 'iota-sanity'
|
control.iota-stability | 16 NAME = "iota-stability" 32 args_dict['name'] = 'iota-stability'
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
extract_image_patches_op.cc | 111 // iota = np.arange(np.prod(ksize), depth) 112 // filter = np.equal(np.reshape(iota, [-1, 1]), iota).astype(np.float32) 113 xla::ComputationDataHandle iota; variable 114 TF_CHECK_OK(XlaHelpers::Iota(builder, DataType::DT_INT32, 115 kernel_size * depth, &iota)); 117 auto lhs = builder->Reshape(iota, lhs_shape); 119 builder->Eq(lhs, iota, {num_spatial_dims + 1}), type);
|
/prebuilts/go/darwin-x86/doc/progs/ |
eff_bytesize.go | 12 _ = iota // ignore first value by assigning to blank identifier 13 KB ByteSize = 1 << (10 * iota)
|
/prebuilts/go/linux-x86/doc/progs/ |
eff_bytesize.go | 12 _ = iota // ignore first value by assigning to blank identifier 13 KB ByteSize = 1 << (10 * iota)
|
/packages/inputmethods/LatinIME/java/res/xml/ |
rowkeys_greek1.xml | 97 <!-- U+03B9: "?" GREEK SMALL LETTER IOTA 98 U+03AF: "?" GREEK SMALL LETTER IOTA WITH TONOS 99 U+03CA: "?" GREEK SMALL LETTER IOTA WITH DIALYTIKA 100 U+0390: "?" GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS -->
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/ |
tokens.go | 12 _ token = iota 163 IntLit LitKind = iota 173 _ Operator = iota 257 _ = iota
|
/prebuilts/go/darwin-x86/src/go/doc/testdata/ |
b.1.golden | 46 C1 notExported = iota
|
d2.go | 23 CA2 = iota // before CA1
|
d.0.golden | 14 CB2 = iota // before CB1 21 CA2 = iota // before CA1
|
d.1.golden | 14 CB2 = iota // before CB1 21 CA2 = iota // before CA1
|
/prebuilts/go/darwin-x86/test/ |
const3.go | 18 A T = 1 << (1 << iota)
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue17005.go | 15 Identity Flag = iota - 2 // H is the identity matrix; no rotation is needed.
|
issue19555.go | 15 LinkServer LinkRole = iota // link created as server
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/ |
tokens.go | 12 _ token = iota 163 IntLit LitKind = iota 173 _ Operator = iota 257 _ = iota
|
/prebuilts/go/linux-x86/src/go/doc/testdata/ |
b.1.golden | 46 C1 notExported = iota
|
d2.go | 23 CA2 = iota // before CA1
|
/prebuilts/go/linux-x86/test/ |
const3.go | 18 A T = 1 << (1 << iota)
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue17005.go | 15 Identity Flag = iota - 2 // H is the identity matrix; no rotation is needed.
|
issue19555.go | 15 LinkServer LinkRole = iota // link created as server
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
xla_helpers.cc | 55 std::iota(broadcast_dims.begin(), broadcast_dims.begin() + axis, 0); 56 std::iota(broadcast_dims.begin() + axis, broadcast_dims.end(), axis + 1); 74 xla::ComputationDataHandle iota; local 77 TF_RETURN_IF_ERROR(XlaHelpers::Iota(builder, output_type, axis_size, &iota)); 79 builder->And(full_mask, iota, /*broadcast_dimensions=*/{axis}); 202 Status XlaHelpers::Iota(xla::ComputationBuilder* builder, DataType dtype, 203 int64 size, xla::ComputationDataHandle* iota) { 222 *iota = builder->ConstantLiteral(linspace_literal); 264 std::iota(broadcast_dims.begin(), broadcast_dims.begin() + axis, 0) [all...] |
/external/libcxx/test/std/numerics/numeric.ops/numeric.iota/ |
iota.pass.cpp | 13 // void iota(ForwardIterator first, ForwardIterator last, T value); 27 std::iota(InIter(ia), InIter(ia+s), 5);
|