/netbsd-src/sys/external/bsd/gnu-efi/dist/lib/ |
H A D | print.c | 71 CHAR16 Scratch[PRINT_ITEM_BUFFER_LEN]; member 1125 Item.Scratch[0] = '%'; in _Print() 1126 Item.Scratch[1] = 0; in _Print() 1127 Item.Item.pw = Item.Scratch; in _Print() 1183 Item.Scratch[0] = (CHAR16) va_arg(ps->args, UINTN); in _Print() 1184 Item.Scratch[1] = 0; in _Print() 1185 Item.Item.pw = Item.Scratch; in _Print() 1200 Item.Scratch, in _Print() 1203 Item.Item.pw = Item.Scratch; in _Print() 1209 GuidToString (Item.Scratch, va_arg(ps->args, EFI_GUID *)); in _Print() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/Disassembler/ |
H A D | M68kDisassembler.cpp | 130 M68kInstructionReader &Reader, unsigned &Scratch) const; 132 M68kInstructionReader &Reader, unsigned &Scratch) const; 413 unsigned &Scratch) const { in decodeReg() 418 Scratch = (Scratch & ~7) | Reader.readBits(3); in decodeReg() 423 Scratch |= 8; in decodeReg() 425 Scratch &= ~8; in decodeReg() 431 unsigned &Scratch) const { in decodeImm() 454 Scratch = (Scratch << NumToRead) | Reader.readBits(NumToRead); in decodeImm() 497 SmallVector<unsigned, 6> Scratch(NumOperands, 0); in getInstruction() local 534 decodeReg(Instr, Bead, Reader, Scratch[MIOpIdx]); in getInstruction() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
H A D | MipsExpandPseudo.cpp | 109 Register Scratch = I->getOperand(7).getReg(); in expandAtomicCmpSwapSubword() local 145 BuildMI(loop1MBB, DL, TII->get(LL), Scratch).addReg(Ptr).addImm(0); in expandAtomicCmpSwapSubword() 147 .addReg(Scratch) in expandAtomicCmpSwapSubword() 157 BuildMI(loop2MBB, DL, TII->get(Mips::AND), Scratch) in expandAtomicCmpSwapSubword() 158 .addReg(Scratch, RegState::Kill) in expandAtomicCmpSwapSubword() 160 BuildMI(loop2MBB, DL, TII->get(Mips::OR), Scratch) in expandAtomicCmpSwapSubword() 161 .addReg(Scratch, RegState::Kill) in expandAtomicCmpSwapSubword() 163 BuildMI(loop2MBB, DL, TII->get(SC), Scratch) in expandAtomicCmpSwapSubword() 164 .addReg(Scratch, RegState::Kill) in expandAtomicCmpSwapSubword() 168 .addReg(Scratch, RegState::Kill) in expandAtomicCmpSwapSubword() [all …]
|
H A D | MipsISelLowering.cpp | 1548 Register Scratch = RegInfo.createVirtualRegister(RegInfo.getRegClass(OldVal)); in emitAtomicBinary() local 1598 .addReg(Scratch, RegState::Define | RegState::EarlyClobber | in emitAtomicBinary() 1668 Register Scratch = RegInfo.createVirtualRegister(RC); in emitAtomicBinaryPartword() local 1811 .addReg(Scratch, RegState::EarlyClobber | RegState::Define | in emitAtomicBinaryPartword() 1857 Register Scratch = MRI.createVirtualRegister(RC); in emitAtomicCmpSwap() local 1882 .addReg(Scratch, RegState::EarlyClobber | RegState::Define | in emitAtomicCmpSwap() 1934 Register Scratch = RegInfo.createVirtualRegister(RC); in emitAtomicCmpSwapPartword() local 2004 .addReg(Scratch, RegState::EarlyClobber | RegState::Define | in emitAtomicCmpSwapPartword()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | OptimizedStructLayout.cpp | 95 I->Scratch = reinterpret_cast<void*>(UniqueNumber++); in performOptimizedStructLayout() 116 auto lhsNumber = reinterpret_cast<uintptr_t>(lhs->Scratch); in performOptimizedStructLayout() 117 auto rhsNumber = reinterpret_cast<uintptr_t>(rhs->Scratch); in performOptimizedStructLayout() 250 return static_cast<Field *>(Cur->Scratch); in performOptimizedStructLayout() 261 LastInQueue->Scratch = I; in performOptimizedStructLayout() 265 LastInQueue->Scratch = nullptr; in performOptimizedStructLayout() 300 Last->Scratch = Cur->Scratch; in performOptimizedStructLayout() 305 if (!Cur->Scratch) in performOptimizedStructLayout()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/ |
H A D | BenchmarkRunner.cpp | 34 : State(State), Mode(Mode), Scratch(std::make_unique<ScratchSpace>()) {} in BenchmarkRunner() 43 BenchmarkRunner::ScratchSpace *Scratch) in FunctionExecutorImpl() argument 45 Scratch(Scratch) {} in FunctionExecutorImpl() 73 char *const ScratchPtr = Scratch->ptr(); in runAndSample() 94 Scratch->clear(); in runAndSample() 131 BenchmarkRunner::ScratchSpace *const Scratch; member in llvm::exegesis::__anon9b4608540111::FunctionExecutorImpl 215 Scratch.get()); in runConfiguration()
|
H A D | BenchmarkRunner.h | 87 const std::unique_ptr<ScratchSpace> Scratch; variable
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
H A D | ASTMatchersInternal.cpp | 495 llvm::SmallString<128> &Scratch) { in getNodeName() argument 502 Scratch.clear(); in getNodeName() 503 llvm::raw_svector_ostream OS(Scratch); in getNodeName() 512 llvm::SmallString<128> &Scratch) { in getNodeName() argument 516 Scratch.clear(); in getNodeName() 517 return ("(anonymous " + Node.getKindName() + ")").toStringRef(Scratch); in getNodeName() 521 llvm::SmallString<128> &Scratch) { in getNodeName() argument 574 llvm::SmallString<128> Scratch; in matchesNodeUnqualified() local 575 StringRef NodeName = getNodeName(Node, Scratch); in matchesNodeUnqualified() 583 llvm::SmallString<128> Scratch; in matchesNodeFullFast() local [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/ |
H A D | AVRRegisterInfo.td | 128 // Scratch registers. 146 // Scratch registers. 163 // Scratch registers. 179 // Scratch registers. 199 // Scratch registers. 211 // Scratch registers. 222 // Scratch registers.
|
/netbsd-src/usr.sbin/sysinst/arch/mac68k/ |
H A D | menus.md.pl | 248 option "Scratch", exit, action { 257 strcpy (map.blk[j].pmPartName, "untitled (Scratch)");
|
H A D | menus.md.en | 247 option "Scratch", exit, action { 256 strcpy ((char *)map.blk[j].pmPartName, "untitled (Scratch)");
|
H A D | menus.md.es | 246 option "Scratch", exit, action { 255 strcpy (map.blk[j].pmPartName, "sin nombre (Scratch)");
|
H A D | menus.md.de | 246 option "Scratch", exit, action { 255 strcpy (map.blk[j].pmPartName, "unbetitelt (Scratch)");
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
H A D | MergeICmps.cpp | 563 SmallString<16> Scratch; member in __anon8ada780a0111::__anon8ada780a0311::MergedBlockName 584 Scratch.clear(); in makeName() 587 Scratch.reserve(size + Comparisons.size() - 1); in makeName() 589 Scratch.append(str.begin(), str.end()); in makeName() 599 return StringRef(Scratch); in makeName()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
H A D | OptimizedStructLayout.h | 70 void *Scratch; member
|
/netbsd-src/sys/external/bsd/gnu-efi/dist/inc/protocol/ |
H A D | efivar.h | 40 IN OUT VOID *Scratch
|
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/docs/topics/ |
H A D | asm.rst | 261 …`Clobbers and Scratch Registers <https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#Clobbers-and…
|
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/docs/cp/topics/ |
H A D | asm.rst | 269 …`Clobbers and Scratch Registers <https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#Clobbers-and…
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/ |
H A D | AArch64LegalizerInfo.cpp | 1130 auto Scratch = MRI.createVirtualRegister(&AArch64::GPR64RegClass); in legalizeAtomicCmpxchg128() local 1131 CAS = MIRBuilder.buildInstr(AArch64::CMP_SWAP_128, {DstLo, DstHi, Scratch}, in legalizeAtomicCmpxchg128()
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | AMDGPUUsage.rst | 706 Scratch memory can be accessed in an interleaved manner using buffer 1788 ``DW_ADDR_LLVM_private`` 0x0004 Private (Scratch) 1836 ``DW_ASPACE_AMDGPU_private_lane`` 0x05 32 32 Private (Scratch) *focused lane* 1837 …``DW_ASPACE_AMDGPU_private_wave`` 0x06 32 32 Private (Scratch) *unswizzled wavef… 2887 Scratch (GFX7-GFX10) 3090 Scratch (GFX7-GFX9) 4296 then Flat Scratch Init 2 See 4315 Flat Scratch Init. However, it 4318 Flat Scratch Init value. 4331 then Scratch Wavefront Offset 1 See [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPU.td | 250 …"Scratch instructions with a VGPR offset and a negative immediate offset that is not a multiple of… 737 "Flat Scratch register is a readonly SPI initialized architected register"
|
/netbsd-src/sys/dev/microcode/aic7xxx/ |
H A D | aic7xxx.reg | 585 * Single byte window into the Scratch Ram area starting at the address 1255 /* ---------------------- Scratch RAM Offsets ------------------------- */
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | ExprConstant.cpp | 1952 APValue Scratch; in EvaluateIgnoredValue() local 1953 if (!Evaluate(Scratch, Info, E)) in EvaluateIgnoredValue() 14728 EvalResult Scratch; in EvaluateAsBooleanCondition() local 14729 return EvaluateAsRValue(Scratch, Ctx, InConstantContext) && in EvaluateAsBooleanCondition() 14730 HandleConversionToBool(Scratch.Val, Result); in EvaluateAsBooleanCondition() 15552 APValue Scratch; in isCXX11ConstantExpr() local 15554 ::EvaluateAsRValue(Info, this, Result ? *Result : Scratch) && in isCXX11ConstantExpr() 15665 APValue Scratch; in isPotentialConstantExpr() local 15669 Info.setEvaluatingDecl(This.getLValueBase(), Scratch); in isPotentialConstantExpr() 15670 HandleConstructorCall(&VIE, This, Args, CD, Info, Scratch); in isPotentialConstantExpr() [all …]
|
/netbsd-src/sys/arch/mac68k/mac68k/ |
H A D | locore.s | 106 | Scratch memory. Careful when messing with these...
|
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/avr/ |
H A D | lib1funcs.S | 1793 ;; Scratch Register for Negation
|