Home
last modified time | relevance | path

Searched refs:L1 (Results 1 – 25 of 108) sorted by relevance

12345

/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDLinkage.h96 inline Linkage minLinkage(Linkage L1, Linkage L2) { in minLinkage() argument
98 std::swap(L1, L2); in minLinkage()
99 if (L1 == VisibleNoLinkage) { in minLinkage()
105 return L1 < L2 ? L1 : L2; in minLinkage()
/NextBSD/crypto/openssl/crypto/whrlpool/
HDwp_block.c513 u64 L0, L1, L2, L3, L4, L5, L6, L7; in whirlpool_block()
544 L1 = C0(K, 1) ^ C1(K, 0) ^ C2(K, 7) ^ C3(K, 6) ^ in whirlpool_block()
560 K.q[1] = L1; in whirlpool_block()
570 L1 ^= C0(S, 1) ^ C1(S, 0) ^ C2(S, 7) ^ C3(S, 6) ^ in whirlpool_block()
586 S.q[1] = L1; in whirlpool_block()
595 L1 = C1(K, 0); in whirlpool_block()
604 L1 ^= C0(K, 1); in whirlpool_block()
620 L1 ^= C7(K, 2); in whirlpool_block()
628 L1 ^= C6(K, 3); in whirlpool_block()
636 L1 ^= C5(K, 4); in whirlpool_block()
[all …]
/NextBSD/contrib/llvm/lib/Target/AArch64/
HDAArch64CollectLOH.cpp609 const MachineInstr *L1 = Entry.first; in computeADRP() local
610 if (!MDT->dominates(L2, L1)) { in computeADRP()
611 DEBUG(dbgs() << "Dominance check failed:\n" << *L2 << '\n' << *L1 in computeADRP()
615 DEBUG(dbgs() << "Record AdrpAdrp:\n" << *L2 << '\n' << *L1 << '\n'); in computeADRP()
618 Args.push_back(L1); in computeADRP()
821 const MachineInstr *L1 = Def; in computeOthers() local
849 L1 = Def; in computeOthers()
899 DEBUG(dbgs() << "Record AdrpLdr:\n" << *L1 << '\n' << *Candidate in computeOthers()
902 Args.push_back(L1); in computeOthers()
904 assert((!InvolvedInLOHs || InvolvedInLOHs->insert(L1)) && in computeOthers()
[all …]
/NextBSD/contrib/llvm/include/llvm/ADT/
HDEquivalenceClasses.h220 member_iterator unionSets(member_iterator L1, member_iterator L2) { in unionSets() argument
221 assert(L1 != member_end() && L2 != member_end() && "Illegal inputs!"); in unionSets()
222 if (L1 == L2) return L1; // Unifying the same two sets, noop. in unionSets()
226 const ECValue &L1LV = *L1.Node, &L2LV = *L2.Node; in unionSets()
237 return L1; in unionSets()
/NextBSD/sys/dev/ath/ath_hal/ar5212/
HDar5212_rfgain.c126 uint32_t L1, L2, L3, L4; in ar5212InvalidGainReadback() local
130 L1 = 0; in ar5212InvalidGainReadback()
142 L1 = 0; in ar5212InvalidGainReadback()
144 L3 = (gStep != 0x3f) ? 0x40 : L1; in ar5212InvalidGainReadback()
147 gv->loTrig = L1 + (gStep == 0x3f ? DYN_ADJ_LO_MARGIN : 0); in ar5212InvalidGainReadback()
153 return !((g >= L1 && g<= L2) || (g >= L3 && g <= L4)); in ar5212InvalidGainReadback()
/NextBSD/sys/boot/fdt/dts/arm/
HDannapurna-alpine.dts51 d-cache-size = <0x8000>; // L1, 32K
52 i-cache-size = <0x8000>; // L1, 32K
64 d-cache-size = <0x8000>; // L1, 32K
65 i-cache-size = <0x8000>; // L1, 32K
77 d-cache-size = <0x8000>; // L1, 32K
78 i-cache-size = <0x8000>; // L1, 32K
90 d-cache-size = <0x8000>; // L1, 32K
91 i-cache-size = <0x8000>; // L1, 32K
/NextBSD/lib/libc/i386/string/
HDffs.S47 jz L1 /* ZF is set if all bits are 0 */
52 L1: xorl %eax,%eax /* clear result */ label
HDmemchr.S51 jnz L1 /* scan failed, return null */
56 L1: xorl %eax,%eax label
HDstrchr.S53 L1: label
59 jne L1
HDstrrchr.S54 L1: label
62 jne L1
HDbcmp.S52 jne L1
58 L1: label
HDbzero.S57 jle L1
76 L1: rep label
HDmemset.S59 jle L1
83 L1: rep label
HDwcslen.S41 L1: cmpl %ebx,(%ecx) label
59 jmp L1
HDwcschr.S41 L1: movl (%ecx),%ebx label
62 jmp L1
HDstrcpy.S54 L1: movb (%edx),%al /* unroll loop, but not too much */ label
87 jne L1
HDswab.S60 L1: lodsw label
65 jnz L1
/NextBSD/lib/libc/amd64/string/
HDbcmp.S15 jne L1
21 L1: label
HDbzero.S24 jb L1
39 L1: movq %rsi,%rcx /* zero remainder by bytes */ label
HDmemset.S28 jle L1
56 L1: rep label
/NextBSD/lib/msun/ld80/
HDk_expl.h52 L1 = 5.4152123484527692e-3, /* 0x162e42ff000000.0p-60 */ variable
228 r = x - fn * L1 - fn * L2; /* r = r1 + r2 done independently. */ in __k_expl()
239 r1 = x - fn * L1; in __k_expl()
/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDMergedLoadStoreMotion.cpp331 LoadInst *L1) { in hoistLoad() argument
334 Instruction *A1 = dyn_cast<Instruction>(L1->getPointerOperand()); in hoistLoad()
337 A1->hasOneUse() && (A1->getParent() == L1->getParent()) && in hoistLoad()
341 dbgs() << "Instruction Right\n"; L1->dump(); dbgs() << "\n"); in hoistLoad()
343 hoistInstruction(BB, L0, L1); in hoistLoad()
378 if (LoadInst *L1 = canHoistFromBlock(Succ1, L0)) { in mergeLoads() local
379 bool Res = hoistLoad(BB, L0, L1); in mergeLoads()
/NextBSD/sys/boot/arm/ixp425/boot2/
HDarm_init.S36 .L1: label
39 bgt .L1
/NextBSD/lib/libc/arm/sys/
HDsbrk.S56 GOT_INIT(r3, .Lgot, .L1)
77 GOT_INITSYM(.Lgot, .L1)
HDbrk.S57 GOT_INIT(r3, .Lgot, .L1)
88 GOT_INITSYM(.Lgot, .L1)

12345