Searched refs:is_helper (Results 1 - 6 of 6) sorted by relevance
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_discard_or_demote.c | 82 /* find best place to insert is_helper */ in insert_is_helper() 103 nir_ssa_def *is_helper = *(nir_ssa_def**) data; in nir_lower_load_helper_to_is_helper() local 107 /* insert is_helper at last top level occasion */ in nir_lower_load_helper_to_is_helper() 108 if (is_helper == NULL) { in nir_lower_load_helper_to_is_helper() 109 is_helper = insert_is_helper(b, instr); in nir_lower_load_helper_to_is_helper() 110 *(nir_ssa_def**)data = is_helper; in nir_lower_load_helper_to_is_helper() 117 * we can insert new is_helper() intrinsics. These are placed at in nir_lower_load_helper_to_is_helper() 119 if (is_helper == NULL) in nir_lower_load_helper_to_is_helper() 120 is_helper = insert_is_helper(b, instr); in nir_lower_load_helper_to_is_helper() 121 nir_ssa_def_rewrite_uses(&intrin->dest.ssa, is_helper); in nir_lower_load_helper_to_is_helper() 188 nir_ssa_def *is_helper = NULL; nir_lower_discard_or_demote() local [all...] |
H A D | nir_lower_is_helper_invocation.c | 66 nir_ssa_def *is_helper = nir_load_deref(b, is_helper_deref); in nir_lower_load_and_store_is_helper() local 67 nir_ssa_def_rewrite_uses(&intrin->dest.ssa, is_helper); in nir_lower_load_and_store_is_helper() 113 nir_variable *is_helper = nir_local_variable_create(entrypoint, in nir_lower_is_helper_invocation() local 119 nir_deref_instr *is_helper_deref = nir_build_deref_var(&b, is_helper); in nir_lower_is_helper_invocation()
|
/third_party/libuv/test/ |
H A D | runner.h | 43 int is_helper; member 69 #define TEST_ENTRY_CUSTOM(name, is_helper, show_output, timeout) \ 70 { #name, #name, &run_test_##name, is_helper, show_output, timeout }, 139 int process_start(char *name, char* part, process_info_t *p, int is_helper);
|
H A D | runner.c | 76 if (!task->is_helper) { in run_tests() 92 if (task->is_helper) { in run_tests() 172 if (task->is_helper && strcmp(test, task->process_name) == 0) { in run_test() 184 if (!task->is_helper) { in run_test() 191 1 /* is_helper */) == -1) { in run_test() 208 if (task->is_helper) { in run_test() 215 0 /* !is_helper */) == -1) { in run_test() 376 if (helper->is_helper && strcmp(helper->task_name, task->task_name) == 0) { in find_helpers() 397 if (task->is_helper) { in print_tests()
|
H A D | runner-unix.c | 85 int process_start(char* name, char* part, process_info_t* p, int is_helper) { in process_start() argument 102 if (is_helper == 0 && arg != NULL && atoi(arg) != 0) { in process_start() 122 if (is_helper) { in process_start() 151 if (is_helper) in process_start() 167 if (!is_helper) in process_start()
|
H A D | runner-win.c | 73 int process_start(char *name, char *part, process_info_t *p, int is_helper) { in process_start() argument 83 if (!is_helper) { in process_start()
|
Completed in 4 milliseconds