Home
last modified time | relevance | path

Searched refs:mask1 (Results 1 – 16 of 16) sorted by relevance

/freebsd/crypto/openssl/crypto/des/
H A Dofb_enc.c29 register DES_LONG mask0, mask1; in DES_ofb_encrypt() local
40 mask1 = mask0; in DES_ofb_encrypt()
42 mask1 = (1L << (num - 32)) - 1; in DES_ofb_encrypt()
48 mask1 = 0x00000000L; in DES_ofb_encrypt()
65 d1 = (d1 ^ vv1) & mask1; in DES_ofb_encrypt()
/freebsd/contrib/bearssl/src/int/
H A Di62_modpow2.c381 uint64_t mask1, mask2; in br_i62_modpow_opt() local
435 mask1 = -(uint64_t)EQ(bits, 0); in br_i62_modpow_opt()
436 mask2 = ~mask1; in br_i62_modpow_opt()
438 x[u] = (mask1 & x[u]) | (mask2 & t1[u]); in br_i62_modpow_opt()
/freebsd/crypto/openssl/crypto/ec/
H A Decp_nistz256.c180 BN_ULONG mask1 = 0-move; in copy_conditional() local
181 BN_ULONG mask2 = ~mask1; in copy_conditional()
183 dst[0] = (src[0] & mask1) ^ (dst[0] & mask2); in copy_conditional()
184 dst[1] = (src[1] & mask1) ^ (dst[1] & mask2); in copy_conditional()
185 dst[2] = (src[2] & mask1) ^ (dst[2] & mask2); in copy_conditional()
186 dst[3] = (src[3] & mask1) ^ (dst[3] & mask2); in copy_conditional()
188 dst[4] = (src[4] & mask1) ^ (dst[4] & mask2); in copy_conditional()
189 dst[5] = (src[5] & mask1) ^ (dst[5] & mask2); in copy_conditional()
190 dst[6] = (src[6] & mask1) ^ (dst[6] & mask2); in copy_conditional()
191 dst[7] = (src[7] & mask1) ^ (dst[7] & mask2); in copy_conditional()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_neon_incl.td136 // from the two special defs "mask0" and "mask1". "mask0" expands to
137 // the lane indices in sequence for ARG0, and "mask1" expands to
141 // (shuffle $p0, $p1, mask1) -> $p1
146 // example: (shuffle $p0, $p1, (add (highhalf mask0), (highhalf mask1))) ->
176 def mask1 : MaskExpand;
H A Darm_neon.td88 (decimate mask1, 2)))>;
89 def OP_ZIP1 : Op<(shuffle $p0, $p1, (lowhalf (interleave mask0, mask1)))>;
91 (decimate mask1, 2)))>;
94 (decimate (rotl mask1, 1), 2)))>;
95 def OP_ZIP2 : Op<(shuffle $p0, $p1, (highhalf (interleave mask0, mask1)))>;
97 (decimate (rotl mask1, 1), 2)))>;
114 def OP_CONC : Op<(shuffle $p0, $p1, (add mask0, mask1))>;
/freebsd/sys/contrib/ncsw/Peripherals/FM/MAC/
H A Dmemac.c59 uint64_t mask1, mask2; in GetMacAddrHashCode() local
65 mask1 = ethAddr & (uint64_t)0x01; in GetMacAddrHashCode()
71 mask1 ^= mask2; in GetMacAddrHashCode()
75 xorVal |= (mask1 << (5-i)); in GetMacAddrHashCode()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetRegisterInfo.cpp485 const uint32_t *mask1) const { in regmaskSubsetEqual()
488 if ((mask0[I] & mask1[I]) != mask0[I]) in regmaskSubsetEqual()
/freebsd/sys/dev/mlx5/
H A Dfs.h387 void *mask1,
/freebsd/contrib/wireguard-tools/
H A Dcurve25519-hacl64.h697 u64 mask1 = u64_eq_mask(a1, 0x7ffffffffffffLLU); in format_fcontract_trim() local
701 u64 mask = (((mask0 & mask1) & mask2) & mask3) & mask4; in format_fcontract_trim()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetRegisterInfo.h538 bool regmaskSubsetEqual(const uint32_t *mask0, const uint32_t *mask1) const;
/freebsd/contrib/bearssl/test/
H A Dtest_crypto.c6787 unsigned mask1, mask2; in test_RSA_keygen() local
6848 mask1 = 0x01 << ((size + 7) & 7); in test_RSA_keygen()
6849 mask2 = 0xFF & -mask1; in test_RSA_keygen()
6850 if ((pk.n[0] & mask2) != mask1) { in test_RSA_keygen()
/freebsd/sys/dev/cxgbe/common/
H A Dcommon.h776 u64 mask0, u64 mask1, unsigned int crc, bool enable);
H A Dt4_hw.c7052 u64 mask0, u64 mask1, unsigned int crc, bool enable) in t4_wol_pat_enable() argument
7074 t4_write_reg(adap, EPIO_REG(DATA2), mask1); in t4_wol_pat_enable()
7075 t4_write_reg(adap, EPIO_REG(DATA3), mask1 >> 32); in t4_wol_pat_enable()
/freebsd/sys/dev/mlx5/mlx5_core/
H A Dmlx5_fs_tree.c
/freebsd/sys/dev/bxe/
H A Dbxe.c8009 uint32_t val0, mask0, val1, mask1; in bxe_attn_int_deasserted2() local
8049 mask1 = REG_RD(sc, PXP2_REG_PXP2_INT_MASK_1); in bxe_attn_int_deasserted2()
8060 !(val1 & mask1)) in bxe_attn_int_deasserted2()
8079 ((val1 & mask1) == 0)) in bxe_attn_int_deasserted2()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c186499 #define GETVARINT_STEP(v, ptr, shift, mask1, mask2, var, ret) \
186500 v = (v & mask1) | ( (*(const unsigned char*)(ptr++)) << shift ); \
186502 #define GETVARINT_INIT(v, ptr, shift, mask1, mask2, var, ret) \
204697 unsigned int mask1 = 0x000361F8;
204701 (mask1 & ((unsigned int)1 << (c-768-32)));
255504 unsigned int mask1 = 0x000361F8;
255508 (mask1 & ((unsigned int)1 << (c-768-32)));