| /f-stack/freebsd/libkern/ |
| H A D | ashrdi3.c | 47 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 D | lshrdi3.c | 47 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 D | ashldi3.c | 50 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 D | cmpdi2.c | 49 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 D | ucmpdi2.c | 48 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 D | packet.txt | 9 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 D | sctp_asconf.c | 1233 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 D | rte_approx.c | 90 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 D | math.h | 218 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 D | da9052-i2c.txt | 4 - compatible : Should be "dlg,da9052", "dlg,da9053-aa", 42 compatible = "dlg,da9053-aa";
|
| /f-stack/app/redis-5.0.5/tests/unit/ |
| H A D | sort.tcl | 210 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 D | scripting.tcl | 306 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 D | ieee80211_regdomain.c | 204 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 D | list.tcl | 11 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 D | pv88080.txt | 8 - "pvs,pv88080-aa" for PV88080 AA or AB silicon
|
| /f-stack/freebsd/contrib/ngatm/netnatm/api/ |
| H A D | cc_port.c | 439 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 D | imx53-qsb.dts | 16 compatible = "dlg,da9053-aa", "dlg,da9052";
|
| H A D | imx53-voipac-dmm-668.dtsi | 140 compatible = "dlg,da9053-aa", "dlg,da9052";
|
| H A D | imx53-ppd.dts | 352 compatible = "dlg,da9053-aa";
|
| /f-stack/freebsd/opencrypto/ |
| H A D | rmd160.c | 164 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 D | vdpa.rst | 90 -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 D | ice.rst | 272 sendp(Ether(src='3c:fd:fe:aa:bb:78', dst='00:00:00:01:02:03')/IP(src=' \
|