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

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
Mutations.cpp 30 /// Add a new node with a specified role.
31 static void addAfter(syntax::Node *Anchor, syntax::Node *New, NodeRole Role) {
34 assert(New->Parent == nullptr);
35 assert(New->NextSibling == nullptr);
36 assert(New->PreviousSibling == nullptr);
37 assert(New->isDetached());
40 New->setRole(Role);
43 Anchor->getNextSibling(), New);
49 static void replace(syntax::Node *Old, syntax::Node *New) {
53 assert(New->Parent == nullptr)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
llvm-c-test.h 27 LLVMModuleRef llvm_load_module(bool Lazy, bool New);
28 int llvm_module_dump(bool Lazy, bool New);
module.c 22 fprintf(stderr, "Error with new bitcode parser: %s\n", CErr);
27 LLVMModuleRef llvm_load_module(bool Lazy, bool New) {
38 if (New) {
64 int llvm_module_dump(bool Lazy, bool New) {
65 LLVMModuleRef M = llvm_load_module(Lazy, New);
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfilingPlatformOther.c 43 #define UPDATE_FIRST(First, New) First = New < First ? New : First
49 #define UPDATE_LAST(Last, New) Last = New > Last ? New : Last
  /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/
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/sys/arch/epoc32/stand/e32boot/include/
netbsd.h 45 static NetBSD *New(const TDesC &);
46 static NetBSD *New(const TDesC &, const TDesC &);
64 ELF(TInt size) { Buffer = new TUint8[size]; };
  /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/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CloneModule.cpp 35 // Create the value map that maps things from the old module over to the new
49 // First off, we need to create the new module.
50 std::unique_ptr<Module> New =
52 New->setSourceFileName(M.getSourceFileName());
53 New->setDataLayout(M.getDataLayout());
54 New->setTargetTriple(M.getTargetTriple());
55 New->setModuleInlineAsm(M.getModuleInlineAsm());
58 // new module. Here we add them to the VMap and to the new Module. We
63 GlobalVariable *GV = new GlobalVariable(*New
    [all...]
  /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/llvm/lib/IR/
BasicBlock.cpp 390 BasicBlock *New = BasicBlock::Create(getContext(), BBName, getParent(),
396 // the new basic block.
397 New->getInstList().splice(New->end(), this->getInstList(), I, end());
400 BranchInst *BI = BranchInst::Create(New, this);
403 // Now we must loop through all of the successors of the New block (which
406 // know that incoming branches will be from New, not from Old (this).
408 New->replaceSuccessorsPhiUsesWith(this, New);
409 return New;
    [all...]
Value.cpp 349 // Create the new name.
367 // Name is changing to something new.
496 void Value::doRAUW(Value *New, ReplaceMetadataUses ReplaceMetaUses) {
497 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
498 assert(!contains(New, this) &&
500 assert(New->getType() == getType() &&
501 "replaceAllUses of value with new value of different type!");
505 ValueHandleBase::ValueIsRAUWd(this, New);
507 ValueAsMetadata::handleRAUW(this, New);
515 C->handleOperandChange(this, New);
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
UnresolvedSet.h 99 /// Replaces the given declaration with the new one, once.
102 bool replace(const NamedDecl* Old, NamedDecl *New) {
105 return (I->setDecl(New), true);
109 /// Replaces the declaration at the given iterator with the new one,
111 void replace(iterator I, NamedDecl *New) { I.I->setDecl(New); }
113 void replace(iterator I, NamedDecl *New, AccessSpecifier AS) {
114 I.I->set(New, AS);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_symbolize.cc 49 // New API: call __tsan_symbolize_external_ex only when it exists.
67 ssb->tail->next = SymbolizedStack::New(ssb->addr);
70 ssb->head = ssb->tail = SymbolizedStack::New(ssb->addr);
97 SymbolizedStack *frame = SymbolizedStack::New(addr);
114 ReportLocation *ent = ReportLocation::New(ReportLocationGlobal);
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_symbolize.cpp 48 // New API: call __tsan_symbolize_external_ex only when it exists.
66 ssb->tail->next = SymbolizedStack::New(ssb->addr);
69 ssb->head = ssb->tail = SymbolizedStack::New(ssb->addr);
96 SymbolizedStack *frame = SymbolizedStack::New(addr);
113 auto *ent = New<ReportLocation>();
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_symbolize.cpp 48 // New API: call __tsan_symbolize_external_ex only when it exists.
66 ssb->tail->next = SymbolizedStack::New(ssb->addr);
69 ssb->head = ssb->tail = SymbolizedStack::New(ssb->addr);
96 SymbolizedStack *frame = SymbolizedStack::New(addr);
113 auto *ent = New<ReportLocation>();
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
watchpoint-solib.exp 73 gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit"
80 gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit again"
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
watchpoint-solib.exp 73 gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit"
80 gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit again"
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineJumpTableInfo.h 91 /// createJumpTableIndex - Create a new jump table.
113 /// the jump tables to branch to New instead.
114 bool ReplaceMBBInJumpTables(MachineBasicBlock *Old, MachineBasicBlock *New);
117 /// the jump table to branch to New instead.
119 MachineBasicBlock *New);
  /src/external/bsd/openldap/dist/tests/scripts/
test032-chain 187 dn: cn=New Group,ou=Groups,dc=example,dc=com
190 cn: New Group
193 dn: cn=New Group,ou=Groups,dc=example,dc=com
199 member: cn=New Group,ou=Groups,dc=example,dc=com
206 dn: cn=New Group,ou=Groups,dc=example,dc=com
228 dn: cn=New User,ou=People,dc=example,dc=com
231 cn: New User
233 seeAlso: cn=New Group,ou=Groups,dc=example,dc=com
235 dn: cn=New User,ou=People,dc=example,dc=com
244 dn: cn=New User,ou=People,dc=example,dc=co
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExceptionSpec.cpp 90 auto *BoolExpr = new (Context)
262 const FunctionProtoType *New, SourceLocation NewLoc,
287 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) {
294 OverloadedOperatorKind OO = New->getDeclName().getCXXOverloadedOperator();
309 if (exceptionSpecNotKnownYet(Old) || exceptionSpecNotKnownYet(New)) {
310 DelayedEquivalentExceptionSpecChecks.push_back({New, Old});
319 New->getType()->getAs<FunctionProtoType>(), New->getLocation(),
327 hasImplicitExceptionSpec(Old) != hasImplicitExceptionSpec(New)) {
328 Diag(New->getLocation(), diag::ext_implicit_exception_spec_mismatch
    [all...]
SemaDecl.cpp 984 // Update the name, so that the caller has the new name.
1299 // the containing DC of TD, because the new context will be some pre-existing
1444 /// whether some new function is actually an overload. It will return
1451 const FunctionDecl *New) {
1460 New->hasAttr<OverloadableAttr>());
1563 /// We've determined that \p New is a redeclaration of \p Old. Check that they
1565 bool Sema::CheckRedeclarationModuleOwnership(NamedDecl *New, NamedDecl *Old) {
1570 if (New->getFriendObjectKind() &&
1571 Old->getOwningModuleForLinkage() != New->getOwningModuleForLinkage()) {
1572 New->setLocalOwningModule(Old->getOwningModule())
    [all...]
  /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/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/sanitizer_common/tests/
sanitizer_ring_buffer_test.cc 31 RingBuffer<int64_t> *RBlong = RingBuffer<int64_t>::New(20);
40 RB = RingBuffer<T>::New(Size);
45 RB = RingBuffer<T>::New(4);
83 return new CompactRingBuffer<T>(p, sz);

Completed in 48 milliseconds

1 2 3 4 5 6 7 8 91011>>