| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_create/ |
| H A D | zfs_create_verbose.ksh | 143 typeset -A expect 144 expect=([compression]=on) 145 dry_create_parseable expect -o compression=on "$TESTPOOL/$TESTFS1" 148 expect=([compression]=on) 149 dry_create_parseable expect -p -o compression=on "$TESTPOOL/$TESTFS1" 150 expect=([compression]=on) 151 dry_create_parseable expect -p -o compression=on "$TESTPOOL/$TESTFS1/$TESTVOL" 154 expect=([volblocksize]=4096 [volsize]=$((1024 * 1024 * 10))) 155 dry_create_parseable expect -b 4k -V 10m -s "$TESTPOOL/$TESTFS1" 158 expect=( [all …]
|
| H A D | zfs_create_dryrun.ksh | 152 typeset -A expect 153 expect=([compression]=on) 154 dry_create_parseable expect -o compression=on "$TESTPOOL/$TESTFS1" 157 expect=([volblocksize]=4096 [volsize]=$((1024 * 1024 * 10))) 158 dry_create_parseable expect -b 4k -V 10m -s "$TESTPOOL/$TESTFS1" 161 expect=( 166 dry_create_parseable expect -b 4k -V 10m "$TESTPOOL/$TESTFS1"
|
| /f-stack/dpdk/app/test/ |
| H A D | autotest_test_funcs.py | 15 result = child.expect(["Test OK", "Test Failed", 70 index = child.expect(["Test OK", 103 index = child.expect(["Test OK", 140 index = child.expect(["Test OK", 173 index = child.expect(["Test OK", 212 index = child.expect([log_msg, 223 index = child.expect(["Test OK", 233 index = child.expect(["Start timer stress tests", 242 index = child.expect(["Start timer stress tests 2", 251 index = child.expect(["Start timer basic tests", [all …]
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_set/ |
| H A D | readonly_001_pos.ksh | 94 expect="log_must" 97 expect="log_mustnot" 103 $expect touch $mtpt/$TESTFILE1 104 $expect mkdir -p $mtpt/$TESTDIR1 105 $expect eval "echo 'y' | rm $mtpt/$TESTFILE0" 106 $expect rmdir $mtpt/$TESTDIR0 108 if [[ $expect == "log_must" ]] ; then 116 $expect eval "new_fs \
|
| /f-stack/freebsd/i386/include/ |
| H A D | atomic.h | 206 "+a" (expect) /* 2 */ \ 224 "+a" (*expect) /* 2 */ \ 398 : "+A" (expect), /* 0 */ in atomic_cmpset_64_i386() 412 if (atomic_cmpset_64_i386(dst, *expect, src)) { in atomic_fcmpset_64_i386() 415 *expect = *dst; in atomic_fcmpset_64_i386() 492 "+A" (expect) /* 2 */ in atomic_cmpset_64_i586() 510 "+A" (*expect) /* 2 */ in atomic_fcmpset_64_i586() 571 return (atomic_cmpset_64_i386(dst, expect, src)); in atomic_cmpset_64() 573 return (atomic_cmpset_64_i586(dst, expect, src)); in atomic_cmpset_64() 581 return (atomic_fcmpset_64_i386(dst, expect, src)); in atomic_fcmpset_64() [all …]
|
| /f-stack/freebsd/contrib/openzfs/tests/test-runner/bin/ |
| H A D | zts-report.py.in | 356 expect = issue_url + known[test][1] variable 358 expect = known[test][1] variable 361 expect = issue_url + maybe[test][1] variable 363 expect = maybe[test][1] variable 369 expect = "UNKNOWN REASON" variable 370 print(" %s %s (%s)" % (results[test], test, expect)) 383 expect = "PASS" if test not in known else known[test][0] variable 384 print(" %s %s (expected %s)" % (results[test], test, expect))
|
| /f-stack/dpdk/app/test-cmdline/ |
| H A D | cmdline_test.py | 19 child.expect(test["Result"], 1) 36 child.expect("History buffer size: \\d+", timeout=1) 45 child.expect(str(i + 100000000), timeout=1) 49 child.expect("100000000", timeout=1)
|
| /f-stack/freebsd/amd64/include/ |
| H A D | atomic.h | 118 int atomic_cmpset_char(volatile u_char *dst, u_char expect, u_char src); 119 int atomic_cmpset_short(volatile u_short *dst, u_short expect, u_short src); 120 int atomic_cmpset_int(volatile u_int *dst, u_int expect, u_int src); 121 int atomic_cmpset_long(volatile u_long *dst, u_long expect, u_long src); 122 int atomic_fcmpset_char(volatile u_char *dst, u_char *expect, u_char src); 123 int atomic_fcmpset_short(volatile u_short *dst, u_short *expect, 125 int atomic_fcmpset_int(volatile u_int *dst, u_int *expect, u_int src); 126 int atomic_fcmpset_long(volatile u_long *dst, u_long *expect, u_long src); 197 atomic_cmpset_##TYPE(volatile u_##TYPE *dst, u_##TYPE expect, u_##TYPE src) \ 207 "+a" (expect) /* 2 */ \ [all …]
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_unmount/ |
| H A D | zfs_unmount.kshlib | 38 typeset -i expect=${4-0} 44 if (( expect == 0 )) ; then 56 if (( ret != expect)); then
|
| H A D | zfs_unmount_002_pos.ksh | 64 typeset -i expect=${2-0} 76 "${dev[j]}" $expect
|
| H A D | zfs_unmount_004_pos.ksh | 65 typeset -i expect=${2-0} 77 "${dev[j]}" $expect
|
| H A D | zfs_unmount_003_pos.ksh | 65 typeset -i expect=${2-0} 78 "${dev[j]}" $expect
|
| H A D | zfs_unmount_005_pos.ksh | 66 typeset -i expect=${2-0} 81 "${dev[j]}" $expect
|
| /f-stack/freebsd/contrib/openzfs/include/os/freebsd/spl/sys/ |
| H A D | debug.h | 61 #ifndef expect 62 #define expect(expr, value) (__builtin_expect((expr), (value))) macro 64 #define likely(expr) expect((expr) != 0, 1) 65 #define unlikely(expr) expect((expr) != 0, 0)
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | lzf_c.c | 79 # define expect(expr,value) __builtin_expect ((expr),(value)) macro 82 # define expect(expr,value) (expr) macro 86 #define expect_false(expr) expect ((expr) != 0, 0) 87 #define expect_true(expr) expect ((expr) != 0, 1)
|
| /f-stack/freebsd/contrib/dev/acpica/compiler/ |
| H A D | aslparser.y | 211 %expect 124
|
| /f-stack/freebsd/contrib/openzfs/tests/test-runner/include/ |
| H A D | logapi.shlib | 84 typeset expect=$1 113 $out | grep -i "$expect" > /dev/null 2>&1 199 typeset expect=$1 234 elif [[ -n $expect ]] ; then 235 $out | grep -i "$expect" > /dev/null 2>&1
|
| /f-stack/app/nginx-1.16.1/src/http/ |
| H A D | ngx_http_request_body.c | 804 ngx_str_t *expect; in ngx_http_test_expect() local 807 || r->headers_in.expect == NULL in ngx_http_test_expect() 819 expect = &r->headers_in.expect->value; in ngx_http_test_expect() 821 if (expect->len != sizeof("100-continue") - 1 in ngx_http_test_expect() 822 || ngx_strncasecmp(expect->data, (u_char *) "100-continue", in ngx_http_test_expect()
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | lz4.c | 261 #define expect(expr, value) (__builtin_expect((expr), (value))) macro 263 #define expect(expr, value) (expr) macro 267 #define likely(expr) expect((expr) != 0, 1) 271 #define unlikely(expr) expect((expr) != 0, 0)
|
| /f-stack/freebsd/contrib/device-tree/src/arm64/intel/ |
| H A D | socfpga_agilex_socdk_nand.dts | 41 /* We expect the bootloader to fill in the reg */
|
| H A D | socfpga_agilex_socdk.dts | 41 /* We expect the bootloader to fill in the reg */
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/refreserv/ |
| H A D | refreserv_multi_raidz.ksh | 141 typeset vbs vol refres refres1 refres2 expect
|
| /f-stack/freebsd/contrib/device-tree/Bindings/gpio/ |
| H A D | spear_spics.txt | 7 desired by some of the device protocols above spi which expect (multiple)
|
| /f-stack/dpdk/doc/guides/howto/ |
| H A D | telemetry.rst | 77 For commands that expect a parameter, use "," to separate the command
|
| /f-stack/freebsd/contrib/device-tree/src/arm64/altera/ |
| H A D | socfpga_stratix10_socdk.dts | 42 /* We expect the bootloader to fill in the reg */
|