Home
last modified time | relevance | path

Searched refs:mx (Results 1 – 25 of 132) sorted by relevance

123456

/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVSchedSiFiveP600.td11 /// c is true if mx has the worst case behavior compared to LMULs in MxList.
14 class SiFiveP600IsWorstCaseMX<string mx, list<string> MxList> {
16 bit c = !eq(mx, LLMUL);
19 class SiFiveP600IsWorstCaseMXSEW<string mx, int sew, list<string> MxList, bit isF = 0> {
21 int SSEW = SmallestSEW<mx, isF>.r;
22 bit c = !and(!eq(mx, LLMUL), !eq(sew, SSEW));
26 class SiFiveP600GetLMulCycles<string mx> {
28 !eq(mx, "M1") : 1,
29 !eq(mx, "M2") : 2,
30 !eq(mx, "M4") : 4,
[all …]
H A DRISCVSchedSiFive7.td11 /// c is true if mx has the worst case behavior compared to LMULs in MxList.
14 class SiFive7IsWorstCaseMX<string mx, list<string> MxList> {
16 bit c = !eq(mx, LLMUL);
19 /// c is true if mx and sew have the worst case behavior compared to LMULs in
22 class SiFive7IsWorstCaseMXSEW<string mx, int sew, list<string> MxList,
25 defvar SSEW = SmallestSEW<mx, isF>.r;
26 bit c = !and(!eq(mx, LLMUL), !eq(sew, SSEW));
31 class SiFive7GetCyclesDefault<string mx> {
33 !eq(mx, "M1") : 2,
34 !eq(mx, "M2") : 4,
[all …]
H A DRISCVScheduleV.td23 class SchedSEWSet<string mx, bit isF = 0, bit isWidening = 0> {
24 assert !or(!not(isF), !ne(mx, "MF8")), "LMUL shouldn't be MF8 for floating-point";
25 defvar t = !cond(!eq(mx, "M1"): [8, 16, 32, 64],
26 !eq(mx, "M2"): [8, 16, 32, 64],
27 !eq(mx, "M4"): [8, 16, 32, 64],
28 !eq(mx, "M8"): [8, 16, 32, 64],
29 !eq(mx, "MF2"): [8, 16, 32],
30 !eq(mx, "MF4"): [8, 16],
31 !eq(mx, "MF8"): [8]);
45 // Helper function to get the smallest SEW that can be used with LMUL mx
[all …]
H A DRISCVInstrInfoZvk.td283 defvar mx = m.MX;
285 SchedBinary<"WriteVGMULV", "ReadVGMULV", "ReadVGMULV", mx>;
291 defvar mx = m.MX;
293 SchedBinary<"WriteVAESMVV", "ReadVAESMVV", "ReadVAESMVV", mx>;
295 SchedBinary<"WriteVAESMVV", "ReadVAESMVV", "ReadVAESMVV", mx>;
302 defvar mx = m.MX;
304 SchedBinary<"WriteVSM4RV", "ReadVSM4RV", "ReadVSM4RV", mx>;
306 SchedBinary<"WriteVSM4RV", "ReadVSM4RV", "ReadVSM4RV", mx>;
313 defvar mx = m.MX;
316 "ReadVGHSHV", mx>;
[all …]
H A DRISCVInstrInfoVPseudos.td141 VReg f2regclass, VReg f4regclass, VReg f8regclass, string mx> {
148 string MX = mx;
1869 defvar mx = mti.LMul.MX;
1870 defvar WriteVLDM_MX = !cast<SchedWrite>("WriteVLDM_" # mx);
1944 defvar mx = mti.LMul.MX;
1945 defvar WriteVSTM_MX = !cast<SchedWrite>("WriteVSTM_" # mx);
1998 defvar mx = mti.LMul.MX;
2001 SchedBinary<"WriteVMPopV", "ReadVMPopV", "ReadVMPopV", mx>;
2003 SchedBinary<"WriteVMPopV", "ReadVMPopV", "ReadVMPopV", mx>;
2010 defvar mx
[all...]
/freebsd/crypto/openssl/crypto/
H A Dex_data.c216 int mx, i; in ossl_crypto_new_ex_data_ex() local
232 mx = sk_EX_CALLBACK_num(ip->meth); in ossl_crypto_new_ex_data_ex()
233 if (mx > 0) { in ossl_crypto_new_ex_data_ex()
234 if (mx < (int)OSSL_NELEM(stack)) in ossl_crypto_new_ex_data_ex()
237 storage = OPENSSL_malloc(sizeof(*storage) * mx); in ossl_crypto_new_ex_data_ex()
239 for (i = 0; i < mx; i++) in ossl_crypto_new_ex_data_ex()
244 if (mx > 0 && storage == NULL) { in ossl_crypto_new_ex_data_ex()
248 for (i = 0; i < mx; i++) { in ossl_crypto_new_ex_data_ex()
272 int mx, j, i; in CRYPTO_dup_ex_data() local
293 mx = sk_EX_CALLBACK_num(ip->meth); in CRYPTO_dup_ex_data()
[all …]
/freebsd/tools/test/stress2/misc/
H A Dswap6.sh39 mx=0
42 [ $n -gt $mx ] && mx=$n
43 [ $mx -ge $min ] && pkill swap
46 if [ $mx -lt $min ]; then
47 echo "FAIL Only $mx% swap used"
50 echo "$mx% swap used"
H A Dgetrandom2.sh101 static size_t mx;
119 getrandom(bp, mx, 0);
156 mx = rlp.rlim_cur;
157 if (mx > f / parallel)
158 mx = f / parallel;
159 if ((bp = mmap(NULL, mx, PROT_READ | PROT_WRITE, MAP_ANON, -1,
163 if (getrandom(bp, mx, 0) != -1)
165 mx = mx / 2;
167 printf("Max getrandom() buffer size is %zu, %d threads\n", mx,
H A Dtvnlru.sh142 uint64_t mx, tot, usec;
168 mx = 0;
182 if (mx < usec)
183 mx = usec;
189 tvnodes, maxvnodes, (double)tot / 1000000 / n, (double)mx /
191 share[idx] = mx;
211 u_int mx;
241 mx = 0;
244 if (mx < share[i + 1])
245 mx = share[i + 1];
[all …]
H A Dtar.sh77 uint64_t mx, usec;
83 mx = 0;
116 if (usec > mx)
117 mx = usec;
127 if (mx > 5000000) {
128 // fprintf(stderr, "%.3f %s : FAIL\n", (double)mx / 1000000, path);
H A Dnlink3.sh46 int fd, i, mx;
55 mx = UFS_LINK_MAX - 1;
56 for (i = 0; i < mx; i++) {
64 i = mx;
77 i = mx;
H A Dsplit.sh59 mx=$((kfree / parallel / 2))
60 [ $mx -gt $cap ] && mx=$cap
67 blocks=`jot -r 1 1 $mx`
H A Dnlink.sh45 int i, mx;
48 mx = UFS_LINK_MAX - 2;
49 for (i = 0; i < mx; i++) {
56 i = mx;
H A Dumountf7.sh87 int mx;
95 for (i = 0; i < mx; i++) {
112 for (i = 0; i < mx; i++) {
131 for (i = 0; i < mx; i++) {
150 mx = atoi(argv[1]);
H A Dnlink4.sh45 int fd, i, mx;
54 mx = UFS_LINK_MAX - 1;
55 for (i = 0; i < mx; i++) {
63 i = mx;
H A Dnlink5.sh49 int i, mx;
52 mx = UFS_LINK_MAX - 2;
53 for (i = 0; i < mx; i++) {
60 i = mx;
H A Dsnap8.sh47 mx=$((`sysctl -n hw.physmem` / 1024 / 1024 / 1024 / 2))
48 [ $size -gt $mx ] && size=$mx
/freebsd/tools/test/stress2/testcases/swap/
H A Dswap.c53 int mi, mx, pct; in setup() local
63 mx = 100; in setup()
68 mx = 110; in setup()
73 mx = 120; in setup()
78 mx = 130; in setup()
81 mx = atoi(cp); in setup()
82 mi = mx - 10; in setup()
84 pct = random_int(mi, mx); in setup()
/freebsd/sys/contrib/device-tree/src/arm/amlogic/
H A Dmeson.dtsi52 compatible = "amlogic,meson-mx-assist", "syscon";
124 compatible = "amlogic,meson-mx-usb2-phy";
131 compatible = "amlogic,meson-mx-usb2-phy";
138 compatible = "amlogic,meson-mx-sdio";
155 compatible = "amlogic,meson-mx-sdhc";
217 compatible = "amlogic,meson-mx-ao-arc";
301 compatible = "amlogic,meson-mx-bootrom", "syscon";
/freebsd/contrib/wpa/src/wps/
H A Dwps_upnp_ssdp.c449 int mx) in msearchreply_state_machine_start() argument
472 next_timeout_msec = (1000 * mx * (os_random() & 0xFF)) >> 8; in msearchreply_state_machine_start()
523 int mx = 0; in ssdp_parse_msearch() local
632 mx = atol(data); in ssdp_parse_msearch()
638 if (!got_host || !got_st || !got_man || !got_mx || mx < 0) { in ssdp_parse_msearch()
640 "%d mx=%d", got_host, got_st, got_man, got_mx, mx); in ssdp_parse_msearch()
648 if (mx > 120) in ssdp_parse_msearch()
649 mx = 120; /* UPnP-arch-DeviceArchitecture, 1.2.3 */ in ssdp_parse_msearch()
650 msearchreply_state_machine_start(sm, client, mx); in ssdp_parse_msearch()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dz_Windows_NT_util.cpp151 void __kmp_win32_mutex_init(kmp_win32_mutex_t *mx) { in __kmp_win32_mutex_init()
152 InitializeCriticalSection(&mx->cs); in __kmp_win32_mutex_init()
154 __kmp_itt_system_object_created(&mx->cs, "Critical Section"); in __kmp_win32_mutex_init()
158 void __kmp_win32_mutex_destroy(kmp_win32_mutex_t *mx) { in __kmp_win32_mutex_destroy()
159 DeleteCriticalSection(&mx->cs); in __kmp_win32_mutex_destroy()
162 void __kmp_win32_mutex_lock(kmp_win32_mutex_t *mx) { in __kmp_win32_mutex_lock()
163 EnterCriticalSection(&mx->cs); in __kmp_win32_mutex_lock()
166 int __kmp_win32_mutex_trylock(kmp_win32_mutex_t *mx) { in __kmp_win32_mutex_trylock()
167 return TryEnterCriticalSection(&mx->cs); in __kmp_win32_mutex_trylock()
170 void __kmp_win32_mutex_unlock(kmp_win32_mutex_t *mx) { in __kmp_win32_mutex_unlock()
150 __kmp_win32_mutex_init(kmp_win32_mutex_t * mx) __kmp_win32_mutex_init() argument
157 __kmp_win32_mutex_destroy(kmp_win32_mutex_t * mx) __kmp_win32_mutex_destroy() argument
161 __kmp_win32_mutex_lock(kmp_win32_mutex_t * mx) __kmp_win32_mutex_lock() argument
165 __kmp_win32_mutex_trylock(kmp_win32_mutex_t * mx) __kmp_win32_mutex_trylock() argument
169 __kmp_win32_mutex_unlock(kmp_win32_mutex_t * mx) __kmp_win32_mutex_unlock() argument
201 __kmp_win32_cond_wait(kmp_win32_cond_t * cv,kmp_win32_mutex_t * mx,kmp_info_t * th,C * flag) __kmp_win32_cond_wait() argument
[all...]
/freebsd/contrib/sendmail/contrib/
H A Dexpn.pl296 $newmxhost = &mx($newhost,$newaddr);
297 print "$newmxhost = &mx($newhost)\n"
520 $mx{&trhost($oldhost)} = $newhost;
924 $nserver = &mx($server);
950 sub mx subroutine
955 if (defined $mx{&trhost($h)} && $h ne $mx{&trhost($h)}) {
957 $h = $mx{&trhost($h)};
996 if ((defined $mx{$server}) || (! $have_nslookup)) {
1064 $mx{&trhost($server)} = $nserver;
/freebsd/sys/contrib/device-tree/Bindings/arm/amlogic/
H A Dassist.txt9 - compatible: should be "amlogic,meson-mx-assist" along with "syscon"
15 compatible = "amlogic,meson-mx-assist", "syscon";
H A Dbootrom.txt9 - compatible: should be "amlogic,meson-mx-bootrom" along with "syscon"
15 compatible = "amlogic,meson-mx-bootrom", "syscon";
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dcdns,xtensa-mx.txt4 - compatible: Should be "cdns,xtensa-mx".
11 compatible = "cdns,xtensa-mx";

123456