| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| lower_vector.cpp | 147 unsigned assigned; local 149 /* Write-mask in the destination that receives counted by 'assigned'. 157 * - All constant components can be assigned at once. 159 * unary operator can be assigned at once. 163 assigned = 0; 172 case GLSL_TYPE_UINT: d.u[assigned] = c->value.u[0]; break; 173 case GLSL_TYPE_INT: d.i[assigned] = c->value.i[0]; break; 174 case GLSL_TYPE_FLOAT: d.f[assigned] = c->value.f[0]; break; 175 case GLSL_TYPE_BOOL: d.b[assigned] = c->value.b[0]; break; 180 assigned++ [all...] |
| link_varyings.h | 125 return this->matched_candidate->toplevel_var->data.assigned; 216 * The vertex shader output location that the linker assigned for this 217 * variable. -1 if a location hasn't been assigned yet. 222 * Used to store the buffer assigned by xfb_buffer. 227 * Used to store the offset assigned by xfb_offset. 281 * StreamId assigned to this varying (defaults to 0). Can only be set to
|
| lower_named_interface_blocks.cpp | 230 lhs_var->data.assigned = 1; 242 lhs_var->data.assigned = 1;
|
| lower_xfb_varying.cpp | 231 new_variable->data.assigned = true;
|
| linker.cpp | 304 * array using an index too large for its actual size assigned at 1615 * visitor, adjust the interface type to reflect the newly assigned array 2697 * locations assigned based on the declaration ordering and 2837 * assigned. 2846 * If locations are (or can be, in case of dry-running) successfully assigned, 2885 * 3. Sort the attributes without assigned locations by number of slots 2887 * locations assigned by the application may prevent large attributes 2890 * 4. Assign locations to any inputs without assigned locations. 2901 /* Temporary storage for the set of attributes that need locations assigned. 2919 /* Temporary array for the set of attributes that have locations assigned, 2923 ir_variable *assigned[12 * 4]; \/* (max # of FS outputs) * # components *\/ local [all...] |
| ast_function.cpp | 316 !var->data.assigned && 324 var->data.assigned = true; 346 !var->data.assigned && 1301 * arguments provided. The arguments are assigned in order, starting at 1452 * scalars. The components of the constructor parameters are assigned 1521 * that were just assigned. 1574 * just assigned. 1588 * \param row_base First component of the destination column to be assigned 1589 * \param count Number of components to be assigned 1608 * that are to be assigned to the column of the matrix [all...] |
| link_varyings.cpp | 417 if (front_color != NULL && front_color->data.assigned) 421 if (back_color != NULL && back_color->data.assigned) 521 "assigned to location %d and component %d\n", 857 * explicitly assigned location. 926 assert(!input->data.assigned); 960 * variable to have a location assigned. 1189 /* Only transform feedback varyings can be assigned to non-zero streams, 1337 * generic attribute index <i>, the active array elements are assigned to 1339 * number of attributes and components assigned to each element are 1377 * invocation, the buffer contents at the assigned offset will b [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| lower_vector.cpp | 147 unsigned assigned; local 149 /* Write-mask in the destination that receives counted by 'assigned'. 157 * - All constant components can be assigned at once. 159 * unary operator can be assigned at once. 163 assigned = 0; 172 case GLSL_TYPE_UINT: d.u[assigned] = c->value.u[0]; break; 173 case GLSL_TYPE_INT: d.i[assigned] = c->value.i[0]; break; 174 case GLSL_TYPE_FLOAT: d.f[assigned] = c->value.f[0]; break; 175 case GLSL_TYPE_BOOL: d.b[assigned] = c->value.b[0]; break; 180 assigned++ [all...] |
| link_varyings.h | 118 return this->matched_candidate->toplevel_var->data.assigned; 204 * The vertex shader output location that the linker assigned for this 205 * variable. -1 if a location hasn't been assigned yet. 210 * Used to store the buffer assigned by xfb_buffer. 215 * Used to store the offset assigned by xfb_offset. 269 * StreamId assigned to this varying (defaults to 0). Can only be set to
|
| lower_named_interface_blocks.cpp | 225 lhs_var->data.assigned = 1; 237 lhs_var->data.assigned = 1;
|
| linker.cpp | 302 * array using an index too large for its actual size assigned at 1572 * visitor, adjust the interface type to reflect the newly assigned array 2597 * locations assigned based on the declaration ordering and 2737 * assigned. 2746 * If locations are (or can be, in case of dry-running) successfully assigned, 2785 * 3. Sort the attributes without assigned locations by number of slots 2787 * locations assigned by the application may prevent large attributes 2790 * 4. Assign locations to any inputs without assigned locations. 2801 /* Temporary storage for the set of attributes that need locations assigned. 2819 /* Temporary array for the set of attributes that have locations assigned, 2823 ir_variable *assigned[12 * 4]; \/* (max # of FS outputs) * # components *\/ local [all...] |
| ast_function.cpp | 281 !var->data.assigned && 289 var->data.assigned = true; 311 !var->data.assigned && 1244 * arguments provided. The arguments are assigned in order, starting at 1395 * scalars. The components of the constructor parameters are assigned 1464 * that were just assigned. 1517 * just assigned. 1531 * \param row_base First component of the destination column to be assigned 1532 * \param count Number of components to be assigned 1551 * that are to be assigned to the column of the matrix [all...] |
| link_varyings.cpp | 407 if (front_color != NULL && front_color->data.assigned) 411 if (back_color != NULL && back_color->data.assigned) 511 "assigned to location %d and component %d\n", 807 * explicitly assigned location. 876 assert(!input->data.assigned); 909 * variable to have a location assigned. 1137 /* Only transform feedback varyings can be assigned to non-zero streams, 1276 * invocation, the buffer contents at the assigned offset will be 1278 * member that is assigned a transform feedback offset, the space is 1675 * The location which has been assigned for this varying. This i [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/ |
| nv50_ir_ssa.cpp | 219 // liveIn(bb) = usedBeforeAssigned(bb) U (liveOut(bb) - assigned(bb)) 225 BitSet assigned(allLValues.getSize(), true); 247 if (i->getSrc(s)->asLValue() && !assigned.test(i->getSrc(s)->id)) 250 assigned.set(i->getDef(d)->id); 256 if (!assigned.test(it->get()->id)) 261 bb->liveSet.andNot(assigned);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/ |
| nv50_ir_ssa.cpp | 219 // liveIn(bb) = usedBeforeAssigned(bb) U (liveOut(bb) - assigned(bb)) 225 BitSet assigned(allLValues.getSize(), true); 247 if (i->getSrc(s)->asLValue() && !assigned.test(i->getSrc(s)->id)) 250 assigned.set(i->getDef(d)->id); 256 if (!assigned.test(it->get()->id)) 261 bb->liveSet.andNot(assigned);
|
| /xsrc/external/mit/xterm/dist/unicode/ |
| convmap.pl | 124 * UCS codes will ever be assigned by ISO. So to get Unicode character
|
| /xsrc/external/mit/MesaLib/dist/src/amd/compiler/ |
| aco_register_allocation.cpp | 51 bool assigned = false; member in struct:aco::__anon498::assignment 54 assignment(PhysReg reg_, RegClass rc_) : reg(reg_), rc(rc_), assigned(-1) {} 57 assigned = true; 1374 * one. If one of the variables has 0xffffffff as an ID, the register assigned 1444 if (ctx.assignments[op.tempId()].assigned) { 1486 * - whether the operand is assigned and 1492 ctx.assignments[op.tempId()].assigned) { 1533 if (affinity.assigned) { 1546 if (affinity.assigned) { 1586 if (ctx.assignments[def.tempId()].assigned && def.regClass().type() == info.rc.type() [all...] |
| /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/ |
| MESA_drm_image.spec | 23 EGL Extension #not assigned 113 If <name> is non-NULL, a global name is assigned to the image and
|
| MESA_texture_signed_rgba.spec | 31 Not assigned ?
|
| /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/OLD/ |
| MESA_packed_depth_stencil.spec | 229 Brian's edits, assigned values to new enums.
|
| /xsrc/external/mit/MesaLib.old/dist/docs/specs/ |
| MESA_drm_image.spec | 23 EGL Extension #not assigned 113 If <name> is non-NULL, a global name is assigned to the image and
|
| MESA_texture_signed_rgba.spec | 31 Not assigned ?
|
| /xsrc/external/mit/MesaLib.old/dist/docs/specs/OLD/ |
| MESA_packed_depth_stencil.spec | 229 Brian's edits, assigned values to new enums.
|
| /xsrc/external/mit/MesaLib/dist/src/egl/drivers/dri2/ |
| platform_wayland.c | 1452 bool assigned; local 1455 assigned = false; 1469 assigned = true; 1473 if (!assigned && dri2_dpy->is_different_gpu) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/egl/drivers/dri2/ |
| platform_wayland.c | 1341 bool assigned; local 1344 assigned = false; 1358 assigned = true; 1362 if (!assigned && dri2_dpy->is_different_gpu) {
|