Searched refs:SIZE (Results 1 - 25 of 104) sorted by relevance

12345

/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zpool_remove/
H A Dsetup.ksh30 partition_disk $SIZE $DISK 6
/freebsd-current/tests/sys/cddl/zfs/tests/grow_pool/
H A Dsetup.ksh33 log_must partition_disk $SIZE $DISK 2
37 log_must set_partition $PARTITION "" $SIZE $DISK0
38 log_must set_partition $PARTITION "" $SIZE $DISK1
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/l2arc/
H A Dsetup.ksh27 log_must mkfile $SIZE $VDEV
28 log_must mkfile $SIZE $VDEV1
H A Dl2arc.cfg23 export SIZE=1G
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/append/
H A Dthreadsappend_001_pos.ksh75 SIZE=`ls -l ${TESTDIR}/${TESTFILE} | awk '{print $5}'`
76 if [[ $SIZE -ne $FILE_SIZE ]]; then
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zpool_create/
H A Dsetup.ksh39 partition_disk $SIZE $DISK 7
44 partition_disk $SIZE $disk 7
/freebsd-current/tests/sys/cddl/zfs/tests/zinject/
H A Dsetup.ksh38 partition_disk $SIZE $DISK 7
43 partition_disk $SIZE $disk 7
/freebsd-current/tests/sys/cddl/zfs/tests/no_space/
H A Dsetup.ksh33 log_must set_partition 1 "" $SIZE $DISK
/freebsd-current/tests/sys/cddl/zfs/tests/grow_replicas/
H A Dsetup.ksh35 partition_disk $SIZE $DISK 4
40 log_must set_partition $PARTITION "" $SIZE $DISK0
41 log_must set_partition $PARTITION "" $SIZE $DISK1
42 log_must set_partition $PARTITION "" $SIZE $DISK2
43 log_must set_partition $PARTITION "" $SIZE $DISK3
/freebsd-current/tests/sys/cddl/zfs/tests/threadsappend/
H A Dthreadsappend_001_pos.ksh85 SIZE=`$LS -l ${TESTDIR}/${TESTFILE} | $AWK '{print $5}'`
86 if [[ $SIZE -ne $FILE_SIZE ]]; then
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zpool_add/
H A Dzpool_add.kshlib72 partition_disk $SIZE $DISK 7
76 partition_disk $SIZE $disk 7
/freebsd-current/tests/sys/cddl/zfs/tests/write_dirs/
H A Dsetup.ksh34 log_must set_partition $PARTITION "" $SIZE $DISK
/freebsd-current/usr.sbin/bluetooth/hccontrol/
H A Dutil.c39 #define SIZE(x) (sizeof((x))/sizeof((x)[0])) macro
49 return (link_type >= SIZE(t)? "?" : t[link_type]);
60 return (type >= SIZE(t)? "?" : t[type]);
73 return (scan >= SIZE(t)? "?" : t[scan]);
92 return (encrypt >= SIZE(t1)? "?" : t1[encrypt]);
94 return (encrypt >= SIZE(t)? "?" : t[encrypt]);
107 return (coding >= SIZE(t)? "?" : t[coding]);
120 return (data >= SIZE(t)? "?" : t[data]);
137 for (n = 0; n < SIZE(t); n++) {
168 return (ver >= SIZE(
[all...]
/freebsd-current/contrib/sendmail/libsm/
H A Db-strcmp.c20 #define SIZE 512 macro
56 char src1[SIZE], src2[SIZE];
87 (void) sm_strlcpy(src1, "1234567890", SIZE);
88 (void) sm_strlcpy(src2, "1234567890", SIZE);
91 (void) sm_strlcpy(src1, "1234567890", SIZE);
92 (void) sm_strlcpy(src2, "1234567891", SIZE);
95 (void) sm_strlcpy(src1, "1234567892", SIZE);
96 (void) sm_strlcpy(src2, "1234567891", SIZE);
/freebsd-current/sys/dev/qat/include/common/
H A Dadf_transport_access_macros.h52 #define ADF_MSG_SIZE_TO_BYTES(SIZE) (SIZE << 5)
53 #define ADF_BYTES_TO_MSG_SIZE(SIZE) (SIZE >> 5)
54 #define ADF_SIZE_TO_RING_SIZE_IN_BYTES(SIZE) ((1 << (SIZE - 1)) << 7)
55 #define ADF_RING_SIZE_IN_BYTES_TO_SIZE(SIZE) ((1 << (SIZE - 1)) >> 7)
61 #define ADF_RING_SIZE_BYTES_MIN(SIZE) \
62 ((SIZE < ADF_SIZE_TO_RING_SIZE_IN_BYTE
[all...]
/freebsd-current/contrib/one-true-awk/
H A Dmaketab.c111 #define SIZE (LASTTOKEN - FIRSTTOKEN + 1) macro
112 const char *table[SIZE];
113 char *names[SIZE];
136 printf("static const char * const printname[%d] = {\n", SIZE);
177 printf("\nCell *(*proctab[%d])(Node **, int) = {\n", SIZE);
178 for (i=0; i<SIZE; i++)
/freebsd-current/contrib/netbsd-tests/lib/libc/locale/
H A Dt_mbstowcs.c73 #define SIZE 256 macro
148 wchar_t wbuf[SIZE];
149 char buf[SIZE];
150 char visbuf[SIZE];
170 REQUIRE_ERRNO((ssize_t)mbstowcs(wbuf, t->data, SIZE-1), -1);
171 REQUIRE_ERRNO((ssize_t)wcstombs(buf, wbuf, SIZE-1), -1);
195 if (wcswidth(wbuf, SIZE-1) != t->width) {
198 (void)printf(" got : %d\n", wcswidth(wbuf, SIZE-1));
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cache/
H A Dsetup.ksh39 log_must mkfile $SIZE $VDEV $VDEV2
/freebsd-current/sys/dev/ntb/ntb_hw/
H A Dntb_hw_amd.h68 #define amd_ntb_bar_read(SIZE, bar, offset) \
69 bus_space_read_ ## SIZE (ntb->bar_info[(bar)].pci_bus_tag, \
71 #define amd_ntb_bar_write(SIZE, bar, offset, val) \
72 bus_space_write_ ## SIZE (ntb->bar_info[(bar)].pci_bus_tag, \
74 #define amd_ntb_reg_read(SIZE, offset) \
75 amd_ntb_bar_read(SIZE, NTB_CONFIG_BAR, offset)
76 #define amd_ntb_reg_write(SIZE, offset, val) \
77 amd_ntb_bar_write(SIZE, NTB_CONFIG_BAR, offset, val)
78 #define amd_ntb_peer_reg_read(SIZE, offset) \
79 amd_ntb_bar_read(SIZE, NTB_CONFIG_BA
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/
H A Dlse.S38 // L_cas: SIZE: 1,2,4,8,16 MODEL: 1,2,3,4,5
39 // L_swp L_ldadd L_ldclr L_ldeor L_ldset: SIZE: 1,2,4,8 MODEL: 1,2,3,4,5
41 #if SIZE == 1
45 #elif SIZE == 2
49 #elif SIZE == 4 || SIZE == 8 || SIZE == 16
52 #if SIZE == 4
54 #elif SIZE == 8
59 #endif // SIZE
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/compression/
H A Dl2arc_encrypted_no_compressed_arc.ksh25 export SIZE=1G
74 log_must mkfile $SIZE $VDEV
H A Dl2arc_encrypted.ksh25 export SIZE=1G
77 log_must mkfile $SIZE $VDEV
H A Dl2arc_compressed_arc_disabled.ksh25 export SIZE=1G
73 log_must mkfile $SIZE $VDEV
H A Dl2arc_compressed_arc.ksh25 export SIZE=1G
76 log_must mkfile $SIZE $VDEV
/freebsd-current/contrib/netbsd-tests/lib/libc/gen/
H A Dt_vis.c57 #define SIZE 256 macro
71 ATF_REQUIRE((dstbuf = malloc(SIZE)) != NULL);
72 ATF_REQUIRE((srcbuf = malloc(SIZE)) != NULL);
73 ATF_REQUIRE((visbuf = malloc(SIZE * 4 + 1)) != NULL);
75 for (i = 0; i < SIZE; i++)
79 ATF_REQUIRE(strsvisx(visbuf, srcbuf, SIZE, styles[i], "") > 0);
80 memset(dstbuf, 0, SIZE);
83 for (j = 0; j < SIZE; j++)

Completed in 305 milliseconds

12345