| /external/llvm/lib/Transforms/InstCombine/ |
| InstCombineMulDivRem.cpp | 777 Worklist.Add(&*BBI); 780 Worklist.Add(&*BBI); [all...] |
| /external/llvm/lib/Transforms/Instrumentation/ |
| GCOVProfiling.cpp | 114 // Add the function to write out all our counters to the global destructor 935 Value *Add = Builder.CreateAdd(Builder.CreateLoad(Counter) [all...] |
| /external/lzma/CPP/7zip/UI/Console/ |
| List.cpp | 302 void Add(UInt64 v) { Val += v; Def = true; }
303 void Add(const CListUInt64Def &v) { if (v.Def) Add(v.Val); }
332 Size.Add(st.Size);
333 PackSize.Add(st.PackSize);
450 _fields.Add(f);
1244 stat2.MainFiles.PackSize.Add((numStreams == 0) ? 0 : arcPackSize);
|
| /external/protobuf/src/google/protobuf/compiler/ |
| parser.cc | 400 parser_->source_location_table_->Add( 820 LocationRecorder location(field_location); // add path later 860 // field name is parsed. Add the source location though. 922 DescriptorProto* group = messages->Add(); [all...] |
| /external/swiftshader/third_party/LLVM/lib/Analysis/ |
| ScalarEvolution.cpp | [all...] |
| ScalarEvolutionExpander.cpp | 279 /// SimplifyAddOperands - Sort and simplify a list of add operands. NumAddRecs 296 // If it returned an add, use the operands. Otherwise it simplified 299 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Sum)) 300 Ops.append(Add->op_begin(), Add->op_end()); 307 /// SplitAddRecs - Flatten a list of add operands, moving addrec start values 327 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Start)) { 329 Ops.append(Add->op_begin(), Add->op_end()); 330 e += Add->getNumOperands() [all...] |
| /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
| InstCombineCalls.cpp | 410 // Create a simple add instruction, and insert it into the struct. 411 Value *Add = Builder->CreateAdd(LHS, RHS); 412 Add->takeName(&CI); 419 return InsertValueInst::Create(Struct, Add, 0); 424 // Create a simple add instruction, and insert it into the struct. 425 Value *Add = Builder->CreateNUWAdd(LHS, RHS); 426 Add->takeName(&CI); 433 return InsertValueInst::Create(Struct, Add, 0); [all...] |
| /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/ |
| JITTest.cpp | 48 Value *Add = builder.CreateAdd(Load, ConstantInt::get(GTy, 1LL)); 49 builder.CreateStore(Add, G); 50 builder.CreateRet(Add);
|
| /external/tensorflow/tensorflow/compiler/xla/client/ |
| computation_builder.cc | 817 ComputationDataHandle ComputationBuilder::Add( [all...] |
| /external/tensorflow/tensorflow/core/util/tensor_bundle/ |
| tensor_bundle.cc | 394 Status BundleWriter::Add(StringPiece key, const Tensor& val) { 438 // If just a singleton full slice, use the regular Add() to be more efficient. 440 return Add(full_tensor_key, slice_tensor); 464 // The slice itself is handled by a regular Add(), which includes adding its 468 status_ = Add(slice_name, slice_tensor); 505 builder.Add(kHeaderEntryKey, header.SerializeAsString()); 509 builder.Add(p.first, p.second.SerializeAsString()); 678 builder.Add(kHeaderEntryKey, header.SerializeAsString()); 681 builder.Add(p.first, p.second.SerializeAsString()); [all...] |
| /external/tensorflow/tensorflow/stream_executor/cuda/ |
| cuda_driver.cc | 79 static CudaContext* Add(CUcontext context) { 553 *context = CreatedContexts::Add(new_context); 828 LOG(ERROR) << "unable to add host callback: " << ToString(res); [all...] |
| /external/v8/src/ |
| counters.h | 43 // Register an application-defined function to add a sample 77 // Add a sample to a histogram created with the CreateHistogram 193 // Add a single sample to this histogram. 332 // Add a time value ("inner" scope). 333 void Add(base::TimeDelta other) { time_ += other; } 362 ~AggregatedHistogramTimerScope() { histogram_->Add(timer_.Elapsed()); } 492 void Add(RuntimeCallCounter* other); 498 void Add(base::TimeDelta delta) { time_ += delta; } [all...] |
| deoptimizer.h | 250 void Add(const TranslatedValue& value) { values_.push_back(value); } 894 void Add(int32_t value); 964 buffer_->Add(BEGIN); 965 buffer_->Add(frame_count); 966 buffer_->Add(jsframe_count); [all...] |
| /external/valgrind/drd/tests/ |
| tsan_thread_wrappers_pthread.h | 492 pool.Add(NewCallback(func_with_no_args)); 493 pool.Add(NewCallback(func_with_one_arg, arg)); 494 pool.Add(NewCallback(func_with_two_args, arg1, arg2)); 495 ... // more calls to pool.Add() 519 //! Add a closure. 520 void Add(Closure *closure) { 529 Add(NULL);
|
| /external/webrtc/webrtc/base/ |
| proxydetect.cc | 64 void Add(const char * name, const char * value) { map_[name] = value; } 534 settings->Add(name + prefix_len, value); [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/ |
| MCInstrDesc.h | 154 Add 238 /// \brief Return true if the instruction is an add instruction. 239 bool isAdd() const { return Flags & (1ULL << MCID::Add); }
|
| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/ |
| CoverageMapping.h | 146 enum ExprKind { Subtract, Add }; 188 Counter add(Counter LHS, Counter RHS); 433 /// \brief Add a function record corresponding to \p Record. 632 return CounterExpression(CounterExpression::ExprKind::Add,
|
| /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/ |
| MCInstrDesc.h | 154 Add 238 /// \brief Return true if the instruction is an add instruction. 239 bool isAdd() const { return Flags & (1ULL << MCID::Add); }
|
| /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ProfileData/Coverage/ |
| CoverageMapping.h | 146 enum ExprKind { Subtract, Add }; 188 Counter add(Counter LHS, Counter RHS); 433 /// \brief Add a function record corresponding to \p Record. 632 return CounterExpression(CounterExpression::ExprKind::Add,
|
| /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/ |
| MCInstrDesc.h | 154 Add 238 /// \brief Return true if the instruction is an add instruction. 239 bool isAdd() const { return Flags & (1ULL << MCID::Add); }
|
| /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ProfileData/Coverage/ |
| CoverageMapping.h | 146 enum ExprKind { Subtract, Add }; 188 Counter add(Counter LHS, Counter RHS); 433 /// \brief Add a function record corresponding to \p Record. 632 return CounterExpression(CounterExpression::ExprKind::Add,
|
| /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/MC/ |
| MCInstrDesc.h | 154 Add 247 /// \brief Return true if the instruction is an add instruction. 248 bool isAdd() const { return Flags & (1ULL << MCID::Add); }
|
| /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/MC/ |
| MCInstrDesc.h | 154 Add 247 /// \brief Return true if the instruction is an add instruction. 248 bool isAdd() const { return Flags & (1ULL << MCID::Add); }
|
| /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/MC/ |
| MCInstrDesc.h | 154 Add 247 /// \brief Return true if the instruction is an add instruction. 248 bool isAdd() const { return Flags & (1ULL << MCID::Add); }
|
| /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/MC/ |
| MCInstrDesc.h | 154 Add 247 /// \brief Return true if the instruction is an add instruction. 248 bool isAdd() const { return Flags & (1ULL << MCID::Add); }
|