Searched refs:is_helper (Results 1 – 7 of 7) sorted by relevance
/third_party/mesa3d/src/compiler/nir/ |
D | nir_lower_discard_or_demote.c | 103 nir_ssa_def *is_helper = *(nir_ssa_def**) data; in nir_lower_load_helper_to_is_helper() local 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() 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; in nir_lower_discard_or_demote() local 193 &is_helper); in nir_lower_discard_or_demote()
|
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/ |
D | runner.h | 43 int is_helper; member 69 #define TEST_ENTRY_CUSTOM(name, is_helper, show_output, timeout) \ argument 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);
|
D | runner.c | 92 if (!task->is_helper) { in run_tests() 110 if (task->is_helper) { in run_tests() 190 if (task->is_helper && strcmp(test, task->process_name) == 0) { in run_test() 202 if (!task->is_helper) { in run_test() 226 if (task->is_helper) { in run_test() 394 if (helper->is_helper && strcmp(helper->task_name, task->task_name) == 0) { in find_helpers() 415 if (task->is_helper) { in print_tests()
|
D | runner-unix.c | 81 int process_start(char* name, char* part, process_info_t* p, int is_helper) { in process_start() argument 98 if (is_helper == 0 && arg != NULL && atoi(arg) != 0) { in process_start() 118 if (is_helper) { in process_start() 143 if (is_helper) in process_start() 155 if (!is_helper) in process_start()
|
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()
|
/third_party/mesa3d/docs/relnotes/ |
D | 21.1.0.rst | 1383 - nir: lower load_helper to is_helper if the shader uses demote()
|