| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_lower_point_size_mov.c | 49 in->state_slots = ralloc_array(in, nir_state_slot, 1); 50 in->state_slots[0].swizzle = 0; 51 memcpy(in->state_slots[0].tokens, 53 sizeof(in->state_slots[0].tokens));
|
| H A D | nir_lower_patch_vertices.c | 37 var->state_slots = ralloc_array(var, nir_state_slot, var->num_state_slots); 38 memcpy(var->state_slots[0].tokens, tokens, sizeof(*tokens) * STATE_LENGTH); 39 var->state_slots[0].swizzle = SWIZZLE_XXXX;
|
| H A D | nir_lower_alpha_test.c | 103 var->state_slots = ralloc_array(var, nir_state_slot, 1); 104 memcpy(var->state_slots[0].tokens, 106 sizeof(var->state_slots[0].tokens));
|
| H A D | nir_lower_pntc_ytransform.c | 52 var->state_slots = ralloc_array(var, nir_state_slot, 1); 53 var->state_slots[0].swizzle = SWIZZLE_XYZW; 54 memcpy(var->state_slots[0].tokens, state->pntc_state_tokens, 55 sizeof(var->state_slots[0].tokens));
|
| H A D | nir_lower_wpos_ytransform.c | 60 var->state_slots = ralloc_array(var, nir_state_slot, 1); 61 var->state_slots[0].swizzle = SWIZZLE_XYZW; 62 memcpy(var->state_slots[0].tokens, state->options->state_tokens, 63 sizeof(var->state_slots[0].tokens));
|
| H A D | nir_lower_drawpixels.c | 78 var->state_slots = ralloc_array(var, nir_state_slot, 1); 79 memcpy(var->state_slots[0].tokens, state_tokens, 80 sizeof(var->state_slots[0].tokens));
|
| H A D | nir_lower_clip.c | 220 var->state_slots = ralloc_array(var, nir_state_slot, 1); 221 memcpy(var->state_slots[0].tokens, 223 sizeof(var->state_slots[0].tokens));
|
| H A D | nir_split_per_member_structs.c | 66 assert(var->state_slots == NULL);
|
| H A D | nir_clone.c | 160 nvar->state_slots = ralloc_array(nvar, nir_state_slot, var->num_state_slots); 161 memcpy(nvar->state_slots, var->state_slots,
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| H A D | nir_lower_patch_vertices.c | 37 var->state_slots = ralloc_array(var, nir_state_slot, var->num_state_slots); 38 memcpy(var->state_slots[0].tokens, tokens, sizeof(*tokens) * STATE_LENGTH); 39 var->state_slots[0].swizzle = SWIZZLE_XXXX;
|
| H A D | nir_lower_wpos_ytransform.c | 60 var->state_slots = ralloc_array(var, nir_state_slot, 1); 61 var->state_slots[0].swizzle = SWIZZLE_XYZW; 62 memcpy(var->state_slots[0].tokens, state->options->state_tokens, 63 sizeof(var->state_slots[0].tokens));
|
| H A D | nir_lower_drawpixels.c | 78 var->state_slots = ralloc_array(var, nir_state_slot, 1); 79 memcpy(var->state_slots[0].tokens, state_tokens, 80 sizeof(var->state_slots[0].tokens));
|
| H A D | nir_split_per_member_structs.c | 66 assert(var->state_slots == NULL);
|
| H A D | nir_clone.c | 155 nvar->state_slots = ralloc_array(nvar, nir_state_slot, var->num_state_slots); 156 memcpy(nvar->state_slots, var->state_slots,
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| H A D | st_nir_lower_builtin.c | 141 var->state_slots = ralloc_array(var, nir_state_slot, 1); 142 memcpy(var->state_slots[0].tokens, tokens, 143 sizeof(var->state_slots[0].tokens));
|
| H A D | st_glsl_to_nir.cpp | 268 const gl_state_index16 *const stateTokens = uniform->state_slots[0].tokens; 466 const nir_state_slot *const slots = var->state_slots; 467 assert(var->state_slots != NULL);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| H A D | st_nir_lower_builtin.c | 156 var->state_slots = rzalloc_array(var, nir_state_slot, 1); 157 memcpy(var->state_slots[0].tokens, tokens, 158 sizeof(var->state_slots[0].tokens));
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/ |
| H A D | d3d12_nir_passes.c | 54 var->state_slots = ralloc_array(var, nir_state_slot, 1); 55 memcpy(var->state_slots[0].tokens, tokens, 56 sizeof(var->state_slots[0].tokens)); 435 variable->state_slots[0].tokens[0] != STATE_INTERNAL_DRIVER) 438 enum d3d12_state_var var = variable->state_slots[0].tokens[1]; 479 var->state_slots[0].tokens[0] == STATE_INTERNAL_DRIVER) { 513 var->state_slots[0].tokens[0] == STATE_INTERNAL_DRIVER) { 528 ubo->state_slots = ralloc_array(ubo, nir_state_slot, 1); 529 memcpy(ubo->state_slots[0].tokens, tokens, 530 sizeof(ubo->state_slots[ [all...] |
| H A D | d3d12_lower_point_sprite.c | 254 state.uniform->state_slots = ralloc_array(state.uniform, nir_state_slot, 1); 255 memcpy(state.uniform->state_slots[0].tokens, tokens, 256 sizeof(state.uniform->state_slots[0].tokens));
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_nir_uniforms.cpp | 35 const nir_state_slot *const slots = var->state_slots; 36 assert(var->state_slots != NULL);
|
| H A D | brw_link.cpp | 344 const nir_state_slot *const slots = var->state_slots;
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| H A D | ir.h | 399 * \sa ir_variable::state_slots 585 return this->is_interface_instance() ? NULL : this->u.state_slots; 590 return this->is_interface_instance() ? NULL : this->u.state_slots; 597 this->u.state_slots = ralloc_array(this, ir_state_slot, n); 600 if (this->u.state_slots != NULL) 603 return this->u.state_slots; 1034 * Once set at variable creation, \c state_slots must remain invariant. 1037 * and \c state_slots will be \c NULL. 1039 ir_state_slot *state_slots; member in union:ir_variable::__anonaaf38c98010a
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | ir.h | 396 * \sa ir_variable::state_slots 582 return this->is_interface_instance() ? NULL : this->u.state_slots; 587 return this->is_interface_instance() ? NULL : this->u.state_slots; 594 this->u.state_slots = ralloc_array(this, ir_state_slot, n); 597 if (this->u.state_slots != NULL) 600 return this->u.state_slots; 1010 * Once set at variable creation, \c state_slots must remain invariant. 1013 * and \c state_slots will be \c NULL. 1015 ir_state_slot *state_slots; member in union:ir_variable::__anona7da7385010a
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_nir_uniforms.cpp | 35 const nir_state_slot *const slots = var->state_slots; 36 assert(var->state_slots != NULL);
|
| H A D | brw_link.cpp | 351 const nir_state_slot *const slots = var->state_slots;
|