HomeSort by relevance Sort by last modified time
    Searched defs:Add (Results 76 - 100 of 624) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/v4l2_codec2/vda/
ranges.h 29 // Add (start,end) to this object, coallescing overlaps as appropriate.
31 size_t Add(T start, T end);
59 size_t Ranges<T>::Add(T start, T end) {
148 // Add an intersection range to the result if the ranges overlap.
150 result.Add(max_start, min_end);
  /external/v8/src/
external-reference-table.h 49 void Add(Address address, const char* name) {
55 refs_.Add(entry);
  /external/v8/src/heap/
array-buffer-tracker-inl.h 27 tracker->Add(buffer, length);
50 void LocalArrayBufferTracker::Add(Key key, const Value& value) {
  /prebuilts/go/darwin-x86/src/go/scanner/
errors.go 39 // Add adds an Error with given position and error message to an ErrorList.
40 func (p *ErrorList) Add(pos token.Position, msg string) {
  /prebuilts/go/darwin-x86/test/fixedbugs/issue11053.dir/
p_test.go 13 Add(out *P)
28 func (T) Add(out *P) {
36 s.Add(out) // not inlined.
  /prebuilts/go/linux-x86/src/go/scanner/
errors.go 39 // Add adds an Error with given position and error message to an ErrorList.
40 func (p *ErrorList) Add(pos token.Position, msg string) {
  /prebuilts/go/linux-x86/test/fixedbugs/issue11053.dir/
p_test.go 13 Add(out *P)
28 func (T) Add(out *P) {
36 s.Add(out) // not inlined.
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
enum_set.h 44 explicit EnumSet(EnumType c) { Add(c); }
47 for (auto c : cs) Add(c);
70 void Add(EnumType c) { AddWord(ToWord(c)); }
  /system/extras/memory_replay/
Pointers.cpp 52 void Pointers::Add(uintptr_t key_pointer, void* pointer) {
  /system/extras/tests/sdcard/
plot_sdcard.py 63 def Add(self, time, value):
170 dataset.Add(float(time), float(value))
  /art/compiler/utils/arm/
assembler_arm_vixl.h 67 // In T32 some of the instructions (add, mov, etc) outside an IT block
73 // for Add macro instruction) unless vixl32::DontCare option is
123 // TODO: Remove when MacroAssembler::Add(FlagsUpdate, Condition, Register, Register, Operand)
125 void Add(vixl32::Register rd, vixl32::Register rn, const vixl32::Operand& operand) {
127 MacroAssembler::Add(rd, rn, operand);
129 MacroAssembler::Add(vixl32::DontCare, rd, rn, operand);
132 using MacroAssembler::Add;
  /cts/tools/utils/cts/
tools.py 44 def Add(self, names):
51 sub_suite.Add(names[1:])
78 """Add a test to the package.
84 name: The name of the test to add.
87 self.root_suite.Add(parts)
90 """Add an attribute to the test package itself."""
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
RewriteRuleElementStream.cs 45 * Once you start next()ing, do not try to add more elements. It will
48 * TODO: add mechanism to detect/puke on modification after reading from stream
63 /** <summary>Track single elements w/o creating a list. Upon 2nd add, alloc list */
94 Add(oneElement);
116 public virtual void Add(object el) {
117 //System.out.println("add '"+elementDescription+"' is "+el);
121 if (elements != null) { // if in list, just add
122 elements.Add(el);
131 elements.Add(singleElement);
133 elements.Add(el)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
RewriteRuleElementStream.cs 46 * Once you start next()ing, do not try to add more elements. It will
49 * TODO: add mechanism to detect/puke on modification after reading from stream
65 /** <summary>Track single elements w/o creating a list. Upon 2nd add, alloc list */
98 Add( oneElement );
122 public virtual void Add( object el )
124 //System.out.println("add '"+elementDescription+"' is "+el);
130 { // if in list, just add
131 elements.Add( el );
141 elements.Add( singleElement );
143 elements.Add( el )
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutexset.h 35 void Add(u64 id, bool write, u64 epoch);
60 void MutexSet::Add(u64 id, bool write, u64 epoch) {}
  /external/flac/include/share/
replaygain_synthesis.h 38 double Add;
  /external/google-breakpad/src/processor/
synth_minidump.cc 340 Dump &Dump::Add(SynthMinidump::Section *section) {
346 Dump &Dump::Add(Stream *stream) {
347 Add(static_cast<SynthMinidump::Section *>(stream));
353 Dump &Dump::Add(Memory *memory) {
354 // Add the memory contents themselves to the file.
355 Add(static_cast<SynthMinidump::Section *>(memory));
358 // memory elements. Produce a descriptor, and add that to the list.
361 memory_list_.Add(&descriptor);
365 Dump &Dump::Add(Thread *thread) {
366 thread_list_.Add(thread)
    [all...]
  /external/llvm/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 47 /// Add - Add the specified instruction to the worklist if it isn't already
49 void Add(Instruction *I) {
51 DEBUG(dbgs() << "IC: ADD: " << *I << '\n');
58 Add(I);
61 /// AddInitialGroup - Add the specified batch of stuff in reverse order.
65 assert(Worklist.empty() && "Worklist must be empty to add initial group");
93 /// AddUsersToWorkList - When an instruction is simplified, add all users of
99 Add(cast<Instruction>(U));
  /external/lzma/CPP/Windows/
CommonDialog.cpp 32 bool Add(LPCSTR s) throw();
36 bool CDoubleZeroStringListA::Add(LPCSTR s) throw()
55 bool Add(LPCWSTR s) throw();
59 bool CDoubleZeroStringListW::Add(LPCWSTR s) throw()
131 dz.Add(GetSystemString(filterDescription ? filterDescription : filter));
132 dz.Add(GetSystemString(filter));
162 dz.Add(filterDescription ? filterDescription : filter);
163 dz.Add(filter);
  /external/nanopb-c/generator/google/protobuf/
descriptor_pool.py 46 pool.Add(file_descriptor_proto)
70 specified in a call to FindFileByName() and not require the call to Add()
83 def Add(self, file_desc_proto):
87 file_desc_proto: The FileDescriptorProto to add.
90 self._internal_db.Add(file_desc_proto)
225 self.Add(file_proto)
  /external/tensorflow/tensorflow/core/lib/monitoring/
mobile_sampler.h 37 void Add(double value) {}
  /external/v8/src/crankshaft/
hydrogen-gvn.h 37 void Add(SideEffects set) { bits_ |= set.bits_; }
  /frameworks/base/tools/streaming_proto/
Errors.cpp 41 Errors::Add(const string& filename, int lineno, const char* format, ...)
  /hardware/libhardware/modules/camera/3_4/
request_tracker.cpp 33 // Add an entry to the buffer tracking map for each configured stream.
56 bool RequestTracker::Add(std::shared_ptr<CaptureRequest> request) {
61 // Add to the count for each stream used.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 39 /// Add - Add the specified instruction to the worklist if it isn't already
41 void Add(Instruction *I) {
43 DEBUG(dbgs() << "IC: ADD: " << *I << '\n');
50 Add(I);
53 /// AddInitialGroup - Add the specified batch of stuff in reverse order.
57 assert(Worklist.empty() && "Worklist must be empty to add initial group");
85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
91 Add(cast<Instruction>(U));

Completed in 1005 milliseconds

1 2 34 5 6 7 8 91011>>