Home
last modified time | relevance | path

Searched full:cn1 (Results 1 – 12 of 12) sorted by relevance

/freebsd/crypto/krb5/src/lib/crypto/builtin/camellia/
H A Dcamellia-gen.c172 unsigned char pn1[B], pn[B], cn[B], cn1[B]; in cts_enc() local
197 r = camellia_enc_blk (pn, cn1, &ctx); in cts_enc()
199 D(cn1); in cts_enc()
200 memcpy(out, cn1, B); in cts_enc()
210 unsigned char pn1[B], pn[B], cn[B], cn1[B]; in cts_dec() local
223 memcpy (cn1, in, B); in cts_dec()
224 r = camellia_dec_blk (cn1, pn, &dctx); in cts_dec()
/freebsd/crypto/krb5/src/lib/crypto/builtin/aes/
H A Daes-gen.c192 unsigned char pn1[B], pn[B], cn[B], cn1[B]; in cts_enc() local
217 r = aes_encrypt(pn, cn1, &ctx); in cts_enc()
219 D(cn1); in cts_enc()
220 memcpy(out, cn1, B); in cts_enc()
230 unsigned char pn1[B], pn[B], cn[B], cn1[B]; in cts_dec() local
243 memcpy (cn1, in, B); in cts_dec()
244 r = aes_decrypt(cn1, pn, &dctx); in cts_dec()
/freebsd/sys/contrib/device-tree/src/arm64/allwinner/
H A Dsun50i-h5-orangepi-zero-plus2.dts132 * According to schematics CN1 MicroUSB port can be used to take
133 * external 5V to power up the board VBUS. On the contrary CN1 MicroUSB
/freebsd/sys/contrib/device-tree/src/arm/allwinner/
H A Dsun8i-h3-orangepi-zero-plus2.dts166 * According to schematics CN1 MicroUSB port can be used to take
167 * external 5V to power up the board VBUS. On the contrary CN1 MicroUSB
/freebsd/sys/contrib/device-tree/src/arm/renesas/
H A Dr7s72100-rskrza1.dts232 /* SDHI ch1 on CN1 */
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.cpp3236 ConstantSDNode *CN0, *CN1; in performORCombine() local
3259 (CN1 = dyn_cast<ConstantSDNode>(N1.getOperand(1))) && in performORCombine()
3260 isShiftedMask_64(CN1->getZExtValue(), MaskIdx1, MaskLen1) && in performORCombine()
3262 (CN1 = dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(1))) && in performORCombine()
3263 (Shamt = CN1->getZExtValue()) == MaskIdx0 && in performORCombine()
3281 (CN1 = dyn_cast<ConstantSDNode>(N1.getOperand(1))) && in performORCombine()
3282 (Shamt = CN1->getZExtValue()) == MaskIdx0 && in performORCombine()
3283 (CN1 = dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(1))) && in performORCombine()
3284 isShiftedMask_64(CN1->getZExtValue(), MaskIdx1, MaskLen1) && in performORCombine()
3304 (CN1 = dyn_cast<ConstantSDNode>(N1->getOperand(1))) && in performORCombine()
[all …]
/freebsd/contrib/ofed/opensm/man/
H A Dopensm.81337 configuration CN1-CN3 might send all I/O traffic via Link2 to IO1,IO2:
1339 CN1 Link1 IO1
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp888 ConstantSDNode *CN, *CN1; in performORCombine() local
939 if (!(CN1 = dyn_cast<ConstantSDNode>(And1->getOperand(1)))) in performORCombine()
942 if (!(CN1 = dyn_cast<ConstantSDNode>(N->getOperand(1)))) in performORCombine()
947 if (CN->getSExtValue() & CN1->getSExtValue()) in performORCombine()
961 ? DAG.getConstant(CN1->getSExtValue() >> SMPos0, DL, ValTy) in performORCombine()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp11315 const ConstantSDNode *CN1 = dyn_cast<ConstantSDNode>(N1); in performSHLPtrCombine() local
11316 if (!CN1) in performSHLPtrCombine()
11331 APInt Offset = CAdd->getAPIntValue() << CN1->getAPIntValue(); in performSHLPtrCombine()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp17800 ConstantSDNode *CN1 = dyn_cast<ConstantSDNode>(N->getOperand(1)); in combineSHL() local
17803 N0.getOperand(0).getValueType() != MVT::i32 || CN1 == nullptr || in combineSHL()
17815 SDValue ShiftBy = SDValue(CN1, 0); in combineSHL()
17819 ShiftBy = DCI.DAG.getConstant(CN1->getZExtValue(), DL, MVT::i32); in combineSHL()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp26562 SDValue CN1 = N1.getOperand(0); in visitINSERT_SUBVECTOR() local
26564 EVT CN1VT = CN1.getValueType(); in visitINSERT_SUBVECTOR()
26569 CN0.getValueType(), CN0, CN1, N2); in visitINSERT_SUBVECTOR()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp18735 ConstantSDNode *CN1 = dyn_cast<ConstantSDNode>(BVN1->getOperand(k)); in tryCombineToBSL() local
18736 if (!CN0 || !CN1 || in tryCombineToBSL()
18737 CN0->getZExtValue() != (BitMask & ~CN1->getZExtValue())) { in tryCombineToBSL()