Home
last modified time | relevance | path

Searched refs:result_ (Results 1 – 25 of 85) sorted by relevance

1234

/external/bcc/src/cc/
Djson_map_decl_visitor.cc53 std::string &result_; member in ebpf::BMapDeclVisitor
57 BMapDeclVisitor::BMapDeclVisitor(ASTContext &C, string &result) : C(C), result_(result) {} in BMapDeclVisitor()
76 result_ += ", "; in genJSONForField()
79 result_ += "["; in genJSONForField()
82 result_ += ", [" + T->getSize().toString(10, false) + "]"; in genJSONForField()
84 result_ += ", " + to_string(F->getBitWidthValue(C)); in genJSONForField()
85 result_ += "], "; in genJSONForField()
89 result_ += "\""; in VisitFieldDecl()
90 result_ += D->getName(); in VisitFieldDecl()
91 result_ += "\","; in VisitFieldDecl()
[all …]
/external/tensorflow/tensorflow/python/framework/
Dpython_op_gen.cc349 return result_; in Code()
354 return result_; in Code()
357 return prelude_ + result_; in Code()
361 strings::StrAppend(&result_, " # Add nodes to the TensorFlow graph.\n"); in HandleGraphMode()
362 strings::StrAppend(&result_, function_setup); in HandleGraphMode()
364 strings::StrAppend(&result_, " try:\n "); in HandleGraphMode()
366 strings::StrAppend(&result_, " _, _, _op = _op_def_lib._apply_op_helper(\n"); in HandleGraphMode()
371 strings::StrAppend(&result_, " _result = _op.outputs[:]\n"); in HandleGraphMode()
379 strings::StrAppend(&result_, in HandleGraphMode()
383 strings::StrAppend(&result_, " _inputs_flat = _op.inputs\n"); in HandleGraphMode()
[all …]
Dpython_op_gen_internal.cc580 strings::StrAppend(&result_, " \"\"\"\n"); in Code()
582 strings::StrAppend(&result_, "\n\n"); in Code()
584 return prelude_ + result_; in Code()
626 strings::StrAppend(&result_, "@tf_export(", names, ")\n"); in AddExport()
631 strings::StrAppend(&result_, "@deprecated(None, '", instructions, "')\n"); in AddExport()
635 strings::StrAppend(&result_, "@deprecated_endpoints(", deprecated_endpoints, in AddExport()
642 strings::StrAppend(&result_, "def ", function_name, "(", parameters, "):\n"); in AddDefLine()
659 strings::StrAppend(&result_, " r\"\"\"", comment, "\n"); in AddDocStringDescription()
663 strings::StrAppend(&result_, " Args:\n"); in AddDocStringArgs()
681 strings::StrAppend(&result_, Indent(4, 6, desc)); in AddDocStringInputs()
[all …]
/external/tensorflow/tensorflow/js/ops/
Dts_op_gen.cc73 string result_; member in tensorflow::__anon8001287d0111::GenTypeScriptOp
103 strings::StrAppend(&result_, "\n"); in Code()
104 return result_; in Code()
168 strings::StrAppend(&result_, "export function ", api_def_.endpoint(0).name(), in AddMethodSignature()
176 strings::StrAppend(&result_, ", "); in AddMethodSignature()
181 strings::StrAppend(&result_, op_def_arg.name(), ": "); in AddMethodSignature()
183 strings::StrAppend(&result_, "tfc.Tensor[]"); in AddMethodSignature()
185 strings::StrAppend(&result_, "tfc.Tensor"); in AddMethodSignature()
190 strings::StrAppend(&result_, "): tfc.Tensor {\n"); in AddMethodSignature()
192 strings::StrAppend(&result_, "): tfc.Tensor[] {\n"); in AddMethodSignature()
[all …]
/external/v8/tools/
Darguments.js8 this.result_ = this.getDefaultResults();
9 console.assert(this.result_ !== undefined)
10 console.assert(this.result_.logFileName !== undefined);
23 result() { return this.result_ }
28 this.result_.logFileName + '".\n');
48 this.result_.logFileName = arg;
66 this.result_[property] = userValue;
Dperf-compare.py97 self.result_ = float(result)
110 compare_num = 100*self.result_/other.result_ - 100
112 compare_num = 100*other.result_/self.result_ - 100
115 z = Statistics.ComputeZ(other.result_, other.sigma_,
116 self.result_, self.count_)
127 return self.result_
Dperf-to-html.py64 self.result_ = float(result)
74 compare_num = 100*self.result_/self.master_result_ - 100
76 compare_num = 100*self.master_result_/self.result_ - 100
79 z = ComputeZ(self.master_result_, self.master_sigma_, self.result_, count)
92 return self.result_
/external/jsoncpp/src/test_lib_json/
Djsontest.h129 TestResult* result_;
209 result_->addFailure(__FILE__, __LINE__, #expr)
217 result_->predicateId_, __FILE__, __LINE__, #expr \
219 result_->predicateStackTail_->next_ = &_minitest_Context; \
220 result_->predicateId_ += 1; \
221 result_->predicateStackTail_ = &_minitest_Context; \
223 result_->popPredicateContext(); \
228 JsonTest::checkEqual(*result_, \
237 JsonTest::checkStringEqual(*result_, \
255 result_->addFailure( \
/external/webrtc/talk/app/webrtc/test/
Dmockpeerconnectionobservers.h44 result_(false) {} in MockCreateSessionDescriptionObserver()
48 result_ = true; in OnSuccess()
53 result_ = false; in OnFailure()
56 bool result() const { return result_; } in result()
63 bool result_; variable
72 result_(false) {} in MockSetSessionDescriptionObserver()
76 result_ = true; in OnSuccess()
80 result_ = false; in OnFailure()
83 bool result() const { return result_; } in result()
87 bool result_; variable
/external/webrtc/webrtc/base/
Dmessagehandler.h44 result_ = functor_(); in OnMessage()
46 const ReturnT& result() const { return result_; } in result()
50 ReturnT result_; variable
59 virtual void OnMessage(Message* msg) { result_ = std::move(functor_()); } in OnMessage()
60 rtc::scoped_ptr<ReturnT> result() { return std::move(result_); } in result()
64 rtc::scoped_ptr<ReturnT> result_; variable
/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/
Dunion_traits_definition.tmpl17 {{kind|cpp_wrapper_type(True)}} result_{{name}};
18 if (!input.Read{{name|under_to_camel}}(&result_{{name}}))
22 std::move(result_{{name}}));
32 {{kind|cpp_wrapper_type(True)}} result_{{name}};
33 if (!input.Read{{name|under_to_camel}}(&result_{{name}}))
36 *output = UnionType::New{{field.name|under_to_camel}}(result_{{name}});
/external/tensorflow/tensorflow/core/util/
Dbcast.cc35 result_.push_back(elements); in BCast()
110 result_.push_back(o_i); in BCast()
121 result_.back() *= o_i; in BCast()
127 result_.push_back(o_i); in BCast()
136 if (result_.empty()) { in BCast()
138 result_.push_back(1); in BCast()
151 Reverse(&result_); in BCast()
Dbcast.h99 const Vec& result_shape() const { return result_; } in result_shape()
129 Vec result_; variable
/external/tensorflow/tensorflow/core/grappler/graph_analyzer/
Dgraph_analyzer.cc65 result_.clear(); in FindSubgraphs()
78 result_.ExtendParent(empty_parent, node.second.get()); in FindSubgraphs()
96 SubgraphPtrSet& sg_set = will_complete ? result_ : partial_; in ExtendSubgraph()
196 (id.size() == subgraph_size_) ? result_ : partial_; in AddExtendedSubgraph()
209 auto resit = result_.begin(); in DropInvalidSubgraphs()
210 while (resit != result_.end()) { in DropInvalidSubgraphs()
214 result_.erase(delit); in DropInvalidSubgraphs()
283 for (const auto& it : result_) { in CollateResult()
303 result_.clear(); // Not needed after collation. in CollateResult()
310 for (const auto& it : result_) { in DumpRawSubgraphs()
/external/perfetto/include/perfetto/base/
Dhash.h46 result_ ^= static_cast<uint8_t>(data[i]); in Update()
47 result_ *= kFnv1a64Prime; in Update()
51 uint64_t digest() { return result_; } in digest()
57 uint64_t result_ = kFnv1a64OffsetBasis; variable
/external/tensorflow/tensorflow/compiler/xla/service/
Dheap_simulator.cc617 result_.chunk_map.emplace(buffer, Chunk{0, 0}); in Alloc()
634 result_.chunk_map.emplace(buffer, Chunk{new_offset, size}); in Alloc()
655 if (it->chunk_end() == result_.heap_size) { in Alloc()
666 result_.chunk_map.emplace(buffer, Chunk{new_offset, size}); in Alloc()
671 CHECK_GT(new_end, result_.heap_size); in Alloc()
672 CHECK_LT(new_end, result_.heap_size + size); in Alloc()
673 result_.heap_size = new_end; in Alloc()
679 result_.chunk_map.emplace(buffer, Chunk{kLazyAllocOffset, size}); in Alloc()
683 auto alloc_it = result_.chunk_map.find(buffer); in Free()
684 CHECK(alloc_it != result_.chunk_map.end()) in Free()
[all …]
Dexecution_tracker.h48 const GlobalDataHandle& result() const { return result_; } in result()
64 GlobalDataHandle result_; variable
/external/google-breakpad/src/client/mac/Framework/
DOnDemandServer.mm36 #define PRINT_MACH_RESULT(result_, message_) \
37 printf(message_"%s (%d)\n", mach_error_string(result_), result_ );
40 #define PRINT_BOOTSTRAP_RESULT(result_, message_) \
41 printf(message_"%s (%d)\n", bootstrap_strerror(result_), result_ );
43 #define PRINT_BOOTSTRAP_RESULT(result_, message_) \
44 PRINT_MACH_RESULT(result_, message_)
47 #define PRINT_MACH_RESULT(result_, message_)
48 #define PRINT_BOOTSTRAP_RESULT(result_, message_)
/external/v8/src/
Dutils-inl.h21 : start_(TimestampMs()), result_(result) {} in TimedScope()
23 ~TimedScope() { *result_ = TimestampMs() - start_; } in ~TimedScope()
32 double* result_; variable
Dconversions.cc456 return negative() ? -result_ : result_; in GetResult()
467 result_ = result_ * multiplier + part; in ResultMultiplyAdd()
478 result_ = is_power_of_two ? HandlePowerOfTwoCase(vector.start()) in HandleSpecialCases()
483 result_ = is_power_of_two ? HandlePowerOfTwoCase(vector.start()) in HandleSpecialCases()
548 double result_ = 0; member in v8::internal::__anonf7feacfb0111::NumberParseIntHelper
905 return BigInt::Finalize(result_, negative()); in GetResult()
926 if (!maybe.ToHandle(&result_)) { in AllocateResult()
932 BigInt::InplaceMultiplyAdd(result_, static_cast<uintptr_t>(multiplier), in ResultMultiplyAdd()
939 Handle<FreshlyAllocatedBigInt> result_; member in v8::internal::StringToBigIntHelper
/external/webrtc/webrtc/p2p/stunprober/
Dstunprober_unittest.cc46 result_(StunProber::SUCCESS), in StunProberTest()
56 void set_expected_result(int result) { result_ = result; } in set_expected_result()
117 EXPECT_EQ(result, result_); in StopCallback()
126 int result_ = 0; member in stunprober::StunProberTest
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dtiled_dot_emitter.cc240 result_(result), in ColumnMajorMatrixVectorProductEmitter()
286 llvm::Value* result_; member in xla::cpu::__anon016ac5180111::ColumnMajorMatrixVectorProductEmitter
333 : vsl_.LoadVector(result_, row); in EmitInnerLoopTiled()
337 vsl_.StoreVector(accumulator, result_, row); in EmitInnerLoopTiled()
381 result_, scalar_row); in EmitInnerLoopEpilogue()
383 vsl_.StoreScalar(product, result_, scalar_row); in EmitInnerLoopEpilogue()
389 vsl_.Add(vsl_.LoadScalar(result_, scalar_row), product), in EmitInnerLoopEpilogue()
390 result_, scalar_row); in EmitInnerLoopEpilogue()
465 result_(result), in RowMajorMatrixVectorProductEmitter()
497 llvm::Value* result_; member in xla::cpu::__anon016ac5180111::RowMajorMatrixVectorProductEmitter
[all …]
/external/google-breakpad/src/common/mac/
DMachIPC.h98 #define PRINT_MACH_RESULT(result_, message_) \ argument
99 printf(message_" %s (%d)\n", mach_error_string(result_), result_ );
/external/webrtc/webrtc/test/testsupport/mac/
Drun_threaded_main_mac.mm19 int result_; field
49 result_ = ImplementThisToRunYourTest(argc_, argv_);
57 return result_;
/external/v8/src/parsing/
Drewriter.cc20 : result_(result), in Processor()
34 : result_(result), in Processor()
56 VariableProxy* result_proxy = factory()->NewVariableProxy(result_); in SetResult()
65 Variable* result_; member in v8::internal::Processor
256 Expression* result_proxy = factory()->NewVariableProxy(result_); in VisitTryFinallyStatement()

1234