| /f-stack/freebsd/crypto/des/ |
| H A D | des_locl.h | 149 u1=(int)u&0xfc; \ 156 u1=(int)u&0xfc; \ 161 u1=(int)t&0xfc; \ 167 u1=(int)t&0xfc; \ 177 u1=(int)u&0xfc; \ 235 u1=(int)u&0x3f; \ 241 u1=(int)u&0x3f; \ 246 u1=(int)t&0x3f; \ 252 u1=(int)t&0x3f; \ 264 u1=(int)u&0x3f; \ [all …]
|
| /f-stack/freebsd/libkern/arm/ |
| H A D | muldi3.c | 115 #define u1 u.ul[H] in __muldi3() macro 134 if (u1 == 0 && v1 == 0) { in __muldi3() 150 if (u1 >= u0) in __muldi3() 160 high = u1 * v1; in __muldi3() 170 #undef u1 in __muldi3() 201 u1 = HHALF(u); in __lmulq() 209 if (u1 == 0 && v1 == 0) in __lmulq() 212 if (u1 >= u0) in __lmulq() 213 udiff = u1 - u0, neg = 0; in __lmulq() 215 udiff = u0 - u1, neg = 1; in __lmulq() [all …]
|
| /f-stack/dpdk/lib/librte_eal/include/ |
| H A D | rte_reciprocal.h | 56 uint64_t u0, u1, v0, v1, k, t; in mullhi_u64() 60 u1 = x >> 32; u0 = x & 0xFFFFFFFF; in mullhi_u64() 66 t = u1*v0 + k; in mullhi_u64() 73 whi = u1*v1 + w2 + k; in mullhi_u64()
|
| /f-stack/dpdk/lib/librte_eal/common/ |
| H A D | rte_reciprocal.c | 39 divide_128_div_64_to_64(uint64_t u1, uint64_t u0, uint64_t v, uint64_t *r) in divide_128_div_64_to_64() argument 50 if (u1 >= v) { in divide_128_div_64_to_64() 60 un64 = (u1 << s) | ((u0 >> (64 - s)) & (-s >> 31)); in divide_128_div_64_to_64() 64 un64 = u1 | u0; in divide_128_div_64_to_64()
|
| H A D | eal_common_uuid.c | 101 #define UUCMP(u1, u2) \ in rte_uuid_compare() argument 102 do { if (u1 != u2) return (u1 < u2) ? -1 : 1; } while (0) in rte_uuid_compare()
|
| /f-stack/freebsd/i386/i386/ |
| H A D | mp_clock.c | 91 unsigned u1, u2, u3; in piix_get_timecount() local 96 u1 = u2; in piix_get_timecount() 99 } while (u1 > u2 || u2 > u3); in piix_get_timecount()
|
| /f-stack/freebsd/contrib/openzfs/module/unicode/ |
| H A D | u8_textprep.c | 754 uint32_t u1; in do_decomp() local 770 u1 -= U8_HANGUL_SYL_FIRST; in do_decomp() 802 if (U8_HANGUL_JAMO_L(u1)) { in do_decomp() 807 if (U8_HANGUL_JAMO_V(u1)) { in do_decomp() 815 if (U8_HANGUL_JAMO_T(u1)) { in do_decomp() 1072 uint32_t u1; in do_composition() local 1113 u1 = U8_HANGUL_SYL_FIRST + in do_composition() 1124 u1 += u2 - in do_composition() 1397 uint32_t u1; in collect_a_seq() local 1541 u1)) { in collect_a_seq() [all …]
|
| /f-stack/freebsd/contrib/openzfs/module/os/linux/spl/ |
| H A D | spl-generic.c | 242 uint64_t u0, u1, v1, q0, q1, k; in __udivdi3() local 249 u1 = u >> 32; // Break u into two halves. in __udivdi3() 251 q1 = __div_u64(u1, v); // First quotient digit. in __udivdi3() 252 k = u1 - q1 * v; // First remainder, < v. in __udivdi3() 260 u1 = u >> 1; // To ensure no overflow. in __udivdi3() 261 q1 = __div_u64(u1, v1); // Get quotient from in __udivdi3()
|
| /f-stack/freebsd/kern/ |
| H A D | kern_prot.c | 1353 if (priv_check_cred(u1, PRIV_SEEOTHERUIDS) != 0) in cr_canseeotheruids() 1385 for (i = 0; i < u1->cr_ngroups; i++) { in cr_canseeothergids() 1386 if (groupmember(u1->cr_groups[i], u2)) in cr_canseeothergids() 1392 if (priv_check_cred(u1, PRIV_SEEOTHERGIDS) != 0) in cr_canseeothergids() 1423 if (u1->cr_uid == 0) in cr_canseejailproc() 1436 cr_cansee(struct ucred *u1, struct ucred *u2) in cr_cansee() argument 1440 if ((error = prison_check(u1, u2))) in cr_cansee() 1443 if ((error = mac_cred_check_visible(u1, u2))) in cr_cansee() 1446 if ((error = cr_canseeotheruids(u1, u2))) in cr_cansee() 1448 if ((error = cr_canseeothergids(u1, u2))) in cr_cansee() [all …]
|
| /f-stack/freebsd/contrib/libb2/ |
| H A D | blake2s.c | 31 static inline __m128i _mm_set_epi64x( const uint64_t u1, const uint64_t u0 ) in _mm_set_epi64x() argument 33 return _mm_set_epi32( u1 >> 32, u1, u0 >> 32, u0 ); in _mm_set_epi64x()
|
| H A D | blake2b.c | 31 static inline __m128i _mm_set_epi64x( const uint64_t u1, const uint64_t u0 ) in _mm_set_epi64x() argument 33 return _mm_set_epi32( u1 >> 32, u1, u0 >> 32, u0 ); in _mm_set_epi64x()
|
| /f-stack/freebsd/arm64/coresight/ |
| H A D | coresight_acpi.c | 112 cs_guid_equal(const struct uuid *u1, const struct uuid *u2) in cs_guid_equal() argument 115 if (memcmp(u1, u2, 16) == 0) in cs_guid_equal()
|
| /f-stack/freebsd/contrib/libsodium/src/libsodium/ |
| H A D | Makefile.am | 242 crypto_stream/salsa20/xmm6int/u1.h \ 257 crypto_stream/chacha20/dolbeau/u1.h \ 281 crypto_stream/salsa20/xmm6int/u1.h \
|
| /f-stack/freebsd/contrib/openzfs/module/icp/asm-x86_64/aes/ |
| H A D | aestab.h | 114 d_4(uint32_t, t_dec(f, n), sb_data, u0, u1, u2, u3);
|
| /f-stack/dpdk/drivers/common/qat/qat_adf/ |
| H A D | icp_qat_fw_comp.h | 417 } u1; member
|
| H A D | icp_qat_fw_la.h | 305 } u1; member
|
| /f-stack/dpdk/drivers/crypto/qat/ |
| H A D | qat_sym.c | 301 auth_param->u1.aad_adr = in qat_sym_build_request() 316 auth_param->u1.aad_adr = 0; in qat_sym_build_request() 448 auth_param->u1.aad_adr = aad_phys_addr_aead; in qat_sym_build_request()
|
| H A D | qat_sym_hw_dp.c | 211 auth_param->u1.aad_adr = aad_iova; in enqueue_one_aead_job() 424 auth_param->u1.aad_adr = auth_iv->iova; in enqueue_one_auth_job() 560 auth_param->u1.aad_adr = auth_iv->iova; in enqueue_one_chain_job()
|
| /f-stack/freebsd/sys/ |
| H A D | proc.h | 1065 int cr_cansee(struct ucred *u1, struct ucred *u2); 1067 int cr_canseeothergids(struct ucred *u1, struct ucred *u2); 1068 int cr_canseeotheruids(struct ucred *u1, struct ucred *u2); 1069 int cr_canseejailproc(struct ucred *u1, struct ucred *u2);
|
| /f-stack/freebsd/contrib/device-tree/src/arm/ |
| H A D | ste-dbx5x0-pinctrl.dtsi | 45 function = "u1"; 71 function = "u1";
|
| /f-stack/app/redis-5.0.5/tests/unit/ |
| H A D | bitfield.tcl | 190 r bitfield bits get u1 0
|
| /f-stack/dpdk/drivers/net/qede/base/ |
| H A D | ecore_l2.c | 1949 port_stats.eth.u1.bb1.t2047; in __ecore_get_vport_port_stats() 1951 port_stats.eth.u1.bb1.t4095; in __ecore_get_vport_port_stats() 1953 port_stats.eth.u1.bb1.t9216; in __ecore_get_vport_port_stats() 1955 port_stats.eth.u1.bb1.t16383; in __ecore_get_vport_port_stats() 1964 port_stats.eth.u1.ah1.t1519_to_max; in __ecore_get_vport_port_stats()
|
| H A D | mcp_public.h | 189 } u1; member
|
| /f-stack/freebsd/contrib/device-tree/Bindings/usb/ |
| H A D | dwc3.txt | 66 - snps,dis-u1-entry-quirk: set if link entering into U1 needs to be disabled.
|
| /f-stack/lib/ |
| H A D | ff_glue.c | 913 cr_cansee(struct ucred *u1, struct ucred *u2) in cr_cansee() argument
|