/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_goto_ifs.c | 40 struct path_fork *fork; member 133 * Sets all path variables to reach the target block via a fork 136 set_path_vars(nir_builder *b, struct path_fork *fork, nir_block *target) in set_path_vars() argument 138 while (fork) { in set_path_vars() 140 if (_mesa_set_search(fork->paths[i].reachable, target)) { in set_path_vars() 141 if (fork->is_var) { in set_path_vars() 142 nir_store_var(b, fork->path_var, nir_imm_bool(b, i), 1); in set_path_vars() 144 assert(fork->path_ssa == NULL); in set_path_vars() 145 fork->path_ssa = nir_imm_bool(b, i); in set_path_vars() 147 fork in set_path_vars() 161 set_path_vars_cond(nir_builder *b, struct path_fork *fork, nir_src condition, nir_block *then_block, nir_block *else_block) set_path_vars_cond() argument 275 fork_reachable(struct path_fork *fork) fork_reachable() argument 335 struct path_fork *fork = rzalloc(mem_ctx, struct path_fork); loop_routing_start() local 345 struct path_fork *fork = rzalloc(mem_ctx, struct path_fork); loop_routing_start() local 362 fork_condition(nir_builder *b, struct path_fork *fork) fork_condition() argument 515 struct path_fork *fork = rzalloc(mem_ctx, struct path_fork); select_fork_recur() local 780 struct path_fork *fork = rzalloc(mem_ctx, struct path_fork); organize_levels() local [all...] |
/third_party/musl/libc-test/src/functionalext/fortify/ |
H A D | invalid_param.c | 41 pid_t pid = fork(); in clearerr_0100() 63 pid_t pid = fork(); in feof_0100() 85 pid_t pid = fork(); in ferror_0100() 107 pid_t pid = fork(); in fgetc_0100() 129 pid_t pid = fork(); in fgets_0100() 152 pid_t pid = fork(); in fprintf_0100() 175 pid_t pid = fork(); in fputc_0100() 197 pid_t pid = fork(); in fputs_0100() 219 pid_t pid = fork(); in fread_0600() 242 pid_t pid = fork(); in fscanf_0100() [all...] |
H A D | unistd.c | 42 int pid = fork(); in unistd_dynamic_chk_001() 45 t_error("fork failed: %d\n", __LINE__); in unistd_dynamic_chk_001() 81 int pid = fork(); in unistd_dynamic_chk_002() 84 t_error("fork failed: %d\n", __LINE__); in unistd_dynamic_chk_002() 121 int pid = fork(); in unistd_dynamic_chk_003() 124 t_error("fork failed: %d\n", __LINE__); in unistd_dynamic_chk_003() 162 int pid = fork(); in unistd_dynamic_chk_004() 165 t_error("fork failed: %d\n", __LINE__); in unistd_dynamic_chk_004() 202 int pid = fork(); in unistd_dynamic_chk_005() 205 t_error("fork faile in unistd_dynamic_chk_005() [all...] |
H A D | string_ext.c | 80 int pid = fork(); in test_strcat_0020() 83 t_error("fork failed: %s\n", strerror(errno)); in test_strcat_0020() 131 int pid = fork(); in test_strncat_0020() 134 t_error("fork failed: %s\n", strerror(errno)); in test_strncat_0020() 179 int pid = fork(); in test_stpcpy_0020() 182 t_error("fork failed: %s\n", strerror(errno)); in test_stpcpy_0020() 230 int pid = fork(); in test_stpncpy_0020() 233 t_error("fork failed: %s\n", strerror(errno)); in test_stpncpy_0020() 280 int pid = fork(); in test_strncpy_0020() 283 t_error("fork faile in test_strncpy_0020() [all...] |
H A D | fcntl_ext.c | 63 int pid = fork(); in open_0020() 66 t_error("fork failed: %s\n", strerror(errno)); in open_0020() 97 int pid = fork(); in open_0030() 100 t_error("fork failed: %s\n", strerror(errno)); in open_0030() 159 int pid = fork(); in openat_0020() 162 t_error("fork failed: %s\n", strerror(errno)); in openat_0020() 193 int pid = fork(); in openat_0030() 196 t_error("fork failed: %s\n", strerror(errno)); in openat_0030() 256 int pid = fork(); in open64_0020() 259 t_error("fork faile in open64_0020() [all...] |
/third_party/node/test/parallel/ |
H A D | test-child-process-spawn-typeerror.js | 25 const { spawn, fork, execFile } = require('child_process'); 176 // Verify that fork has same argument parsing behavior as spawn. 178 // function fork(file=f [,args=a] [, options=o]) has valid combinations: 183 fork(empty); 184 fork(empty, a); 185 fork(empty, a, o); 186 fork(empty, o); 187 fork(empty, u, u); 188 fork(empty, u, o); 189 fork(empt [all...] |
H A D | test-child-process-fork-args.js | 5 const { fork } = require('child_process'); 7 // This test check the arguments of `fork` method 25 assert.throws(() => fork(modulePath), { 32 const cp = fork(fixtures.path('child-process-echo-options.js')); 41 // Ensure that the second argument of `fork` 42 // and `fork` should parse options 54 fork(fixtures.path('child-process-echo-options.js'), arg); 66 const cp = fork(fixtures.path('child-process-echo-options.js'), args, { 97 fork(fixtures.path('child-process-echo-options.js'), [], arg);
|
H A D | test-pending-deprecation.js | 17 const fork = require('child_process').fork; 41 fork(__filename, ['switch'], { 49 fork(__filename, ['switch'], { 57 fork(__filename, ['env'], {
|
H A D | test-child-process-fork-stdio-string-variant.js | 4 // Ensures that child_process.fork can accept string 9 const fork = require('child_process').fork; 17 () => fork(childScript, malFormedOpts), 21 const child = fork(childScript, { stdio: stringVariant });
|
H A D | test-cluster-bind-twice.js | 45 const fork = require('child_process').fork; 51 const a = fork(__filename, ['one']); 52 const b = fork(__filename, ['two']); 109 const worker = cluster.fork();
|
H A D | test-child-process-fork-net.js | 29 const fork = require('child_process').fork; 89 const child1 = fork(process.argv[1], ['child', '1']); 90 const child2 = fork(process.argv[1], ['child', '2']); 91 const child3 = fork(process.argv[1], ['child', '3']);
|
H A D | test-child-process-internal.js | 42 const fork = require('child_process').fork; 43 const child = fork(process.argv[1], ['child']);
|
H A D | test-internal-module-require.js | 17 const fork = require('child_process').fork; 104 const child = fork(__filename, ['child'], {
|
H A D | test-tls-env-bad-extra-ca.js | 11 const fork = require('child_process').fork; 31 fork(__filename, opts)
|
/third_party/rust/crates/syn/src/ |
H A D | discouraged.rs | 10 /// This is the opposite operation to [`ParseStream::fork`]. You can fork a 12 /// stream to the fork to "commit" the parsing from the fork to the main 18 /// is that when the fork fails to parse an `A`, it's impossible to tell 28 /// [`ParseStream::fork`]: ParseBuffer::fork 39 /// This is the exact kind of parsing behavior which requires the "fork, 40 /// try, commit" behavior that [`ParseStream::fork`] discourages. With 89 /// let fork [all...] |
/third_party/musl/libc-test/src/functionalext/info/ |
H A D | fatal_message.c | 38 t_error("error in fork!");\ 71 fpid = fork(); in fatal_message_0020() 105 fpid = fork(); in fatal_message_0030() 114 fpidChild = fork(); in fatal_message_0030() 116 t_printf("error in fork!"); in fatal_message_0030() 156 fpid = fork(); in fatal_message_0040() 165 fpidChild = fork(); in fatal_message_0040() 167 t_printf("error in fork!"); in fatal_message_0040() 243 fpid = fork(); in fatal_message_0060() 269 fpid = fork(); in fatal_message_0070() [all...] |
/third_party/rust/crates/nix/test/sys/ |
H A D | test_wait.rs | 14 match unsafe { fork() }.expect("Error: Fork Failed") { in test_wait_signal() 41 match unsafe { fork() }.expect("Error: Fork Failed") { in test_waitid_signal() 61 match unsafe { fork() }.expect("Error: Fork Failed") { in test_wait_exit() 84 match unsafe { fork() }.expect("Error: Fork Failed") { in test_waitid_exit() 115 match unsafe { fork() }.unwrap() { in test_waitstatus_pid() 134 match unsafe { fork() }.unwrap() { in test_waitid_pid() 240 match unsafe { fork() }.expect("Error: Fork Failed") { in test_wait_ptrace() 252 match unsafe { fork() }.expect("Error: Fork Failed") { in test_waitid_ptrace()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_signal/ |
H A D | 1-2.c | 69 if (td->fork) \ 78 if (td->fork) \ 118 int fork; /* 0: Test between threads. ~ !0: Test across processes, if supported (mmap) */ member 203 char fork; /* the children are processes */ member 400 td->fork = 0; in main() 455 if ((pshared > 0) && (scenarii[scenar].fork != 0)) { in main() 456 td->fork = 1; in main() 490 if (td->fork == 0) { in main() 499 p_child[ch] = fork(); in main() 575 if (td->fork in main() [all...] |
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
H A D | gauger.h | 25 if(!(__gauger_p=fork())){\ 26 if(!fork()){ \ 53 if(!(__gauger_p=fork())){\ 54 if(!fork()){\
|
/third_party/node/test/sequential/ |
H A D | test-inspector-port-cluster.js | 242 cluster.fork(params).on('exit', common.mustCall(checkExitCode)); 251 cluster.fork(params).on('exit', common.mustCall(checkExitCode)); 260 cluster.fork(params).on('exit', common.mustCall(checkExitCode)); 269 cluster.fork(params).on('exit', common.mustCall(checkExitCode)); 282 cluster.fork(params).on('exit', common.mustCall(checkExitCode)); 295 cluster.fork(params).on('exit', common.mustCall(checkExitCode)); 303 cluster.fork(params).on('exit', common.mustCall(checkExitCode)); 329 childProcess.fork(__filename, {
|
/third_party/ltp/testcases/kernel/syscalls/fanotify/ |
H A D | fanotify19.c | 48 unsigned int fork; member 183 if (tc->fork) in test_fanotify() 208 } else if ((!tc->fork && event->pid != pid) || in test_fanotify() 209 (tc->fork && event->pid != 0)) { in test_fanotify() 215 (tc->fork ? 0 : pid), in test_fanotify()
|
/third_party/node/test/common/ |
H A D | benchmark.js | 4 const fork = require('child_process').fork; 16 const child = fork(runjs, argv, {
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_destroy/ |
H A D | 2-1.c | 70 if (td->fork) \ 79 if (td->fork) \ 119 int fork; /* 0: Test between threads. ~ !0: Test across processes, if supported (mmap) */ member 206 char fork; /* the children are processes */ member 442 td->fork = 0; in main() 497 if ((pshared > 0) && (scenarii[scenar].fork != 0)) { in main() 498 td->fork = 1; in main() 535 if (td->fork == 0) { in main() 544 p_child[ch] = fork(); in main() 729 if (td->fork in main() [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/ |
H A D | 1-2.c | 53 if (td->fork) { \ 65 if (td->fork) { \ 104 int fork; member 165 char fork; /* the children are processes */ member 427 td->fork = 0; in main() 474 if ((pshared > 0) && (scenarii[scenar].fork != 0)) in main() 475 td->fork = 1; in main() 515 if (td->fork == 0) { in main() 544 tmp->data.p = fork(); in main() 625 if (td->fork in main() [all...] |
H A D | 2-3.c | 46 if (td->fork) { \ 54 if (td->fork) { \ 87 int fork; member 149 char fork; member 354 td->fork = 0; in main() 403 if ((pshared > 0) && (scenarii[scenar].fork != 0)) in main() 404 td->fork = 1; in main() 432 if (td->fork == 0) { in main() 441 children.ch[children.nb].p = fork(); in main() 504 if (td->fork in main() [all...] |