| /external/mesa3d/src/mesa/tnl/ |
| t_vertex.c | 111 struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb; 118 GLvector4f *vptr = VB->AttribPtr[a[j].attrib]; 383 struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb; 391 register GLvector4f *vptr = VB->AttribPtr[a->attrib]; 398 struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb; 405 GLvector4f *vptr = VB->AttribPtr[a[j].attrib]; 440 /* Emit VB vertices start..end to dest. Note that VB vertex a [all...] |
| t_vertex_generic.c | 1017 struct vertex_buffer *VB = &tnl->vb; 1028 const GLfloat *dstclip = VB->ClipPtr->data[edst]; 1042 a[0].insert[4-1]( &a[0], vdst, VB->ClipPtr->data[edst] ); 1091 struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb; 1093 /* If stride is zero, BackfaceColorPtr is constant across the VB, so 1098 if (VB->BackfaceColorPtr && VB->BackfaceColorPtr->stride) { 1099 assert(VB->BackfaceColorPtr->stride == 4 * sizeof(GLfloat)) [all...] |
| /external/mesa3d/src/mesa/tnl_dd/ |
| t_dd_tritmp.h | 36 * DO_TWOSIDE: Plug back-color values from the VB into backfacing triangles, 57 * VERT_SET_RGBA: Assign vertex rgba from VB color. 116 struct vertex_buffer *VB = &TNL_CONTEXT( ctx )->vb; 180 GLfloat (*vbcolor)[4] = VB->BackfaceColorPtr->data; 189 if (VB->BackfaceColorPtr->stride) { 190 ASSERT(VB->BackfaceColorPtr->stride == 4*sizeof(GLfloat)); 206 if (HAVE_SPEC && VB->BackfaceSecondaryColorPtr) { 207 GLfloat (*vbspec)[4] = VB->BackfaceSecondaryColorPtr->data; 208 ASSERT(VB->BackfaceSecondaryColorPtr->stride == 4*sizeof(GLfloat)) [all...] |
| /external/mesa3d/src/mesa/drivers/dri/i915/ |
| i915_fragprog.c | [all...] |
| intel_tris.c | 159 /** Returns mapped VB space for the given number of vertices */ 168 /* Check for space in the existing VB */ 178 /* Start a new VB */ 179 if (intel->prim.vb == NULL) 180 intel->prim.vb = malloc(INTEL_VB_SIZE); 181 intel->prim.vb_bo = drm_intel_bo_alloc(intel->bufmgr, "vb", 189 addr = (uint32_t *)(intel->prim.vb + intel->prim.current_offset); 295 * This is somewhat unfortunate -- VB width is tied up with 324 * Uploads the locally-accumulated VB into the buffer object. 328 * and also lets us clflush less if we dispatch with a partially-filled VB 375 GLuint *vb = intel_get_prim_space(intel, 6); local 403 GLuint *vb = intel_get_prim_space(intel, 3); local 417 GLuint *vb = intel_get_prim_space(intel, 2); local 429 GLuint *vb = intel_get_prim_space(intel, 1); local 929 GLuint *vb = intel_get_prim_space(intel, (n - 2) * 3); local [all...] |
| /external/mesa3d/src/mesa/drivers/dri/r200/ |
| r200_tcl.c | 111 #define GET_MESA_ELTS() TNL_CONTEXT(ctx)->vb.Elts 295 struct vertex_buffer *VB = &tnl->vb; 317 for (i = 0; i < VB->PrimitiveCount; ++i) 319 if (!VB->Primitive[i].count) 325 const GLuint elt_count =(VB->Primitive[i].count/GET_MAX_HW_ELTS() + 1); 329 if ( (!VB->Elts && VB->Primitive[i].count >= MAX_CONVERSION_SIZE) 361 struct vertex_buffer *VB = &tnl->vb; [all...] |
| r200_swtcl.c | 82 struct vertex_buffer *VB = &tnl->vb; 90 if ( VB->NdcPtr != NULL ) { 91 VB->AttribPtr[VERT_ATTRIB_POS] = VB->NdcPtr; 94 VB->AttribPtr[VERT_ATTRIB_POS] = VB->ClipPtr; 97 assert( VB->AttribPtr[VERT_ATTRIB_POS] != NULL ); 169 GLuint sz = VB->AttribPtr[_TNL_ATTRIB_TEX0 + i]->size; 547 const GLuint * const elt = TNL_CONTEXT(ctx)->vb.Elts; [all...] |
| /external/mesa3d/src/mesa/drivers/dri/radeon/ |
| radeon_tcl.c | 287 struct vertex_buffer *VB = &tnl->vb; 319 for (i = 0; i < VB->PrimitiveCount; ++i) 328 if (!VB->Primitive[i].count) 330 if ( (!VB->Elts && VB->Primitive[i].count >= MAX_CONVERSION_SIZE) 335 space_required += VB->Primitive[i].count * 3; 359 struct vertex_buffer *VB = &tnl->vb; 369 if (VB->Count == 0 [all...] |
| radeon_swtcl.c | 94 struct vertex_buffer *VB = &tnl->vb; 101 if ( VB->NdcPtr != NULL ) { 102 VB->AttribPtr[VERT_ATTRIB_POS] = VB->NdcPtr; 105 VB->AttribPtr[VERT_ATTRIB_POS] = VB->ClipPtr; 108 assert( VB->AttribPtr[VERT_ATTRIB_POS] != NULL ); 183 GLuint sz = VB->AttribPtr[_TNL_ATTRIB_TEX0 + i]->size; 414 struct vertex_buffer *VB = &tnl->vb [all...] |
| /external/clang/lib/AST/ |
| CommentParser.cpp | 658 VerbatimBlockComment *VB = 689 S.actOnVerbatimBlockFinish(VB, Tok.getLocation(), 695 S.actOnVerbatimBlockFinish(VB, SourceLocation(), "", 699 return VB;
|
| /external/clang/test/SemaCXX/ |
| destructor.cpp | 206 struct VB { 208 virtual ~VB(); 211 struct VD: VB {}; 213 struct VF final: VB {}; 238 void use(VB&); 244 VB vb; use(vb); local 270 VB* vb = new VB[4] local 297 VB* vb = new VB(); local 301 VB* vb = new VD(); local [all...] |
| /external/llvm/lib/Transforms/InstCombine/ |
| InstCombinePHI.cpp | [all...] |
| /external/llvm/include/llvm/DebugInfo/PDB/ |
| PDBTypes.h | 246 VB = 0x0b,
|
| /toolchain/binutils/binutils-2.25/opcodes/ |
| ppc-opc.c | 159 /* The VB field in a VX form instruction when it must be the same 678 /* The VB field in a VA, VX or VXR form instruction. */ 679 #define VB VA + 1 683 #define VC VB + 1 [all...] |