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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
repeated_field_reflection.h 91 virtual void Add(Field* data, const Value* value) const = 0;
144 void Add(Field* data, const ValueType& value) const {
154 Add(data, static_cast<const Value*>(&tmp));
  /system/core/libunwindstack/include/unwindstack/
Memory.h 174 void Add(MemoryOffline* memory) { memories_.push_back(memory); }
  /art/runtime/
indirect_reference_table.cc 133 // To keep the IRT compact, we want to fill "holes" created by non-stack-discipline Add & Remove
146 // cannot do work when the segment changes. Thus, Add and Remove need to ensure the current
153 // 1) Segment with holes (current_num_holes_ > 0), push new segment, add/remove reference
154 // 2) Segment with holes (current_num_holes_ > 0), pop segment, add/remove reference
155 // 3) Segment with holes (current_num_holes_ > 0), push new segment, pop segment, add/remove
157 // 4) Empty segment, push new segment, create a hole, pop a segment, add/remove a reference
158 // 5) Base segment, push new segment, create a hole, pop a segment, push new segment, add/remove
239 IndirectRef IndirectReferenceTable::Add(IRTSegmentState previous_state,
243 LOG(INFO) << "+++ Add: previous_state=" << previous_state.top_index
293 // add to the end of the list
    [all...]
reference_table.cc 49 void ReferenceTable::Add(ObjPtr<mirror::Object> obj) {
  /art/test/660-clinit/src/
Main.java 37 expectNotPreInit(Add.class);
175 static Class<?> klazz[] = new Class<?>[]{Add.class, Mul.class};
179 class Add {
  /bionic/libc/malloc_debug/
PointerData.cpp 174 void PointerData::Add(const void* ptr, size_t pointer_size) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
HashList.cs 396 _insertionOrderList.Add(key);
425 public void Add(object key, object value)
427 _dictionary.Add(key, value);
428 _insertionOrderList.Add(key);
  /external/autotest/client/cros/cellular/
pseudo_modem.py 232 os.system('ip link add name %s type veth peer name %s' % (
239 os.system('route add -host 255.255.255.255 dev %s' % self.peer)
318 # Add the device to the manager only after the pseudo
320 self.manager.Add(self)
601 def Add(self, device):
603 logging.info('ModemManager: add %s', device.name)
606 logging.info('Add: %s', interfaces)
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p5.cpp 64 constexpr int Add(int a, int b, int c) { return a + b + c; }
65 constexpr int FunctionArgs(int a) { return Add(a, ng, a); } // expected-error {{never produces}} expected-note {{read}}
  /external/gemmlowp/fixedpoint/
fixedpoint_sse.h 95 inline __m128i Add(__m128i a, __m128i b) {
100 inline int16x8_m128i Add(int16x8_m128i a, int16x8_m128i b) {
280 /* We divide the inputs before the add to avoid the overflow and costly test
282 /* of checking if an overflow occured on signed add */
286 /* sum = Add(a_over_2, b_over_2); */
288 /* return Add(sum, round_bit); */
295 sum = Add(a, b);
296 rounded_half_sum = _mm_srai_epi32(Add(sum, one), 1);
  /external/google-breakpad/src/processor/
microdump.cc 87 void MicrodumpModules::Add(const CodeModule* module) {
292 modules_->Add(new BasicCodeModule(
stackwalker_unittest_utils.h 133 void Add(const MockCodeModule *module) {
  /external/libbrillo/brillo/dbus/
dbus_object_unittest.cc 32 const char kTestMethod_Add[] = "Add";
47 int Add(int x, int y) { return x + y; }
120 kTestMethod_Add, base::Unretained(&calc_), &Calc::Add);
154 TEST_F(DBusObjectTest, Add) {
383 kTestMethod_Add, base::Unretained(&calc_), &Calc::Add);
  /external/libchrome/base/
id_map.h 56 // Sets whether Add and Replace should DCHECK if passed in NULL data.
61 KeyType Add(V data) { return AddInternal(std::move(data)); }
65 // this function, or allow this object to generate IDs and call Add. These
241 // The next ID that we will return from Add()
  /external/libchrome/base/metrics/
sparse_histogram.cc 103 void SparseHistogram::Add(Sample value) {
124 snapshot->Add(*samples_);
133 snapshot->Add(*samples_);
137 logged_samples_->Add(*snapshot);
147 snapshot->Add(*samples_);
156 samples_->Add(samples);
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 60 // Add a basic block to the function. As before, it automatically inserts
72 // Create the add instruction, inserting it into the end of BB.
73 Instruction *Add = BinaryOperator::CreateAdd(One, ArgX, "addresult", BB);
75 // Create the return instruction and add it to the basic block
76 ReturnInst::Create(M->getContext(), Add, BB);
91 // Add a basic block to the function.
126 // Create the return instruction and add it to the basic block
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 175 void Add(const BitCodeAbbrevOp &OpInfo) {
  /external/llvm/lib/Target/AArch64/
AArch64AsmPrinter.cpp 511 /// add x0, x0, #:tlsdesc_lo12:var
539 MCInst Add;
540 Add.setOpcode(AArch64::ADDXri);
541 Add.addOperand(MCOperand::createReg(AArch64::X0));
542 Add.addOperand(MCOperand::createReg(AArch64::X0));
543 Add.addOperand(SymTLSDescLo12);
544 Add.addOperand(MCOperand::createImm(AArch64_AM::getShiftValue(0)));
545 EmitToStreamer(*OutStreamer, Add);
  /external/llvm/lib/Target/Sparc/
SparcAsmPrinter.cpp 102 const MCBinaryExpr *Add = MCBinaryExpr::createAdd(GOT, Sub, OutContext);
104 Add, OutContext);
238 // add <MO>, %o7, <MO>
327 "Cannot handle target flags on add for TLS");
390 // If this is an ADD operand, emit it like normal operands.
  /external/protobuf/python/google/protobuf/pyext/
descriptor_pool.cc 191 // Add a message class to our database.
326 // descriptors is to call Add() or AddSerializedFile().
417 "Cannot call Add on a DescriptorPool that uses a DescriptorDatabase. "
418 "Add your file to the underlying database.");
458 PyObject* Add(PyDescriptorPool* self, PyObject* file_descriptor_proto) {
468 { "Add", (PyCFunction)Add, METH_O,
476 "No-op. Add() must have been called before." },
478 "No-op. Add() must have been called before." },
480 "No-op. Add() must have been called before." }
    [all...]
repeated_composite_container.cc 101 // added in the underlying protobuf so add them to our list. They can never
126 // add()
180 PyObject* Add(RepeatedCompositeContainer* self,
208 ScopedPyObjectPtr new_message(Add(self, NULL, NULL));
554 { "add", (PyCFunction) Add, METH_VARARGS | METH_KEYWORDS,
  /external/protobuf/src/google/protobuf/
descriptor_database.cc 255 bool SimpleDescriptorDatabase::Add(const FileDescriptorProto& file) {
308 bool EncodedDescriptorDatabase::Add(
315 "EncodedDescriptorDatabase::Add().";
325 return Add(copy, size);
reflection.h 126 void Add(const T& value) const {
127 accessor_->template Add<T>(data_, value);
147 Add(*it);
258 void Add(const T& value) const {
259 accessor_->Add(data_, &value);
279 Add(*it);
353 virtual void Add(Field* data, const Value* value) const = 0;
406 void Add(Field* data, const ValueType& value) const {
416 Add(data, static_cast<const Value*>(&tmp));
reflection_internal.h 108 virtual void Add(Field* data, const Value* value) const {
109 MutableRepeatedField(data)->Add(ConvertToT(value));
163 virtual void Add(Field* data, const Value* value) const {
225 virtual void Add(Field* data, const Value* value) const {
306 using RepeatedFieldAccessor::Add;
322 Add<string>(data, other_mutator->Get<string>(other_data, i));
327 other_mutator->Add<string>(other_data, tmp.Get(i));
  /external/skia/src/core/
SkBitmapCache.cpp 101 SkDebugf("-- add [%d %d] %d [%d %d %d %d]\n",
313 void SkBitmapCache::Add(RecPtr rec, SkBitmap* bitmap) {
314 SkResourceCache::Add(rec.release(), bitmap);
415 CHECK_LOCAL(localCache, add, Add, rec);

Completed in 2341 milliseconds

1 2 3 4 5 6 7 8 91011>>