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

1 23 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Sema/
CXXFieldCollector.h 55 /// Add - Called by Sema::ActOnCXXMemberDeclarator.
56 void Add(FieldDecl *D) {
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Sema/
CXXFieldCollector.h 55 /// Add - Called by Sema::ActOnCXXMemberDeclarator.
56 void Add(FieldDecl *D) {
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Sema/
CXXFieldCollector.h 55 /// Add - Called by Sema::ActOnCXXMemberDeclarator.
56 void Add(FieldDecl *D) {
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
inl.go 55 // Add adds a new call to the tree, returning its index.
56 func (tree *InlTree) Add(parent int, pos src.XPos, func_ *LSym) int {
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
inl.go 55 // Add adds a new call to the tree, returning its index.
56 func (tree *InlTree) Add(parent int, pos src.XPos, func_ *LSym) int {
  /art/runtime/
indirect_reference_table-inl.h 109 inline void IrtEntry::Add(ObjPtr<mirror::Object> obj) {
  /external/boringssl/src/crypto/err/
err_data_generate.go 93 func (st *stringList) Add(key uint32, value string) error {
213 err = e.reasons.Add(listKey, value)
  /external/chromium-trace/catapult/devil/devil/utils/
reraiser_thread.py 79 """Overrides Thread.run() to add support for reraising exceptions."""
102 self.Add(thread)
104 def Add(self, thread):
105 """Add a thread to the group.
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutexset.cc 25 void MutexSet::Add(u64 id, bool write, u64 epoch) {
47 // Add new mutex descriptor.
  /external/libchrome/base/
scoped_observer.h 30 void Add(Source* source) {
  /external/libmojo/mojo/edk/system/
awakable_list.cc 54 void AwakableList::Add(Awakable* awakable,
79 return watchers_.Add(signals, callback, context, current_state);
  /external/libmojo/third_party/catapult/devil/devil/utils/
reraiser_thread.py 79 """Overrides Thread.run() to add support for reraising exceptions."""
102 self.Add(thread)
104 def Add(self, thread):
105 """Add a thread to the group.
  /external/libmojo/ui/gfx/geometry/
vector2d_f.cc 21 void Vector2dF::Add(const Vector2dF& other) {
  /external/libvpx/libvpx/test/
md5_helper.h 22 void Add(const vpx_image_t *img) {
27 // we are shifting by 1 (chroma_shift) we add 1 before doing the shift.
46 void Add(const uint8_t *data, size_t size) {
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 78 // Add a basic block to the function. As before, it automatically inserts
94 // Create the add instruction, inserting it into the end of BB.
95 Value *Add = builder.CreateAdd(One, ArgX);
97 // Create the return instruction and add it to the basic block
98 builder.CreateRet(Add);
108 // Add a basic block to the FooF function.
121 // Create the return instruction and add it to the basic block.
  /external/llvm/lib/MC/MCDisassembler/
MCExternalSymbolizer.cpp 23 // This function tries to add a symbolic operand in place of the immediate
90 const MCExpr *Add = nullptr;
95 Add = MCSymbolRefExpr::create(Sym, Ctx);
97 Add = MCConstantExpr::create((int)SymbolicOp.AddSymbol.Value, Ctx);
119 if (Add)
120 LHS = MCBinaryExpr::createSub(Add, Sub, Ctx);
127 } else if (Add) {
129 Expr = MCBinaryExpr::createAdd(Add, Off, Ctx);
131 Expr = Add;
147 // This function tries to add a comment as to what is being referenced by a loa
    [all...]
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64ExternalSymbolizer.cpp 44 /// tryAddingSymbolicOperand - tryAddingSymbolicOperand trys to add a symbolic
58 /// to add to the comment stream. This function returns Success if it adds
122 // otool expects the fully encoded ADD/LDR instruction to be passed in
126 EncodedInst |= Value << 10; // imm12 [+ shift:2 for ADD]
166 const MCExpr *Add = nullptr;
173 Add = MCSymbolRefExpr::create(Sym, Variant, Ctx);
175 Add = MCSymbolRefExpr::create(Sym, Ctx);
177 Add = MCConstantExpr::create(SymbolicOp.AddSymbol.Value, Ctx);
199 if (Add)
200 LHS = MCBinaryExpr::createSub(Add, Sub, Ctx)
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreMCInstLower.cpp 77 const MCBinaryExpr *Add = MCBinaryExpr::createAdd(MCSym, OffsetExpr, *Ctx);
78 return MCOperand::createExpr(Add);
  /external/skia/src/core/
SkMath.cpp 89 size_t SkSafeMath::Add(size_t x, size_t y) {
91 size_t sum = tmp.add(x, y);
SkYUVPlanesCache.cpp 85 void SkYUVPlanesCache::Add(uint32_t genID, SkCachedData* data, Info* info,
88 return CHECK_LOCAL(localCache, add, Add, new YUVPlanesRec(key, data, info));
  /external/skqp/src/core/
SkMath.cpp 89 size_t SkSafeMath::Add(size_t x, size_t y) {
91 size_t sum = tmp.add(x, y);
SkYUVPlanesCache.cpp 85 void SkYUVPlanesCache::Add(uint32_t genID, SkCachedData* data, Info* info,
88 return CHECK_LOCAL(localCache, add, Add, new YUVPlanesRec(key, data, info));
  /external/swiftshader/third_party/LLVM/examples/HowToUseJIT/
HowToUseJIT.cpp 69 // Add a basic block to the function. As before, it automatically inserts
85 // Create the add instruction, inserting it into the end of BB.
86 Value *Add = builder.CreateAdd(One, ArgX);
88 // Create the return instruction and add it to the basic block
89 builder.CreateRet(Add);
100 // Add a basic block to the FooF function.
113 // Create the return instruction and add it to the basic block.
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineWorklist.h 36 /// Add - Add the specified instruction to the worklist if it isn't already
38 void Add(Instruction *I) {
40 DEBUG(errs() << "IC: ADD: " << *I << '\n');
47 Add(I);
50 /// AddInitialGroup - Add the specified batch of stuff in reverse order.
54 assert(Worklist.empty() && "Worklist must be empty to add initial group");
83 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 Add(cast<Instruction>(*UI));
  /external/tensorflow/tensorflow/core/framework/
dataset_stateful_op_whitelist.h 27 Status Add(StringPiece op_name) {
72 ::tensorflow::dataset::WhitelistedStatefulOpRegistry::Global()->Add( \

Completed in 367 milliseconds

1 23 4 5 6 7 8 91011>>