HomeSort by: relevance | last modified time | path
    Searched defs:New (Results 1 - 25 of 94) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_mman.h 55 T *New(Args &&...args) {
56 return new (Alloc(sizeof(T))) T(static_cast<Args &&>(args)...);
  /src/sys/arch/epoc32/stand/e32boot/exe/
netbsd.cpp 37 NetBSD::New(const TDesC &aFilename)
58 netbsd = new (ELeave) ELF(size);
80 NetBSD::New(const TDesC &aFilename, const TDesC &aArgs)
82 NetBSD *netbsd = New(aFilename);
100 phdr = (Elf32_Phdr *) new (ELeave) TUint8[PhdrSize];
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerValueBitMap.h 38 uintptr_t New = Old | (1UL << BitIdx);
39 Map[WordIdx] = New;
40 return New != Old;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_symbolizer.cc 45 SymbolizedStack *SymbolizedStack::New(uptr addr) {
47 SymbolizedStack *res = new(mem) SymbolizedStack();
sanitizer_ring_buffer.h 26 static RingBuffer *New(uptr Size) {
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Module.cpp 107 new RandomNumberGenerator(Salt));
149 Function *New = Function::Create(Ty, GlobalVariable::ExternalLinkage,
151 if (!New->isIntrinsic()) // Intrinsics get attrs set on construction
152 New->setAttributes(AttributeList);
153 FunctionList.push_back(New);
154 return {Ty, New}; // Return the new prototype.
227 return new GlobalVariable(*this, Ty, false, GlobalVariable::ExternalLinkage,
257 /// with the specified name. This method returns a new NamedMDNode if a
262 NMD = new NamedMDNode(Name)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiISelDAGToDAG.cpp 291 SDValue New = CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
293 return ReplaceNode(Node, New.getNode());
298 SDValue New = CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
300 return ReplaceNode(Node, New.getNode());
332 return new LanaiDAGToDAGISel(TM);
  /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 69 // Update FP with the new base value...
239 MachineInstr *New = nullptr;
241 New =
250 New = BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::ADD16ri),
256 if (New) {
258 New->getOperand(3).setIsDead();
260 // Replace the pseudo instruction with a new instruction...
261 MBB.insert(I, New);
269 MachineInstr *New =
274 New->getOperand(3).setIsDead()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyRegColoring.cpp 61 return new WebAssemblyRegColoring();
155 unsigned New = SortedIntervals[Color]->reg();
156 SlotMapping[I] = New;
157 Changed |= Old != New;
161 if (Old != New && MFI.isFrameBaseVirtual() && MFI.getFrameBaseVreg() == Old)
162 MFI.setFrameBaseVreg(New);
164 << " to vreg" << Register::virtReg2Index(New) << "\n");
172 unsigned New = SlotMapping[I];
173 if (Old != New)
174 MRI->replaceRegWith(Old, New);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
PruneEH.cpp 63 Pass *llvm::createPruneEHPass() { return new PruneEH(); }
194 DeleteBasicBlock(UnwindBlock, CGU); // Delete the new BB.
207 // new BB.
208 BasicBlock *New = BB->splitBasicBlock(I);
212 new UnreachableInst(BB->getContext(), &*BB);
214 DeleteBasicBlock(New, CGU); // Delete the new BB.
ConstantMerge.cpp 105 static CanMerge makeMergeable(GlobalVariable *Old, GlobalVariable *New) {
106 if (!Old->hasGlobalUnnamedAddr() && !New->hasGlobalUnnamedAddr())
110 assert(!hasMetadataOtherThanDebugLoc(New));
112 New->setUnnamedAddr(GlobalValue::UnnamedAddr::None);
116 static void replace(Module &M, GlobalVariable *Old, GlobalVariable *New) {
117 Constant *NewConstant = New;
120 << New->getName() << "\n");
123 if (Old->getAlign() || New->getAlign())
124 New->setAlignment(std::max(getAlign(Old), getAlign(New)));
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_symbolizer.cpp 44 SymbolizedStack *SymbolizedStack::New(uptr addr) {
46 SymbolizedStack *res = new(mem) SymbolizedStack();
sanitizer_ring_buffer.h 25 static RingBuffer *New(uptr Size) {
  /src/sys/external/bsd/acpica/dist/utilities/
utclib.c 150 char *New = (char *) Dest;
154 if (Old > New)
160 *New = *Old;
161 New++;
166 else if (Old < New)
170 New = New + Count - 1;
174 *New = *Old;
175 New--;
205 char *New = (char *) Dest
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
MacroExpander.cpp 208 FormatToken *New = new (Allocator.Allocate()) FormatToken;
209 New->copyFrom(*Tok);
210 assert(!New->MacroCtx);
212 New->MacroCtx = MacroExpansion(MR_Hidden);
213 pushToken(New);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 160 DIEAbbrev *New = new (Alloc) DIEAbbrev(std::move(Abbrev));
161 Abbreviations.push_back(New);
162 New->setNumber(Abbreviations.size());
166 AbbreviationsSet.InsertNode(New, InsertPos);
167 return *New;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRRegisterInfo.cpp 200 MachineInstr *New = BuildMI(MBB, II, dl, TII.get(Opcode), DstReg)
203 New->getOperand(3).setIsDead();
228 MachineInstr *New = BuildMI(MBB, II, dl, TII.get(AddOpc), AVR::R29R28)
231 New->getOperand(3).setIsDead();
AVRFrameLowering.cpp 103 // Update Y with the new base value.
359 MachineInstr *New = BuildMI(MBB, MI, DL, TII.get(AVR::SUBIWRdK), AVR::R31R30)
362 New->getOperand(3).setIsDead();
389 MachineInstr *New = BuildMI(MBB, MI, DL, TII.get(addOpcode), AVR::R31R30)
392 New->getOperand(3).setIsDead();
479 FunctionPass *createAVRFrameAnalyzerPass() { return new AVRFrameAnalyzer(); }
531 FunctionPass *createAVRDynAllocaSRPass() { return new AVRDynAllocaSR(); }
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_report.cc 25 ReportStack *ReportStack::New() {
27 return new(mem) ReportStack();
34 ReportLocation *ReportLocation::New(ReportLocationType type) {
36 return new(mem) ReportLocation(type);
  /src/external/apache2/llvm/dist/clang/lib/Rewrite/
DeltaTree.cpp 235 // Okay, this split the subtree, producing a new value and two children to
238 // Now that we have two nodes and a new element, insert the perclated value
240 // the new one.
306 // Create the new child node.
310 // into the new node.
311 DeltaTreeInteriorNode *New = new DeltaTreeInteriorNode();
312 memcpy(&New->Children[0], &IN->Children[WidthFactor],
314 NewNode = New;
316 // Just create the new leaf node
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ScopedHashTable.h 37 #include <new>
68 ScopedHashTableVal *New = Allocator.template Allocate<ScopedHashTableVal>();
70 new (New) ScopedHashTableVal(key, val);
71 New->NextInScope = nextInScope;
72 New->NextForKey = nextForKey;
73 return New;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
FoldingSet.cpp 181 unsigned *New = Allocator.Allocate<unsigned>(Bits.size());
182 std::uninitialized_copy(Bits.begin(), Bits.end(), New);
183 return FoldingSetNodeIDRef(New, Bits.size());
280 // Clear out new buckets.
282 // Set NumBuckets only if allocation of new buckets was successful.
286 // Walk the old buckets, rehashing nodes into their new place.
296 // Insert the node into the new bucket, after recomputing the hash.
ItaniumManglingCanonicalizer.cpp 99 return {new (RawAlloc.Allocate(sizeof(T), alignof(T)))
118 NodeHeader *New = new (Storage) NodeHeader;
119 T *Result = new (New->getNode()) T(std::forward<Args>(As)...);
120 Nodes.InsertNode(New, InsertPos);
145 // Node is new. Make a note of that.
216 ItaniumManglingCanonicalizer::ItaniumManglingCanonicalizer() : P(new Impl) {}
  /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 301 // Add the new register node and skip the original two GPRs.
315 SDValue New = CurDAG->getNode(N->getOpcode(), SDLoc(N),
317 New->setNodeId(-1);
318 ReplaceNode(N, New.getNode());
399 return new SparcDAGToDAGISel(TM);
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
ExtractFunction.cpp 120 std::unique_ptr<Module> New = runPassesOn(Clone.get(), Passes);
121 if (!New) {
125 return New;
143 std::unique_ptr<Module> New = runPassesOn(M.get(), CleanupPasses);
144 if (!New) {
148 return New;
163 // Check to see if we created any new functions. If not, no loops were
289 new GlobalVariable(*M1, M1Init->getType(), false,
300 new GlobalVariable(*M2, M2Init->getType(), false,
320 std::unique_ptr<Module> New = CloneModule(*M, NewVMap)
    [all...]

Completed in 119 milliseconds

1 2 3 4