HomeSort by relevance Sort by last modified time
    Searched defs:Add (Results 251 - 275 of 370) sorted by null

<<1112131415

  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
extension_set.h 185 // Add all fields which are currently present to the given vector. This
669 // static inline void Add(int number, ConstType value, ExtensionSet* set);
670 // static inline MutableType Add(int number, ExtensionSet* set);
    [all...]
  /art/compiler/
elf_builder.h 256 Elf_Word Add(const void* data, size_t length) {
299 Elf_Word Add(const std::string& name) {
303 return CachedSection::Add(name.c_str(), name.length() + 1);
357 CachedSection::Add(&null_symbol, sizeof(null_symbol));
363 void Add(Elf_Word name,
377 Add(name, section_index, addr, size, binding, type);
380 void Add(Elf_Word name,
393 CachedSection::Add(&sym, sizeof(sym));
696 dynstr_.Add(""); // dynstr should start with empty string.
698 Elf_Word oatdata = dynstr_.Add("oatdata")
    [all...]
  /art/runtime/gc/allocator/
rosalloc.h 190 void Add(Slot* slot) {
405 // Add backwards so the first slot is at the head of the list.
407 free_list_.Add(slot);
424 // Add the given slot to the bulk free list. Returns the bracket size.
426 // Add the given slot to the thread-local free list.
    [all...]
  /art/runtime/
monitor.cc 372 // Add info for contending thread.
620 * Add ourselves to the set of threads waiting on this monitor, and
834 Runtime::Current()->GetMonitorList()->Add(m);
    [all...]
  /external/clang/test/Parser/
cxx-altivec.cpp 171 Vector Add(Vector lhs, Vector rhs)
  /external/flatbuffers/include/flatbuffers/
idl.h 165 bool Add(const std::string &name, T *e) {
  /external/libchrome/base/metrics/
histogram.cc 416 void Histogram::Add(int value) {
454 logged_samples_->Add(*snapshot);
471 samples_->Add(samples);
589 samples->Add(*samples_);
    [all...]
  /external/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 140 enum ExprKind { Subtract, Add };
181 Counter add(Counter LHS, Counter RHS);
610 return CounterExpression(CounterExpression::ExprKind::Add,
  /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 262 void Add(UInt64 v) { Val += v; Def = true; }
263 void Add(const CListUInt64Def &v) { if (v.Def) Add(v.Val); }
292 Size.Add(stat.Size);
293 PackSize.Add(stat.PackSize);
410 _fields.Add(f);
1157 stat.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/v8/src/ast/
scopes.cc 57 void VariableMap::Add(Zone* zone, Variable* var) {
634 variables_.Add(zone(), function_);
715 locals_.Add(var);
726 if (added) locals_.Add(var);
777 new_parent->variables_.Add(new_parent->zone(), local);
882 params_.Add(var, zone());
    [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()); }
491 void Add(RuntimeCallCounter* other);
    [all...]
deoptimizer.h 218 void Add(const TranslatedValue& value) { values_.push_back(value); }
851 void Add(int32_t value);
921 buffer_->Add(BEGIN);
922 buffer_->Add(frame_count);
923 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/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
termmgr.h 292 virtual HRESULT WINAPI Add(BSTR bstrSuperclass) = 0;
320 HRESULT (WINAPI *Add)(ITPluggableTerminalClassRegistration *This,BSTR bstrSuperclass);
350 #define ITPluggableTerminalClassRegistration_Add(This,bstrSuperclass) (This)->lpVtbl->Add(This,bstrSuperclass)
401 virtual HRESULT WINAPI Add(void) = 0;
421 HRESULT (WINAPI *Add)(ITPluggableTerminalSuperclassRegistration *This);
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
repeated_field.h 81 // set-by-index, and add accessors that are generated for all repeated fields.
98 void Add(const Element& value);
99 Element* Add();
125 // any add or remove operation.
255 typename TypeHandler::Type* Add();
296 // Like Add(), but if there are no cleared objects to use, returns NULL.
417 Element* Add();
440 // any add or remove operation.
501 // Add an already-allocated object, passing ownership to the
530 // Add an element to the pool of cleared objects, passing ownership t
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
repeated_field.h 81 // set-by-index, and add accessors that are generated for all repeated fields.
98 void Add(const Element& value);
99 Element* Add();
125 // any add or remove operation.
255 typename TypeHandler::Type* Add();
296 // Like Add(), but if there are no cleared objects to use, returns NULL.
417 Element* Add();
440 // any add or remove operation.
501 // Add an already-allocated object, passing ownership to the
530 // Add an element to the pool of cleared objects, passing ownership t
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
repeated_field.h 81 // set-by-index, and add accessors that are generated for all repeated fields.
98 void Add(const Element& value);
99 Element* Add();
125 // any add or remove operation.
255 typename TypeHandler::Type* Add();
296 // Like Add(), but if there are no cleared objects to use, returns NULL.
417 Element* Add();
440 // any add or remove operation.
501 // Add an already-allocated object, passing ownership to the
530 // Add an element to the pool of cleared objects, passing ownership t
    [all...]

Completed in 1706 milliseconds

<<1112131415