| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| D | AMDGPURegBankCombiner.cpp | 62 Register &Val, Register &K0, Register &K1); 90 Register &K0, Register &K1) { in matchMed() argument 102 m_Cst(K1)), in matchMed() 104 MMMOpc.Max, m_CommutativeBinOp(MMMOpc.Min, m_Reg(Val), m_Cst(K1)), in matchMed() 118 Register Val, K0, K1; in matchIntMinMaxToMed3() local 120 if (!matchMed<ICstRegMatch>(MI, MRI, OpcodeTriple, Val, K0, K1)) in matchIntMinMaxToMed3() 124 const APInt &K1_Imm = getConstantIntVRegVal(K1, MRI)->getValue(); in matchIntMinMaxToMed3() 130 MatchInfo = {OpcodeTriple.Med, Val, K0, K1}; in matchIntMinMaxToMed3()
|
| D | SIISelLowering.cpp | 8418 const SDValue K1 = DAG.getConstantFP(K1Val, SL, MVT::f32); in lowerFDIV_FAST() local 8427 SDValue r3 = DAG.getNode(ISD::SELECT, SL, MVT::f32, r2, K1, One); in lowerFDIV_FAST() 9823 ConstantSDNode *K1 = dyn_cast<ConstantSDNode>(Op1); in performIntMed3ImmCombine() local 9824 if (!K1) in performIntMed3ImmCombine() 9832 if (K0->getAPIntValue().sge(K1->getAPIntValue())) in performIntMed3ImmCombine() 9835 if (K0->getAPIntValue().uge(K1->getAPIntValue())) in performIntMed3ImmCombine() 9843 Op0.getOperand(0), SDValue(K0, 0), SDValue(K1, 0)); in performIntMed3ImmCombine() 9878 ConstantFPSDNode *K1 = getSplatConstantFP(Op1); in performFPMed3ImmCombine() local 9879 if (!K1) in performFPMed3ImmCombine() 9887 if (K0->getValueAPF() > K1->getValueAPF()) in performFPMed3ImmCombine() [all …]
|
| D | AMDGPULegalizerInfo.cpp | 2127 MachineInstrBuilder K0, K1; in legalizeFPTOI() local 2131 K1 = B.buildFConstant(S64, in legalizeFPTOI() 2135 K1 = B.buildFConstant(S32, BitsToFloat(UINT32_C(/*-2^32*/ 0xcf800000))); in legalizeFPTOI() 2140 auto Fma = B.buildFMA(SrcLT, FloorMul, K1, Trunc, Flags); in legalizeFPTOI()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Format/ |
| D | FormatToken.h | 464 template <typename A, typename B> bool isOneOf(A K1, B K2) const { in isOneOf() 465 return is(K1) || is(K2); in isOneOf() 468 bool isOneOf(A K1, B K2, Ts... Ks) const { in isOneOf() 469 return is(K1) || isOneOf(K2, Ks...); in isOneOf() 489 bool startsSequence(A K1, Ts... Tokens) const { in startsSequence() 490 return startsSequenceInternal(K1, Tokens...); in startsSequence() 500 bool endsSequence(A K1, Ts... Tokens) const { in endsSequence() 501 return endsSequenceInternal(K1, Tokens...); in endsSequence() 714 bool startsSequenceInternal(A K1, Ts... Tokens) const { in startsSequenceInternal() 716 return Next->startsSequenceInternal(K1, Tokens...); in startsSequenceInternal() [all …]
|
| /freebsd-12-stable/sys/opencrypto/ |
| D | rmd160.c | 63 #define K1 0x5A827999U macro 199 R(e, a, b, c, d, F1, K1, 7, 7); in RMD160Transform() 200 R(d, e, a, b, c, F1, K1, 6, 4); in RMD160Transform() 201 R(c, d, e, a, b, F1, K1, 8, 13); in RMD160Transform() 202 R(b, c, d, e, a, F1, K1, 13, 1); in RMD160Transform() 203 R(a, b, c, d, e, F1, K1, 11, 10); in RMD160Transform() 204 R(e, a, b, c, d, F1, K1, 9, 6); in RMD160Transform() 205 R(d, e, a, b, c, F1, K1, 7, 15); in RMD160Transform() 206 R(c, d, e, a, b, F1, K1, 15, 3); in RMD160Transform() 207 R(b, c, d, e, a, F1, K1, 7, 12); in RMD160Transform() [all …]
|
| /freebsd-12-stable/contrib/bearssl/src/hash/ |
| D | sha1.c | 34 #define K1 ((uint32_t)0x5A827999) macro 64 e += ROTL(a, 5) + F(b, c, d) + K1 + m[i + 0]; b = ROTL(b, 30); in br_sha1_round() 65 d += ROTL(e, 5) + F(a, b, c) + K1 + m[i + 1]; a = ROTL(a, 30); in br_sha1_round() 66 c += ROTL(d, 5) + F(e, a, b) + K1 + m[i + 2]; e = ROTL(e, 30); in br_sha1_round() 67 b += ROTL(c, 5) + F(d, e, a) + K1 + m[i + 3]; d = ROTL(d, 30); in br_sha1_round() 68 a += ROTL(b, 5) + F(c, d, e) + K1 + m[i + 4]; c = ROTL(c, 30); in br_sha1_round()
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Lex/ |
| D | Token.h | 99 bool isOneOf(tok::TokenKind K1, tok::TokenKind K2) const { in isOneOf() argument 100 return is(K1) || is(K2); in isOneOf() 103 bool isOneOf(tok::TokenKind K1, tok::TokenKind K2, Ts... Ks) const { in isOneOf() argument 104 return is(K1) || isOneOf(K2, Ks...); in isOneOf()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/ |
| D | MipsSEFrameLowering.cpp | 612 BuildMI(MBB, MBBI, DL, STI.getInstrInfo()->get(Mips::MFC0), Mips::K1) in emitInterruptPrologueStub() 617 STI.getInstrInfo()->storeRegToStack(MBB, MBBI, Mips::K1, false, in emitInterruptPrologueStub() 623 BuildMI(MBB, MBBI, DL, STI.getInstrInfo()->get(Mips::MFC0), Mips::K1) in emitInterruptPrologueStub() 628 STI.getInstrInfo()->storeRegToStack(MBB, MBBI, Mips::K1, false, in emitInterruptPrologueStub() 657 BuildMI(MBB, MBBI, DL, STI.getInstrInfo()->get(Mips::INS), Mips::K1) in emitInterruptPrologueStub() 661 .addReg(Mips::K1) in emitInterruptPrologueStub() 665 BuildMI(MBB, MBBI, DL, STI.getInstrInfo()->get(Mips::INS), Mips::K1) in emitInterruptPrologueStub() 669 .addReg(Mips::K1) in emitInterruptPrologueStub() 674 BuildMI(MBB, MBBI, DL, STI.getInstrInfo()->get(Mips::INS), Mips::K1) in emitInterruptPrologueStub() 678 .addReg(Mips::K1) in emitInterruptPrologueStub() [all …]
|
| D | MipsRegisterInfo.td | 114 def K1 : MipsGPRReg< 27, "27">, DwarfRegNum<[27]>; 148 def K1_64 : Mips64GPRReg< 27, "27", [K1]>, DwarfRegNum<[27]>; 294 K0, K1, GP, SP, FP, RA)>; 314 K0, K1, GP, SP, FP, RA)>;
|
| D | MipsRegisterInfo.cpp | 152 Mips::ZERO, Mips::K0, Mips::K1, Mips::SP in getReservedRegs()
|
| D | MicroMipsSizeReduction.cpp | 383 Mips::S6, Mips::S7, Mips::T8, Mips::T9, Mips::K0, Mips::K1, Mips::GP, in ConsecutiveRegisters()
|
| /freebsd-12-stable/sys/gnu/dts/arm/ |
| D | zynq-zturn.dts | 53 K1 { 54 label = "K1";
|
| D | s3c6410-mini6410.dts | 76 label = "K1";
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/ |
| D | xxhash.cpp | 109 uint64_t const K1 = round(0, endian::read64le(P)); in xxHash64() local 110 H64 ^= K1; in xxHash64()
|
| /freebsd-12-stable/sys/mips/include/ |
| D | regnum.h | 94 #define K1 27 macro
|
| /freebsd-12-stable/release/picobsd/mfs_tree/etc/ |
| D | termcap | 67 :K1=\EOq:K2=\EOr:K3=\EOs:K4=\EOp:K5=\EOn:pt:sr=2*\EM:vt#3:xn:\ 113 :K1=\E[H:K2=\E[I:K3=\E[E:K4=\E[F:K5=\E[G:\
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/ |
| D | X86DisassemblerDecoder.h | 319 ENTRY(K1) \
|
| /freebsd-12-stable/sys/dev/fe/ |
| D | if_fe.c | 556 #define LNX_CYCLE(D1,D2,D3,D4,K1,K2,K3,K4) \ argument 557 (LNX_PH(D1,K1,0)|LNX_PH(D2,K2,8)|LNX_PH(D3,K3,16)|LNX_PH(D4,K4,24))
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/ |
| D | X86Operand.h | 555 case X86::K1: in addMaskPairOperands()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/ |
| D | X86RegisterInfo.td | 283 def K1 : X86Reg<"k1", 1>, DwarfRegNum<[119, 94, 94]>; 619 [(add K0, K2, K4, K6), (add K1, K3, K5, K7)]>;
|
| /freebsd-12-stable/contrib/binutils/opcodes/ |
| D | ia64-ic.tbl | 87 mov-from-AR-K; IC:mov-from-AR-M[Field(ar3) in {K0 K1 K2 K3 K4 K5 K6 K7}] 155 mov-to-AR-K; IC:mov-to-AR-M[Field(ar3) in {K0 K1 K2 K3 K4 K5 K6 K7}]
|
| /freebsd-12-stable/contrib/file/magic/Magdir/ |
| D | sysex | 223 >>3 byte 0x20 K1
|
| /freebsd-12-stable/etc/ |
| D | termcap.small | 242 :K1=\EOq:K2=\EOr:K3=\EOs:K4=\EOp:K5=\EOn:pt:sr=2*\EM:xn:\
|
| /freebsd-12-stable/contrib/sendmail/contrib/ |
| D | mail.local.linux | 153 M+KM_<T`?@K/GU!`YD]7Z`F1`4K1#[4`,2=-%!!9TK/O%0T)'!;BA-TP`%]$R
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
| D | X86MCTargetDesc.cpp | 259 {codeview::RegisterId::AMD64_K1, X86::K1}, in initLLVMToSEHAndCVRegMapping()
|