Home
last modified time | relevance | path

Searched refs:aa (Results 1 – 22 of 22) sorted by relevance

/f-stack/freebsd/libkern/
H A Dashrdi3.c47 union uu aa; in __ashrdi3() local
49 aa.q = a; in __ashrdi3()
60 s = (aa.sl[H] >> (LONG_BITS - 1)) >> 1; in __ashrdi3()
61 aa.ul[L] = shift >= QUAD_BITS ? s : in __ashrdi3()
62 aa.sl[H] >> (shift - LONG_BITS); in __ashrdi3()
63 aa.ul[H] = s; in __ashrdi3()
65 aa.ul[L] = (aa.ul[L] >> shift) | in __ashrdi3()
66 (aa.ul[H] << (LONG_BITS - shift)); in __ashrdi3()
67 aa.sl[H] >>= shift; in __ashrdi3()
69 return (aa.q); in __ashrdi3()
H A Dlshrdi3.c47 union uu aa; in __lshrdi3() local
49 aa.q = a; in __lshrdi3()
51 aa.ul[L] = shift >= QUAD_BITS ? 0 : in __lshrdi3()
52 aa.ul[H] >> (shift - LONG_BITS); in __lshrdi3()
53 aa.ul[H] = 0; in __lshrdi3()
55 aa.ul[L] = (aa.ul[L] >> shift) | in __lshrdi3()
56 (aa.ul[H] << (LONG_BITS - shift)); in __lshrdi3()
57 aa.ul[H] >>= shift; in __lshrdi3()
59 return (aa.q); in __lshrdi3()
H A Dashldi3.c50 union uu aa; local
52 aa.q = a;
54 aa.ul[H] = shift >= QUAD_BITS ? 0 :
55 aa.ul[L] << (shift - LONG_BITS);
56 aa.ul[L] = 0;
58 aa.ul[H] = (aa.ul[H] << shift) |
59 (aa.ul[L] >> (LONG_BITS - shift));
60 aa.ul[L] <<= shift;
62 return (aa.q);
H A Dcmpdi2.c49 union uu aa, bb; in __cmpdi2() local
51 aa.q = a; in __cmpdi2()
53 return (aa.sl[H] < bb.sl[H] ? 0 : aa.sl[H] > bb.sl[H] ? 2 : in __cmpdi2()
54 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1); in __cmpdi2()
H A Ducmpdi2.c48 union uu aa, bb; in __ucmpdi2() local
50 aa.uq = a; in __ucmpdi2()
52 return (aa.ul[H] < bb.ul[H] ? 0 : aa.ul[H] > bb.ul[H] ? 2 : in __ucmpdi2()
53 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1); in __ucmpdi2()
/f-stack/dpdk/examples/pipeline/examples/
H A Dpacket.txt9 000000 aa bb cc dd 00 00 b0 b1 b2 b3 b4 b5 08 00 45 00
15 000000 aa bb cc dd 00 01 b0 b1 b2 b3 b4 b5 08 00 45 00
21 000000 aa bb cc dd 00 02 b0 b1 b2 b3 b4 b5 08 00 45 00
27 000000 aa bb cc dd 00 03 b0 b1 b2 b3 b4 b5 08 00 45 00
33 000000 aa bb cc dd 00 04 b0 b1 b2 b3 b4 b5 08 00 45 00
39 000000 aa bb cc dd 00 05 b0 b1 b2 b3 b4 b5 08 00 45 00
45 000000 aa bb cc dd 00 06 b0 b1 b2 b3 b4 b5 08 00 45 00
51 000000 aa bb cc dd 00 07 b0 b1 b2 b3 b4 b5 08 00 45 00
57 000000 aa bb cc dd 00 08 b0 b1 b2 b3 b4 b5 08 00 45 00
63 000000 aa bb cc dd 00 09 b0 b1 b2 b3 b4 b5 08 00 45 00
[all …]
/f-stack/freebsd/netinet/
H A Dsctp_asconf.c1233 if (aa->ap.aph.ph.param_type == type && aa->sent == 0) { in sctp_asconf_queue_mgmt()
1262 SCTP_MALLOC(aa, struct sctp_asconf_addr *, sizeof(*aa), in sctp_asconf_queue_mgmt()
1264 if (aa == NULL) { in sctp_asconf_queue_mgmt()
1273 aa->ifa = ifa; in sctp_asconf_queue_mgmt()
1477 SCTP_MALLOC(aa, struct sctp_asconf_addr *, sizeof(*aa), in sctp_asconf_queue_sa_delete()
1479 if (aa == NULL) { in sctp_asconf_queue_sa_delete()
1489 aa->ifa = ifa; in sctp_asconf_queue_sa_delete()
1551 return (aa); in sctp_asconf_find_param()
2572 if (aa == NULL) in sctp_compose_asconf()
2611 if (aa->sent) in sctp_compose_asconf()
[all …]
/f-stack/dpdk/lib/librte_sched/
H A Drte_approx.c90 int aa, bb; in find_best_rational_approximation() local
98 aa = matches(p_b + x * p_a, q_b + x * q_a, alpha_num, d_num, denum); in find_best_rational_approximation()
100 if (aa || bb) { in find_best_rational_approximation()
122 aa = matches(p_b + x * p_a, q_b + x * q_a, alpha_num, d_num, denum); in find_best_rational_approximation()
124 if (aa || bb) { in find_best_rational_approximation()
241 int aa, bb; in find_best_rational_approximation_64() local
249 aa = matches_64(p_b + x * p_a, q_b + x * q_a, alpha_num, d_num, denum); in find_best_rational_approximation_64()
252 if (aa || bb) { in find_best_rational_approximation_64()
275 aa = matches_64(p_b + x * p_a, q_b + x * q_a, alpha_num, d_num, denum); in find_best_rational_approximation_64()
278 if (aa || bb) { in find_best_rational_approximation_64()
/f-stack/app/redis-5.0.5/deps/jemalloc/test/include/test/
H A Dmath.h218 double e, aa, xx, c, ch, a, q, p1, p2, t, x, b, s1, s2, s3, s4, s5, s6; in pt_chi2() local
225 aa = 0.6931471805; in pt_chi2()
232 ch = pow(p * xx * exp(ln_gamma_df_2 + xx * aa), 1.0 / xx); in pt_chi2()
260 c * aa) * p2 / p1) / t; in pt_chi2()
276 t = p2 * exp(xx * aa + ln_gamma_df_2 + p1 - c * log(ch)); in pt_chi2()
/f-stack/freebsd/contrib/device-tree/Bindings/mfd/
H A Dda9052-i2c.txt4 - compatible : Should be "dlg,da9052", "dlg,da9053-aa",
42 compatible = "dlg,da9053-aa";
/f-stack/app/redis-5.0.5/tests/unit/
H A Dsort.tcl210 r sadd myset a b c d e f g h i l m n o p q r s t u v z aa aaa azz
213 } {a aa aaa azz b c d e f g h i l m n o p q r s t u v z}
234 r sadd myset a b c d e f g h i l m n o p q r s t u v z aa aaa azz
235 foreach ele {a aa aaa azz b c d e f g h i l m n o p q r s t u v z} {
239 } {a aa aaa azz b c d e f g h i l m n o p q r s t u v z}
H A Dscripting.tcl306 r sadd myset a b c d e f g h i l m n o p q r s t u v z aa aaa azz
310 } {a aa aaa azz b c d e f g h i l m n o p q r s t u v z}
320 r sadd myset a b c d e f g h i l m n o p q r s t u v z aa aaa azz
322 } {a aa aaa azz b c d e f g h i l m n o p q r s t u v z}
/f-stack/freebsd/net80211/
H A Dieee80211_regdomain.c204 uint8_t *aa = a; in sort_channels() local
208 for (ai = aa+size; --n >= 1; ai += size) in sort_channels()
209 for (t = ai; t > aa; t -= size) { in sort_channels()
/f-stack/app/redis-5.0.5/tests/unit/type/
H A Dlist.tcl11 assert_equal 1 [r lpush myziplist1 aa]
15 assert_equal aa [r lindex myziplist1 0]
20 assert_equal aa [r lpop myziplist1]
524 assert_equal 8 [r linsert xlist before a aa] "before a"
529 assert_equal 9 [r linsert xlist before aa 42] "before aa"
535 catch {[r linsert xlist aft3r aa 42]} e
/f-stack/freebsd/contrib/device-tree/Bindings/regulator/
H A Dpv88080.txt8 - "pvs,pv88080-aa" for PV88080 AA or AB silicon
/f-stack/freebsd/contrib/ngatm/netnatm/api/
H A Dcc_port.c439 struct uni_addr *aa; in cc_get_local_port_info() local
460 *lenp = sizeof(*list) + nports * sizeof(*pp) + naddrs * sizeof(*aa); in cc_get_local_port_info()
473 aa = (void *)((u_char *)list + sizeof(*list) + nports * sizeof(*pp)); in cc_get_local_port_info()
480 *aa++ = addr->addr; in cc_get_local_port_info()
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dimx53-qsb.dts16 compatible = "dlg,da9053-aa", "dlg,da9052";
H A Dimx53-voipac-dmm-668.dtsi140 compatible = "dlg,da9053-aa", "dlg,da9052";
H A Dimx53-ppd.dts352 compatible = "dlg,da9053-aa";
/f-stack/freebsd/opencrypto/
H A Drmd160.c164 uint32_t a, b, c, d, e, aa, bb, cc, dd, ee, t, x[16]; in RMD160Transform() local
267 aa = a ; bb = b; cc = c; dd = d; ee = e; in RMD160Transform()
364 state[3] = state[4] + aa + b; in RMD160Transform()
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dvdpa.rst90 -device virtio-net-pci,netdev=vdpa,mac=00:aa:bb:cc:dd:ee,page-per-vq=on \
/f-stack/dpdk/doc/guides/nics/
H A Dice.rst272 sendp(Ether(src='3c:fd:fe:aa:bb:78', dst='00:00:00:01:02:03')/IP(src=' \