| /openbsd-src/lib/libcrypto/rc4/asm/ |
| H A D | rc4-586.pl | 77 &add (&LB($yy),&LB($tx)); 82 &inc (&LB($xx)); 105 &add (&LB($yy),&LB($tx)); 115 &add (&LB($ty),&LB($tx)); 131 &add (&LB($yy),&LB($tx)); 138 &movz ($xx,&LB($xx)); # (*) 139 &movz ($ty,&LB($ty)); # (*) 169 &mov (&LB($xx),&BP(0,$dat)); # load key->x 170 &mov (&LB($yy),&BP(4,$dat)); # load key->y 177 &inc (&LB($xx)); [all …]
|
| /openbsd-src/lib/libcrypto/modes/asm/ |
| H A D | ghash-x86_64.pl | 71 sub LB() { my $r=shift; $r =~ s/%[er]([a-d])x/%\1l/ or subroutine 91 mov `&LB("$Zlo")`,`&LB("$nlo")` 92 mov `&LB("$Zlo")`,`&LB("$nhi")` 93 shl \$4,`&LB("$nlo")` 97 and \$0xf0,`&LB("$nhi")` 106 mov ($inp,$cnt),`&LB("$nlo")` 111 mov `&LB("$nlo")`,`&LB("$nhi")` 114 shl \$4,`&LB("$nlo")` 126 and \$0xf0,`&LB("$nhi")` 141 and \$0xf0,`&LB("$nhi")` [all …]
|
| H A D | ghash-x86.pl | 154 &mov (&LB($rem),&LB($Zll)); 156 &and (&LB($rem),0xf); 162 &mov (&LB($rem),&BP($off,"esp",$cnt)); 164 &and (&LB($rem),0xf0); 166 &shl (&LB($rem),4); 185 &mov (&LB($rem),&LB($Zll)); 187 &and (&LB($rem),0xf); 194 &mov (&LB($rem),&BP($off+15-($i>>1),"esp")); 195 &and (&LB($rem),0xf0); 197 &mov (&LB($rem),&BP($off+15-($i>>1),"esp")); [all …]
|
| /openbsd-src/lib/libcrypto/ |
| H A D | x86cpuid.pl | |
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/ |
| H A D | p3068.C | 6 class LB { 9 virtual ~LB() { } in ~LB() 11 LB() { } in LB() function 39 class L : public LB {
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/ |
| H A D | typename26.C | 9 template<class LB> struct C 11 typename LB::DataType; // ERROR - does not declare anything 12 typename LB::DataType m;
|
| /openbsd-src/gnu/llvm/clang/lib/Headers/ |
| H A D | smmintrin.h | 1720 #define _mm_cmpestrm(A, LA, B, LB, M) \ argument 1722 (__v16qi)(__m128i)(B), (int)(LB), \ 1779 #define _mm_cmpestri(A, LA, B, LB, M) \ argument 1781 (__v16qi)(__m128i)(B), (int)(LB), \ 2082 #define _mm_cmpestra(A, LA, B, LB, M) \ argument 2084 (__v16qi)(__m128i)(B), (int)(LB), \ 2136 #define _mm_cmpestrc(A, LA, B, LB, M) \ argument 2138 (__v16qi)(__m128i)(B), (int)(LB), \ 2189 #define _mm_cmpestro(A, LA, B, LB, M) \ argument 2191 (__v16qi)(__m128i)(B), (int)(LB), \ [all …]
|
| /openbsd-src/gnu/gcc/libgomp/testsuite/libgomp.fortran/appendix-a/ |
| H A D | a.21.1.f90 | 8 SUBROUTINE SUBA21(LB, UB, STRIDE) argument 9 INTEGER LB, UB, STRIDE local 12 DO I=LB,UB,STRIDE
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | SpillPlacement.cpp | 261 for (const BlockConstraint &LB : LiveBlocks) { in addConstraints() local 262 BlockFrequency Freq = BlockFrequencies[LB.Number]; in addConstraints() 265 if (LB.Entry != DontCare) { in addConstraints() 266 unsigned ib = bundles->getBundle(LB.Number, false); in addConstraints() 268 nodes[ib].addBias(Freq, LB.Entry); in addConstraints() 272 if (LB.Exit != DontCare) { in addConstraints() 273 unsigned ob = bundles->getBundle(LB.Number, true); in addConstraints() 275 nodes[ob].addBias(Freq, LB.Exit); in addConstraints()
|
| H A D | MachineLoopInfo.cpp | 126 MachineBasicBlock *HB = L->getHeader(), *LB = L->getLoopLatch(); in findLoopPreheader() local 132 if (P == LB) in findLoopPreheader()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | BranchProbabilityInfo.h | 299 bool belongsToSameLoop(const LoopBlock &LB) const { in belongsToSameLoop() argument 300 return (LB.getLoop() && getLoop() == LB.getLoop()) || in belongsToSameLoop() 301 (LB.getSccNum() != -1 && getSccNum() == LB.getSccNum()); in belongsToSameLoop() 354 void getLoopEnterBlocks(const LoopBlock &LB, 357 void getLoopExitBlocks(const LoopBlock &LB,
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFTypePrinter.cpp | 22 std::optional<uint64_t> LB; in appendArrayType() local 27 LB = L->getAsUnsignedConstant(); in appendArrayType() 37 if (LB && *LB == *DefaultLB) in appendArrayType() 38 LB = std::nullopt; in appendArrayType() 39 if (!LB && !Count && !UB) in appendArrayType() 41 else if (!LB && (Count || UB) && DefaultLB) in appendArrayType() 45 if (LB) in appendArrayType() 46 OS << *LB; in appendArrayType() 51 if (LB) in appendArrayType() 52 OS << *LB + *Count; in appendArrayType()
|
| /openbsd-src/regress/usr.bin/mandoc/mdoc/Lb/ |
| H A D | badargs.out_ascii | 1 LB-BADARGS(3) Library Functions Manual LB-BADARGS(3)
|
| H A D | eos.out_ascii | 1 LB-EOS(1) General Commands Manual LB-EOS(1)
|
| H A D | break.out_ascii | 1 LB-BREAK(3) Library Functions Manual LB-BREAK(3)
|
| /openbsd-src/lib/libcrypto/sha/asm/ |
| H A D | sha512-586.pl | 132 &mov (&LB("edx"),&BP(0,$K512)); 258 &mov (&LB("edx"),&BP(0,$K512)); # pre-fetch LSB of *K 331 &cmp (&LB("edx"),0x35); 377 &cmp (&LB("edx"),0x17); 445 &cmp (&LB("edx"),0x94); 533 &cmp (&LB("edx"),0x17);
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | DebugInfoMetadata.cpp | 280 if (auto *LB = dyn_cast<DILexicalBlockBase>(this)) in getScope() local 281 return LB->getScope(); in getScope() 387 auto *LB = ConstantAsMetadata::get( in getImpl() local 389 return getImpl(Context, CountNode, LB, nullptr, nullptr, Storage, in getImpl() 396 auto *LB = ConstantAsMetadata::get( in getImpl() local 398 return getImpl(Context, CountNode, LB, nullptr, nullptr, Storage, in getImpl() 403 Metadata *LB, Metadata *UB, Metadata *Stride, in getImpl() argument 405 DEFINE_GETIMPL_LOOKUP(DISubrange, (CountNode, LB, UB, Stride)); in getImpl() 406 Metadata *Ops[] = {CountNode, LB, UB, Stride}; in getImpl() 432 Metadata *LB = getRawLowerBound(); in getLowerBound() local [all …]
|
| /openbsd-src/lib/libcrypto/perlasm/ |
| H A D | cbc.pl | 174 &movb(&LB("edx"), &BP(4,$in,"",0)); 184 &movb(&LB("ecx"), &BP(0,$in,"",0)); 291 &movb(&BP(6,$out,"",0), &LB("edx")); 294 &movb(&BP(4,$out,"",0), &LB("edx"));
|
| H A D | x86asm.pl | 43 sub ::LB 60 &xchg(&HB(@_),&LB(@_)); 62 &xchg(&HB(@_),&LB(@_));
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | StmtOpenMP.cpp | 351 Dir->setLowerBoundVariable(Exprs.LB); in Create() 466 Dir->setLowerBoundVariable(Exprs.LB); in Create() 596 Dir->setLowerBoundVariable(Exprs.LB); in Create() 641 Dir->setLowerBoundVariable(Exprs.LB); in Create() 973 Dir->setLowerBoundVariable(Exprs.LB); in Create() 1077 Dir->setLowerBoundVariable(Exprs.LB); in Create() 1122 Dir->setLowerBoundVariable(Exprs.LB); in Create() 1165 Dir->setLowerBoundVariable(Exprs.LB); in Create() 1210 Dir->setLowerBoundVariable(Exprs.LB); in Create() 1255 Dir->setLowerBoundVariable(Exprs.LB); in Create() [all …]
|
| /openbsd-src/lib/libcrypto/aes/asm/ |
| H A D | aes-586.pl | 304 &movz ($v0,&LB($s0)); # 3, 2, 1, 0* 317 &movz ($v0,&LB($s1)); # 7, 6, 5, 4* 320 &movz ($v0,&LB($s3)); # 13,12,15,14* 325 &movz ($v0,&LB($s2)); # 8,11,10, 9* 330 &movz ($v0,&LB($s0)); # 1, 0, 3, 2* 341 &movz ($v0,&LB($s2)); # -, -, 8,11* 346 &movz ($v0,&LB($s3)); # 13,12, 7, 6* 360 &movz ($acc,&LB("eax")); # 0 367 &movz ($acc,&LB("ebx")); # 10 381 &movz ($acc,&LB("eax")); # 4 [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | BranchProbabilityInfo.cpp | 355 const LoopBlock &LB, SmallVectorImpl<BasicBlock *> &Enters) const { in getLoopEnterBlocks() argument 356 if (LB.getLoop()) { in getLoopEnterBlocks() 357 auto *Header = LB.getLoop()->getHeader(); in getLoopEnterBlocks() 360 assert(LB.getSccNum() != -1 && "LB doesn't belong to any loop?"); in getLoopEnterBlocks() 361 SccI->getSccEnterBlocks(LB.getSccNum(), Enters); in getLoopEnterBlocks() 366 const LoopBlock &LB, SmallVectorImpl<BasicBlock *> &Exits) const { in getLoopExitBlocks() argument 367 if (LB.getLoop()) { in getLoopExitBlocks() 368 LB.getLoop()->getExitBlocks(Exits); in getLoopExitBlocks() 370 assert(LB.getSccNum() != -1 && "LB doesn't belong to any loop?"); in getLoopExitBlocks() 371 SccI->getSccExitBlocks(LB.getSccNum(), Exits); in getLoopExitBlocks()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/mips/ |
| H A D | t-vr | 65 mgp32* E[LB]/mgp32* \ 66 mlong64* E[LB]/mlong64* \
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| H A D | HexagonBitSimplify.cpp | 1286 unsigned LB, LE; in computeUsedBits() local 1287 if (isLossyShiftLeft(MI, OpN, LB, LE) || isLossyShiftRight(MI, OpN, LB, LE)) { in computeUsedBits() 1295 assert(LB <= LE && LB < Width && LE <= Width); in computeUsedBits() 1296 T.reset(Begin+LB, Begin+LE); in computeUsedBits() 2942 MachineBasicBlock *eb) : LB(lb), PB(pb), EB(eb) {} in LoopCand() 2944 MachineBasicBlock *LB, *PB, *EB; member 2956 MachineBasicBlock *LB, *PB; // Loop Block, Preheader Block member 2966 void moveGroup(InstrGroup &G, MachineBasicBlock &LB, MachineBasicBlock &PB, 2981 LB = &B; in PhiInfo() 3101 void HexagonLoopRescheduling::moveGroup(InstrGroup &G, MachineBasicBlock &LB, in moveGroup() argument [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.h | 908 llvm::Value *LB = nullptr; member 915 DispatchRTInput(llvm::Value *LB, llvm::Value *UB, llvm::Value *Chunk) in DispatchRTInput() 916 : LB(LB), UB(UB), Chunk(Chunk) {} in DispatchRTInput() 956 Address LB = Address::invalid(); 967 Address LB, Address UB, Address ST, 969 : IVSize(IVSize), IVSigned(IVSigned), Ordered(Ordered), IL(IL), LB(LB), in IVSize() 1041 Address IL, Address LB, 1887 Address LB, Address UB, Address ST) override;
|