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

1 2 3 4 5 67 8 91011>>

  /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/swiftshader/third_party/LLVM/examples/ParallelJIT/
ParallelJIT.cpp 43 // Add a basic block to the function. As before, it automatically inserts
55 // Create the add instruction, inserting it into the end of BB.
56 Instruction *Add = BinaryOperator::CreateAdd(One, ArgX, "addresult", BB);
58 // Create the return instruction and add it to the basic block
59 ReturnInst::Create(M->getContext(), Add, BB);
74 // Add a basic block to the function.
109 // Create the return instruction and add it to the basic block
  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitCodes.h 179 void Add(const BitCodeAbbrevOp &OpInfo) {
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Registry.h 176 /// Registry<Collector>::Add<FancyGC>
191 class Add {
198 Add(const char *Name, const char *Desc)
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 134 Value *Add = Builder->CreateMul(X, CI);
135 return BinaryOperator::CreateAdd(Add, Builder->CreateMul(C1, CI));
343 Worklist.Add(BBI);
347 Worklist.Add(BBI);
632 Value *Add = Builder->CreateAdd(Op1, N1);
633 return BinaryOperator::CreateAnd(Op0, Add);
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LowerSwitch.cpp 203 Instruction* Add = BinaryOperator::CreateAdd(Val, NegLo,
207 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound,
  /external/swiftshader/third_party/LLVM/utils/TableGen/
SetTheory.cpp 28 // (add a, b, ...) Evaluate and union all arguments.
35 // (sub Add, Sub, ...) Set difference.
41 RecSet Add, Sub;
42 ST.evaluate(*Expr->arg_begin(), Add);
44 for (RecSet::iterator I = Add.begin(), E = Add.end(); I != E; ++I)
202 addOperator("add", new AddOp);
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTBoneBatch.cpp 127 bool Add(const int n)
141 // Add the new item
164 Add(src.m_pnPalette[i]);
693 if(nVertexBones >= 1 && vWeight.x != 0) bOk &= batch.Add((int)vIdx.x);
694 if(nVertexBones >= 2 && vWeight.y != 0) bOk &= batch.Add((int)vIdx.y);
695 if(nVertexBones >= 3 && vWeight.z != 0) bOk &= batch.Add((int)vIdx.z);
696 if(nVertexBones >= 4 && vWeight.w != 0) bOk &= batch.Add((int)vIdx.w);
  /external/v8/src/
bit-vector.h 101 void Add(int i) {
217 void Add(int value, Zone* zone) {
219 bits_->Add(value);
224 Add(it.Current(), zone);
counters.cc 218 V8_NOINLINE void Add(RuntimeCallCounter* counter) {
287 void RuntimeCallCounter::Add(RuntimeCallCounter* other) {
336 void RuntimeCallStats::Add(RuntimeCallStats* other) {
341 counter->Add(other_counter);
362 entries.Add(counter);
  /external/v8/src/crankshaft/
unique.h 165 // Add a new element to this unique set. Mutates this set. O(|this|).
166 void Add(Unique<T> uniq, Zone* zone) {
  /external/v8/src/zone/
zone.h 167 for (auto& i : list) Add(i, zone);
179 // We add some convenience wrappers so that we can pass in a Zone
181 void Add(const T& element, Zone* zone) {
182 List<T, ZoneAllocationPolicy>::Add(element, ZoneAllocationPolicy(zone));
  /external/webrtc/webrtc/base/
messagequeue.cc 55 void MessageQueueManager::Add(MessageQueue *message_queue) {
132 MessageQueueManager::Add(this);
287 // Add the message to the end of the queue
325 // Add to the priority queue. Gets sorted soonest first.
natsocketfactory.cc 352 return nats_.Add(ext_ip, new Translator(this, type, int_ip, server_, ext_ip));
432 return nats_.Add(ext_ip,
479 NATSocketServer::Translator* NATSocketServer::TranslatorMap::Add(
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe.cc 126 loss_account_.Add(LinkedSetPacketLossRatio());
263 void LossAccount::Add(LossAccount rhs) {
  /external/webrtc/webrtc/system_wrappers/source/
trace_impl.cc 89 // Add the appropriate amount of whitespace.
149 // Add the appropriate amount of whitespace.
226 // Add the appropriate amount of whitespace.
581 void Trace::Add(const TraceLevel level, const TraceModule module,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msputils.h 52 WINBOOL Add(T &t) {
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
p224.go 80 func (p224Curve) Add(bigX1, bigY1, bigX2, bigY2 *big.Int) (x, y *big.Int) {
  /prebuilts/go/darwin-x86/src/math/big/
int.go 108 // Add sets z to the sum x+y and returns z.
109 func (z *Int) Add(x, y *Int) *Int {
114 z.abs = z.abs.add(x.abs, y.abs)
135 z.abs = z.abs.add(x.abs, y.abs)
241 z.Add(z, intOne)
263 z.Add(z, y0)
292 z.Add(z, intOne)
296 m.Add(m, y0)
474 X.Add(X, lastX)
480 Y.Add(Y, lastY
    [all...]

Completed in 1209 milliseconds

1 2 3 4 5 67 8 91011>>