Home
last modified time | relevance | path

Searched refs:u1 (Results 1 – 25 of 29) sorted by relevance

12

/f-stack/freebsd/crypto/des/
H A Ddes_locl.h149 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 Dmuldi3.c115 #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 Drte_reciprocal.h56 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 Drte_reciprocal.c39 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 Deal_common_uuid.c101 #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 Dmp_clock.c91 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 Du8_textprep.c754 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 Dspl-generic.c242 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 Dkern_prot.c1353 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 Dblake2s.c31 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 Dblake2b.c31 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 Dcoresight_acpi.c112 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 DMakefile.am242 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 Daestab.h114 d_4(uint32_t, t_dec(f, n), sb_data, u0, u1, u2, u3);
/f-stack/dpdk/drivers/common/qat/qat_adf/
H A Dicp_qat_fw_comp.h417 } u1; member
H A Dicp_qat_fw_la.h305 } u1; member
/f-stack/dpdk/drivers/crypto/qat/
H A Dqat_sym.c301 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 Dqat_sym_hw_dp.c211 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 Dproc.h1065 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 Dste-dbx5x0-pinctrl.dtsi45 function = "u1";
71 function = "u1";
/f-stack/app/redis-5.0.5/tests/unit/
H A Dbitfield.tcl190 r bitfield bits get u1 0
/f-stack/dpdk/drivers/net/qede/base/
H A Decore_l2.c1949 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 Dmcp_public.h189 } u1; member
/f-stack/freebsd/contrib/device-tree/Bindings/usb/
H A Ddwc3.txt66 - snps,dis-u1-entry-quirk: set if link entering into U1 needs to be disabled.
/f-stack/lib/
H A Dff_glue.c913 cr_cansee(struct ucred *u1, struct ucred *u2) in cr_cansee() argument

12