Home
last modified time | relevance | path

Searched full:world (Results 1 – 25 of 981) sorted by relevance

12345678910>>...40

/freebsd/sys/contrib/device-tree/Bindings/arm/
H A Dsecure.txt1 * ARM Secure world bindings
6 world or the Secure world. However some devicetree consumers are
13 The general principle of the naming scheme for Secure world bindings
14 is that any property that needs a different value in the Secure world
19 world value is the same as specified for the Normal world by the
30 world consumers (like kernels that run entirely in Secure) to simply
31 describe the view of Secure world using the standard bindings. These
33 world views need to be described in a single device tree.
35 Valid Secure world properties
39 in the secure world. The combination of this with "status" allows
[all …]
/freebsd/sys/dev/ath/ath_hal/ah_regdomain/
H A Dah_rd_regmap.h33 {NULL1_WORLD, NULL1, WORLD, NO_REQ, NO_REQ, PSCAN_DEFER, CTRY_DEFAULT },
38 {FCC2_WORLD, FCC2, WORLD, NO_REQ, NO_REQ, PSCAN_DEFER, CTRY_DEFAULT },
41 {FCC3_WORLD, FCC3, WORLD, NO_REQ, NO_REQ, PSCAN_DEFER, CTRY_DEFAULT },
46 …{ETSI1_WORLD, ETSI1, WORLD, DISALLOW_ADHOC_11A | DISALLOW_ADHOC_11A_TURB, NO_REQ, PSCAN_DEFER, C…
47 …{ETSI2_WORLD, ETSI2, WORLD, DISALLOW_ADHOC_11A | DISALLOW_ADHOC_11A_TURB, NO_REQ, PSCAN_DEFER, C…
48 …{ETSI3_WORLD, ETSI3, WORLD, DISALLOW_ADHOC_11A | DISALLOW_ADHOC_11A_TURB, NO_REQ, PSCAN_DEFER, C…
49 …{ETSI4_WORLD, ETSI4, WORLD, DISALLOW_ADHOC_11A | DISALLOW_ADHOC_11A_TURB, NO_REQ, PSCAN_DEFER, C…
50 …{ETSI5_WORLD, ETSI5, WORLD, DISALLOW_ADHOC_11A | DISALLOW_ADHOC_11A_TURB, NO_REQ, PSCAN_DEFER, C…
51 …{ETSI6_WORLD, ETSI6, WORLD, DISALLOW_ADHOC_11A | DISALLOW_ADHOC_11A_TURB, NO_REQ, PSCAN_DEFER, C…
53 …{ETSI3_ETSIA, ETSI3, WORLD, DISALLOW_ADHOC_11A | DISALLOW_ADHOC_11A_TURB, NO_REQ, PSCAN_DEFER, C…
[all …]
/freebsd/usr.sbin/syslogd/tests/
H A Dsyslogd_test.sh32 "hello, world (unix)"
33 atf_check -s exit:0 -o match:"unix: hello, world \(unix\)" \
58 "hello, world (v4)"
59 atf_check -s exit:0 -o match:"inet: hello, world \(v4\)" \
84 "hello, world (v6)"
85 atf_check -s exit:0 -o match:"unix: hello, world \(v6\)" \
333 "hello, world"
334 atf_check -s exit:0 -o match:"test: hello, world" cat "${logfile}"
390 logger -p user.debug -t test1 -h 169.254.0.1 -S 169.254.0.2:514 "hello, world"
391 atf_check -o match:"test1: hello, world" cat "${logfile}"
[all …]
/freebsd/contrib/netbsd-tests/usr.bin/cc/
H A Dt_hello.sh30 atf_set "descr" "compile and run \"hello world\""
36 atf_set "descr" "compile and run PIC \"hello world\""
42 atf_set "descr" "compile and run position independent (PIE) \"hello world\""
48 atf_set "descr" "compile and run \"hello world\" for/in netbsd32 emulation"
56 int main(void) {printf("hello world\n");exit(0);}
59 atf_check -s exit:0 -o inline:"hello world\n" ./hello
69 int callpic(void) {printf("hello world\n");}
78 atf_check -s exit:0 -o inline:"hello world\n" ./hello
89 int main(void) {printf("hello world\n");exit(0);}
92 atf_check -s exit:0 -o inline:"hello world\n" ./hello
[all …]
/freebsd/
H A D.cirrus.yml17 - name: amd64-llvm16 World and kernel build and boot smoke test (manual)
25 - name: amd64-llvm17 World and kernel build and boot smoke test (manual)
33 - name: amd64-llvm18 World and kernel build and boot smoke test (manual)
41 - name: amd64-llvm19 World and kernel build and boot smoke test
48 - name: arm64-llvm16 World and kernel build and boot smoke test (manual)
56 - name: arm64-llvm17 World and kernel build and boot smoke test (manual)
64 - name: arm64-llvm18 World and kernel build and boot smoke test (manual)
72 - name: arm64-llvm19 World and kernel build and boot smoke test (manual)
80 - name: amd64-gcc12 World and kernel build and boot smoke test (manual)
89 - name: amd64-gcc13 World and kernel build and boot smoke test (manual)
[all …]
H A DMakefile16 # world - buildworld + installworld, no kernel.
23 # kernel-toolchain - Builds the subset of world necessary to build a kernel
26 # checkworld - Run test suite on installed world.
39 # for world and kernel targets.
40 # toolchains - Build a toolchain for all world and kernel targets.
75 # 3. `make world'
107 # cross build world for other machine types using the buildworld target,
108 # and once the world is built you can cross build a kernel using the
174 stage-packages stage-packages-kernel stage-packages-world stage-packages-source \
175 create-packages-world creat
408 world: upgrade_checks .PHONY global() target
434 world: .PHONY global() target
[all...]
/freebsd/crypto/openssl/test/
H A Dbio_memleak_test.c52 if (!TEST_int_eq(BIO_puts(bio, "Hello World\n"), 12)) in test_bio_get_mem()
61 if (!TEST_mem_eq(bufmem->data, bufmem->length, "Hello World\n", 12)) in test_bio_get_mem()
78 bio = BIO_new_mem_buf("Hello World\n", 12); in test_bio_new_mem_buf()
91 if (!TEST_mem_eq(data, 7, " World\n", 7)) in test_bio_new_mem_buf()
97 if (!TEST_mem_eq(data, 12, "Hello World\n", 12)) in test_bio_new_mem_buf()
113 bio = BIO_new_mem_buf("Hello World\n", 12); in test_bio_rdonly_mem_buf()
132 if (!TEST_mem_eq(data, 7, " World\n", 7)) in test_bio_rdonly_mem_buf()
138 if (!TEST_mem_eq(data, 7, " World\n", 7)) in test_bio_rdonly_mem_buf()
157 if (!TEST_int_eq(BIO_puts(bio, "Hello World\n"), 12)) in test_bio_rdwr_rdonly()
163 if (!TEST_mem_eq(data, 12, "Hello World\n", 12)) in test_bio_rdwr_rdonly()
[all …]
/freebsd/bin/ed/test/
H A Dg1.r2 help! world
5 help! world
8 help! world
11 help! world
14 help! world
H A Du.t5 world
10 world
15 hello world!
23 hello world!!
H A Di.t2 hello world
5 hello world!
8 hello world!!
H A Da.r1 hello world
3 hello world!
8 hello world!!
H A Di.r1 hello world
2 hello world!
7 hello world!!
/freebsd/contrib/bc/tests/dc/
H A Dstrings.txt1 [Hello, World!]ZpR
2 [Hello, World!]pR
3 [Hello, \[ World!]ZpR
4 [Hello, \[ World!]pR
5 [Hello, \] World!]ZpR
6 [Hello, \] World!]pR
/freebsd/bin/sh/tests/parser/
H A Ddollar-quote8.03 [ $'hello\0world' = hello ]
4 [ $'hello\0'$'world' = helloworld ]
6 [ $'hello\000world' = hello ]
7 [ $'hello\000'$'world' = helloworld ]
10 [ $'hello\x00'$'world' = helloworld ]
/freebsd/contrib/one-true-awk/testdir/
H A DT.csconcat10 BEGIN { print "hello" "world"; print helloworld }
14 print "hello" " " "world"
15 print "hello" (" " "world")
25 hello world
26 hello world
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devppkey_ecdsa.txt97 Input = "Hello World"
115 Input = "Hello World"
167 Input = "Hello World"
174 Input = "Hello World"
180 Input = "Hello World"
190 Input = "Hello World"
198 Input = "Hello World"
206 Input = "Hello World"
214 Input = "Hello World"
/freebsd/sys/contrib/device-tree/Bindings/iio/
H A Dmount-matrix.txt13 that produce three-dimensional data in relation to the world where it is
41 external world, the environment where the device is deployed. Usually the data
43 to this world. When using the mounting matrix, the sensor and device orientation
45 world.
47 Device-to-world examples for some three-dimensional sensor types:
49 - Accelerometers have their world frame of reference toward the center of
53 this point. Up and down in the world relative to the device frame of
93 - Magnetometers (compasses) have their world frame of reference relative to the
94 geomagnetic field. The system orientation vis-a-vis the world is defined with
160 space, relative to the device or world point of reference.
/freebsd/lib/libc/tests/gen/
H A Dwordexp_test.c67 r = wordexp("hello world", &we, 0); in ATF_TC_BODY()
71 ATF_REQUIRE(strcmp(we.we_wordv[1], "world") == 0); in ATF_TC_BODY()
100 r = wordexp("hello world", &we, WRDE_DOOFFS); in ATF_TC_BODY()
107 ATF_REQUIRE(strcmp(we.we_wordv[4], "world") == 0); in ATF_TC_BODY()
118 r = wordexp("hello world", &we, 0); in ATF_TC_BODY()
119 r = wordexp("hello world", &we, WRDE_REUSE); in ATF_TC_BODY()
123 ATF_REQUIRE(strcmp(we.we_wordv[1], "world") == 0); in ATF_TC_BODY()
283 r = wordexp("hello world", &we, 0); in ATF_TC_BODY()
287 ATF_REQUIRE(strcmp(we.we_wordv[1], "world") == 0); in ATF_TC_BODY()
307 r = wordexp("hello world", &we, 0); in ATF_TC_BODY()
[all …]
/freebsd/contrib/bsddialog/
H A DREADME.md20 % ./bsddialog --msgbox "Hello World!" 8 20
44 % ./bsddialog --backtitle "TITLE" --title msgbox --msgbox "Hello World!" 5 30
45 % ./bsddialog --theme blackwhite --title msgbox --msgbox "Hello World!" 5 30
46 % ./bsddialog --begin-y 2 --default-no --title yesno --yesno "Hello World!" 5 30
47 % ./bsddialog --ascii-lines --pause "Hello World!" 8 50 10
49 % ./bsddialog --title yesno --hline "bsddialog" --yesno "Hello World!" 5 25
50 % ./bsddialog --extra-button --help-button --yesno "Hello World!" 0 0
/freebsd/contrib/bc/tests/dc/errors/
H A D22.txt1 [Hello, World!]ZpR
3 [Hello, \[ World!]pR
4 [Hello, \] World!]ZpR
5 [Hello, \] World!]pR
/freebsd/contrib/openpam/t/
H A Dt_openpam_readword.c336 const char *word = "hello#world";
350 const char *word[] = { "hello", "world" };
417 t_fprintf(tf, "\\\nhello world\n");
443 t_fprintf(tf, "hello\\\n world\n");
611 t_fprintf(tf, "'hello world'\n");
613 ret = orw_expect(tf, "hello world", 0 /*lines*/, 0 /*eof*/, 1 /*eol*/);
624 t_fprintf(tf, "\"hello world\"\n");
626 ret = orw_expect(tf, "hello world", 0 /*lines*/, 0 /*eof*/, 1 /*eol*/);
642 t_fprintf(tf, "'hello 'world\n");
644 ret = orw_expect(tf, "hello world", 0 /*lines*/, 0 /*eof*/, 1 /*eol*/);
[all …]
/freebsd/contrib/unbound/dynlibmod/examples/
H A Dhelloworld.c41 log_info("dynlib: hello world from init"); in init()
54 log_info("dynlib: hello world from deinit"); in deinit()
64 log_info("dynlib: hello world from operate"); in operate()
95 log_info("dynlib: hello world from inform_super"); in inform_super()
101 log_info("dynlib: hello world from clear"); in clear()
112 log_info("dynlib: hello world from get_mem"); in get_mem()
123 log_info("dynlib: hello world from callback"); in reply_callback()
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/t/
H A Dtemplate-encoding.t30 )->fill_in(HASH => { name => 'World' });
32 is $str, "\x{4f60}\x{597d} World";
45 )->fill_in(HASH => { name => 'World' });
47 is $str, "Ol\x{e1} World";
/freebsd/bin/echo/tests/
H A Decho_test.sh37 atf_check -s ignore -o inline:"Hello world" \
38 /bin/echo -n "Hello world"
50 atf_check -s ignore -o inline:"Hello world" \
51 /bin/echo "Hello world\c"
/freebsd/contrib/bc/tests/bc/
H A Dasciify_array_results.txt1 Hello, World!
2 Hello, World!
3 Hello, World! Sup!

12345678910>>...40