HomeSort by relevance Sort by last modified time
    Searched refs:Add (Results 1 - 25 of 2450) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/core/lib/monitoring/
sampler_test.cc 49 cell->Add(-1.0);
50 expected.Add(-1.0);
51 cell->Add(10.0);
52 expected.Add(10.0);
53 cell->Add(20.0);
54 expected.Add(20.0);
55 cell->Add(31.0);
56 expected.Add(31.0);
80 cell->Add(-1.0);
81 expected.Add(-1.0)
    [all...]
  /external/tensorflow/tensorflow/lite/toco/
toco_tooling.cc 55 transformations->Add(new ConvertExpandDimsToReshape);
56 transformations->Add(new ConvertSqueezeToReshape);
57 transformations->Add(new ConvertTrivialAddNToAdd);
58 transformations->Add(new ConvertTrivialPackToReshape);
59 transformations->Add(new ConvertTrivialTileToConcat);
60 transformations->Add(new ConvertTrivialTransposeToReshape);
61 transformations->Add(new ConvertReorderAxes);
62 transformations->Add(new ResolveReshapeAttributes);
63 transformations->Add(new ResolveTransposeAttributes);
64 transformations->Add(new PropagateActivationFunctionIntoConstants)
    [all...]
  /external/mesa3d/
common.py 87 opts.Add(EnumOption('build', 'build type', 'debug',
90 opts.Add(BoolOption('verbose', 'verbose output', 'no'))
91 opts.Add(EnumOption('machine', 'use machine-specific assembly code',
94 opts.Add(EnumOption('platform', 'target platform', host_platform,
97 opts.Add(BoolOption('embedded', 'embedded build', 'no'))
98 opts.Add(BoolOption('analyze',
100 opts.Add(BoolOption('asan', 'enable Address Sanitizer', 'no'))
101 opts.Add('toolchain', 'compiler toolchain', default_toolchain)
102 opts.Add(BoolOption('gles', 'EXPERIMENTAL: enable OpenGL ES support',
104 opts.Add(BoolOption('llvm', 'use LLVM', default_llvm)
    [all...]
  /external/webrtc/webrtc/system_wrappers/include/
trace.h 26 #define WEBRTC_TRACE true ? (void) 0 : Trace::Add
28 #define WEBRTC_TRACE Trace::Add
81 static void Add(const TraceLevel level,
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
OrderedBasicBlockTest.cpp 29 %add = add i32 %x, 42
30 ret i32 %add
42 Instruction *Add = &*I++;
47 EXPECT_FALSE(OBB.dominates(Add, Add));
48 EXPECT_FALSE(OBB.dominates(Add, Add));
49 EXPECT_TRUE(OBB.dominates(Add, Ret));
50 EXPECT_TRUE(OBB.dominates(Add, Ret))
    [all...]
  /external/tensorflow/tensorflow/core/framework/
unique_tensor_references_test.cc 30 refs.Add(a);
31 refs.Add(b);
53 refs.Add(a);
54 refs.Add(b);
72 refs.Add(a);
73 refs.Add(b);
86 refs.Add(a);
87 refs.Add(b);
88 refs.Add(c);
89 refs.Add(d)
    [all...]
  /external/tensorflow/tensorflow/core/lib/histogram/
histogram_test.cc 56 h.Add(-3.0);
62 h.Add(-3.0);
63 h.Add(4.99);
64 h.Add(5.0);
65 h.Add(1000.0);
71 h.Add(-2);
72 h.Add(-2);
73 h.Add(0);
82 h.Add(-1.0);
84 h.Add(1.5)
    [all...]
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/
Add.java 14 public class Add implements IExpression {
20 public Add(final IExpression l, final IExpression r) {
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/utils/
example_test.cc 47 matrix[0].Add(1, 0.4f);
48 matrix[0].Add(2, 0.3f);
49 matrix[1].Add(0, 1.f);
50 matrix[1].Add(2, 2.f);
51 matrix[2].Add(0, 3.f);
52 matrix[2].Add(1, 1.f);
53 matrix[2].Add(2, 5.f);
54 matrix[4].Add(0, -4.f);
  /art/libartbase/base/
stats.h 34 void AddBytes(double bytes, size_t count = 1) { Add(bytes, count); }
35 void AddBits(double bits, size_t count = 1) { Add(bits / kBitsPerByte, count); }
36 void AddSeconds(double s, size_t count = 1) { Add(s, count); }
37 void AddNanoSeconds(double ns, size_t count = 1) { Add(ns / 1000000000.0, count); }
48 void Add(double value, size_t count = 1) {
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 145 /// Add an Objective-C type parameter list to the given record.
161 /// Add to the record the first declaration from each module file that
210 // Add a slot to the record for the number of specializations.
576 // add a FunctionTemplateSpecializationInfo to it when reading.
    [all...]
  /external/llvm/unittests/IR/
AsmWriterTest.cpp 27 std::unique_ptr<BinaryOperator> Add(BinaryOperator::CreateAdd(Undef, Undef));
28 Add->setMetadata(
32 Add->print(OS);
33 std::size_t r = OS.str().find("<badref> = add i32 undef, undef, !<empty");
  /external/deqp-deps/SPIRV-Tools/test/
enum_set_test.cpp 33 set.Add(0);
40 set.Add(150);
64 set.Add(5);
65 set.Add(8);
72 set.Add(200);
73 set.Add(300);
80 set.Add(5);
81 set.Add(8);
82 set.Add(200);
83 set.Add(300)
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/test/
enum_set_test.cpp 33 set.Add(0);
40 set.Add(150);
64 set.Add(5);
65 set.Add(8);
72 set.Add(200);
73 set.Add(300);
80 set.Add(5);
81 set.Add(8);
82 set.Add(200);
83 set.Add(300)
    [all...]
  /external/grpc-grpc/src/cpp/server/
thread_pool_interface.h 32 virtual void Add(const std::function<void()>& callback) = 0;
  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 46 // Add a basic block to the function... again, it automatically inserts
54 // Create the add instruction... does not insert...
55 Instruction *Add = BinaryOperator::Create(Instruction::Add, Two, Three,
59 BB->getInstList().push_back(Add);
61 // Create the return instruction and add it to the basic block
62 BB->getInstList().push_back(ReturnInst::Create(Context, Add));
  /external/swiftshader/third_party/LLVM/examples/ModuleMaker/
ModuleMaker.cpp 40 // Add a basic block to the function... again, it automatically inserts
48 // Create the add instruction... does not insert...
49 Instruction *Add = BinaryOperator::Create(Instruction::Add, Two, Three,
53 BB->getInstList().push_back(Add);
55 // Create the return instruction and add it to the basic block
56 BB->getInstList().push_back(ReturnInst::Create(Context, Add));
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
OcamlGC.cpp 29 static GCRegistry::Add<OcamlGC>
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/ModuleMaker/
ModuleMaker.cpp 46 // Add a basic block to the function... again, it automatically inserts
54 // Create the add instruction... does not insert...
55 Instruction *Add = BinaryOperator::Create(Instruction::Add, Two, Three,
59 BB->getInstList().push_back(Add);
61 // Create the return instruction and add it to the basic block
62 BB->getInstList().push_back(ReturnInst::Create(Context, Add));
  /build/kati/testcase/
builtin_rules.mk 11 # TODO: Add more builtin rules.
  /build/blueprint/parser/
modify_test.go 40 expectOk(patchlist.Add(0, 3, "ABC"))
41 expectOk(patchlist.Add(12, 15, "MNO"))
42 expectOk(patchlist.Add(24, 26, "Z"))
43 expectOk(patchlist.Add(15, 15, "_"))
45 expectOverlap(patchlist.Add(0, 3, "x"))
46 expectOverlap(patchlist.Add(12, 13, "x"))
47 expectOverlap(patchlist.Add(13, 14, "x"))
48 expectOverlap(patchlist.Add(14, 15, "x"))
49 expectOverlap(patchlist.Add(11, 13, "x"))
50 expectOverlap(patchlist.Add(12, 15, "x")
    [all...]
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_mutexset_test.cc 31 mset.Add(1, true, 2);
37 mset.Add(3, true, 4);
38 mset.Add(5, false, 6);
50 mset.Add(1, true, 2);
54 mset.Add(1, true, 2);
68 mset.Add(1, true, 2);
78 mset.Add(1, true, 2);
79 mset.Add(1, true, 2);
80 mset.Add(3, true, 4);
81 mset.Add(3, true, 4)
    [all...]
  /external/v8/src/
external-reference-table.cc 31 Add(kNullAddress, "nullptr", &index);
57 void ExternalReferenceTable::Add(Address address, const char* name,
66 Add(ExternalReference::name().address(), desc, index);
71 Add(ExternalReference::name(isolate).address(), desc, index);
91 Add(ExternalReference::Create(c_builtins[i].address).address(),
118 Add(ref.address(), runtime_functions[i].name, index);
139 Add(isolate->get_address_from_id(static_cast<IsolateAddressId>(i)),
176 Add(getters[i].address, getters[i].name, index);
180 Add(setters[i].address, setters[i].name, index);
198 Add(load_stub_cache->key_reference(StubCache::kPrimary).address()
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2tensorrt/segment/
segment_test.cc 125 auto add0 = ops::Add(s.WithOpName("add0"), feed, feed);
126 auto add1 = ops::Add(s.WithOpName("add1"), feed, feed);
127 auto add2 = ops::Add(s.WithOpName("add2"), add0, add1);
128 auto add3 = ops::Add(s.WithOpName("add3"), add0, add2);
129 auto add4 = ops::Add(s.WithOpName("add4"), add2, add2);
133 // All Add operations are candidates, and we expect all of them to be
138 // Make add1 not a candidate, and we expect all other Add operations to be
172 auto add0 = ops::Add(s.WithOpName("add0"), feed, feed);
173 auto add1 = ops::Add(s.WithOpName("add1"), feed, feed);
174 auto add2 = ops::Add(s.WithOpName("add2"), add0, add1)
    [all...]
  /external/llvm/lib/CodeGen/
BuiltinGCs.cpp 125 static GCRegistry::Add<ErlangGC> A("erlang",
127 static GCRegistry::Add<OcamlGC> B("ocaml", "ocaml 3.10-compatible GC");
128 static GCRegistry::Add<ShadowStackGC>
130 static GCRegistry::Add<StatepointGC> D("statepoint-example",
132 static GCRegistry::Add<CoreCLRGC> E("coreclr", "CoreCLR-compatible GC");

Completed in 1378 milliseconds

1 2 3 4 5 6 7 8 91011>>