Home
last modified time | relevance | path

Searched refs:world (Results 1 – 25 of 281) sorted by relevance

12345678910>>...12

/freebsd/contrib/pkgconf/libpkgconf/
H A Dqueue.c100 pkgconf_queue_compile(pkgconf_client_t *client, pkgconf_pkg_t *world, pkgconf_list_t *list) in pkgconf_queue_compile() argument
109 pkgconf_dependency_parse(client, world, &world->required, pkgq->package, PKGCONF_PKG_DEPF_QUERY); in pkgconf_queue_compile()
112 return (world->required.head != NULL); in pkgconf_queue_compile()
174 pkgconf_pkg_t *world = data; in pkgconf_queue_collect_dependencies_walk() local
208 pkgconf_node_insert(&flattened_dep->iter, flattened_dep, &world->required); in pkgconf_queue_collect_dependencies_walk()
275 pkgconf_pkg_t *world, in pkgconf_queue_collect_conflicts() argument
309 pkgconf_node_insert(&flattened_conflict->iter, flattened_conflict, &world->conflicts); in pkgconf_queue_collect_conflicts()
317 pkgconf_queue_verify(pkgconf_client_t *client, pkgconf_pkg_t *world, pkgconf_list_t *list, int maxd… in pkgconf_queue_verify() argument
342 result = pkgconf_queue_collect_dependencies(client, &initial_world, world, maxdepth); in pkgconf_queue_verify()
349 result = pkgconf_queue_collect_conflicts(client, world, world, maxdepth); in pkgconf_queue_verify()
[all …]
/freebsd/contrib/pkgconf/cli/
H A Dcore.c154 apply_provides(pkgconf_client_t *client, pkgconf_pkg_t *world, void *unused, int maxdepth) in apply_provides() argument
160 PKGCONF_FOREACH_LIST_ENTRY(world->required.head, iter) in apply_provides()
233 apply_digraph(pkgconf_client_t *client, pkgconf_pkg_t *world, void *data, int maxdepth) in apply_digraph() argument
265 eflag = pkgconf_pkg_traverse(client, world, print_digraph_node, &last_seen, maxdepth, 0); in apply_digraph()
285 apply_print_solution(pkgconf_client_t *client, pkgconf_pkg_t *world, void *unused, int maxdepth) in apply_print_solution() argument
289 eflag = pkgconf_pkg_traverse(client, world, print_solution_node, unused, maxdepth, 0); in apply_print_solution()
296 apply_modversion(pkgconf_client_t *client, pkgconf_pkg_t *world, void *data, int maxdepth) in apply_modversion() argument
308 PKGCONF_FOREACH_LIST_ENTRY(world->required.head, world_iter) in apply_modversion()
338 apply_variables(pkgconf_client_t *client, pkgconf_pkg_t *world, void *unused, int maxdepth) in apply_variables() argument
344 PKGCONF_FOREACH_LIST_ENTRY(world->required.head, iter) in apply_variables()
[all …]
/freebsd/bin/ed/tests/
H A Ded_test.sh32 hello world
35 hello world!
38 hello world!!
43 hello world
45 hello world!
50 hello world!!
168 hello world
171 hello world!
174 hello world!!
179 hello world
[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.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!!
H A Dr1.t1 1;r !echo hello world
3 r !echo hello world
H A Dr1.r2 hello world
7 hello world
H A Du.r3 hello world!!
9 hello world!!
/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/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/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/contrib/pkgconf/cli/bomtool/
H A Dmain.c102 sbom_name(pkgconf_pkg_t *world) in sbom_name() argument
109 PKGCONF_FOREACH_LIST_ENTRY(world->required.head, node) in sbom_name()
127 write_sbom_header(pkgconf_client_t *client, pkgconf_pkg_t *world) in write_sbom_header() argument
137 char *docname = sbom_name(world); in write_sbom_header()
314 generate_sbom_from_world(pkgconf_client_t *client, pkgconf_pkg_t *world) in generate_sbom_from_world() argument
319 if (!write_sbom_header(client, world)) in generate_sbom_from_world()
322 eflag = pkgconf_pkg_traverse(client, world, write_sbom_package, NULL, maximum_traverse_depth, 0); in generate_sbom_from_world()
326 …eflag = pkgconf_pkg_traverse(client, world, write_sbom_relationships, NULL, maximum_traverse_depth… in generate_sbom_from_world()
330 PKGCONF_FOREACH_LIST_ENTRY(world->required.head, node) in generate_sbom_from_world()
390 pkgconf_pkg_t world = { in main() local
[all …]
/freebsd/contrib/pkgconf/tests/api/
H A Dtest-queue.c64 required_count(const pkgconf_pkg_t *world) in required_count() argument
69 PKGCONF_FOREACH_LIST_ENTRY(world->required.head, iter) in required_count()
78 contains_dep(const pkgconf_pkg_t *world, const char *name) in contains_dep() argument
82 PKGCONF_FOREACH_LIST_ENTRY(world->required.head, iter) in contains_dep()
166 apply_cb(pkgconf_client_t *client, pkgconf_pkg_t *world, void *data, int maxdepth) in apply_cb() argument
174 st->deps = required_count(world); in apply_cb()
175 st->saw_qfoo = contains_dep(world, "qfoo"); in apply_cb()
176 st->saw_qbar = contains_dep(world, "qbar"); in apply_cb()
/freebsd/contrib/pkgconf/fuzzer/
H A Dsolver-fuzzer.c123 pkgconf_pkg_t world = { in run_solve() local
132 if (pkgconf_queue_solve(client, &pkgq, &world, SOLVE_MAXDEPTH)) in run_solve()
138 pkgconf_pkg_cflags(client, &world, &cflags, SOLVE_MAXDEPTH); in run_solve()
139 pkgconf_pkg_libs(client, &world, &libs, SOLVE_MAXDEPTH); in run_solve()
149 pkgconf_solution_free(client, &world); in run_solve()
H A Dspdxtool-fuzzer.c138 pkgconf_pkg_t world = { in run_spdx() local
147 if (pkgconf_queue_solve(client, &pkgq, &world, SOLVE_MAXDEPTH)) in run_spdx()
149 spdxtool_generate(client, &world, out, SOLVE_MAXDEPTH, in run_spdx()
152 pkgconf_solution_free(client, &world); in run_spdx()
/freebsd/contrib/netbsd-tests/fs/nfs/nfsservice/
H A Dexports6 # world, where "world" in this case means inside the rump shmif
7 # IP network, i.e. not a very big world. Probably needs some
/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/contrib/pkgconf/cli/spdxtool/
H A Dmain.c114 pkgconf_pkg_t world = in main() local
218 if (!pkgconf_queue_solve(&pkg_client, &pkgq, &world, maximum_traverse_depth)) in main()
229 …if (!spdxtool_generate(&pkg_client, &world, sbom_out, maximum_traverse_depth, creation_time, creat… in main()
238 pkgconf_solution_free(&pkg_client, &world); in main()
/freebsd/contrib/pkgconf/doc/
H A Dlibpkgconf-queue.rst19 .. c:function:: bool pkgconf_queue_compile(pkgconf_client_t *client, pkgconf_pkg_t *world, pkgconf_…
24 :param pkgconf_pkg_t* world: The designated root of the dependency graph.
36 .. c:function:: void pkgconf_solution_free(pkgconf_client_t *client, pkgconf_pkg_t *world, int maxd…
41 …:param pkgconf_pkg_t* world: The root for the generated dependency graph. Should have PKGCONF_PKG…
44 …onf_queue_solve(pkgconf_client_t *client, pkgconf_list_t *list, pkgconf_pkg_t *world, int maxdepth)
50 …:param pkgconf_pkg_t* world: The root for the generated dependency graph, provided by the caller. …
/freebsd/tools/build/options/
H A DWITH_CLEAN1 Clean before building world and/or kernel.
4 in the root of the source tree will also force a clean world build.
/freebsd/crypto/openssl/doc/designs/ddd/
H A DREADME.md8 proposed API change is how a broad spectrum of real-world OpenSSL applications
19 full spectrum of ways in which real-world applications use the OpenSSL APIs.
22 representative of a broad spectrum of real-world OpenSSL-based applications,
23 this ensures that API evolution is made both with reference to real-world API
112 …ng.c) | S-AOSF | A `SSL_set_fd`-based blocking example demonstrating real-world OpenSSL API usage …
113 …) | A-AOSF | A `SSL_set_fd`-based non-blocking example demonstrating real-world OpenSSL API usage …
115 …use of a memory buffer to feed OpenSSL encrypted data; uses libuv, a real-world async I/O library |

12345678910>>...12