| /xsrc/external/mit/glu/dist/src/libnurbs/interface/ |
| H A D | bezierEval.h | 36 void bezierCurveEval(float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retpoint[]); 37 void bezierCurveEvalDer(float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retDer[]); 38 void bezierCurveEvalDerGen(int der, float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retDer[]); 41 void bezierSurfEvalDerGen(int uder, int vder, float u0, float u1, int uorder, float v0, float v1, int vorder, int dimension, float *ctlpoints, int ustride, int vstride, float u, float v, float ret[]); 43 void bezierSurfEval(float u0, float u1, int uorder, float v0, float v1, int vorder, int dimension, float *ctlpoints, int ustride, int vstride, float u, float v, float ret[]); 45 void bezierSurfEvalNormal(float u0, float u1, int uorder, float v0, float v1, int vorder, int dimension, float *ctlpoints, int ustride, int vstride, float u, float v, float retNormal[]);
|
| H A D | bezierPatch.cc | 49 * uorder*vorder*dimension 52 bezierPatch* bezierPatchMake(float umin, float vmin, float umax, float vmax, int uorder, int vorder, int dimension) argument 62 ret->dimension = dimension; 63 ret->ctlpoints = (float*) malloc(sizeof(float) * dimension * uorder * vorder); 71 bezierPatch* bezierPatchMake2(float umin, float vmin, float umax, float vmax, int uorder, int vorder, int dimension, int ustride, int vstride, float* ctlpoints) argument 81 ret->dimension = dimension; 82 ret->ctlpoints = (float*) malloc(sizeof(float) * dimension * uorder * vorder); 86 int the_ustride = vorder * dimension; [all...] |
| H A D | bezierEval.cc | 61 static void bezierCurveEvalfast(float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retpoint[]); 75 void bezierCurveEval(float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retpoint[]) argument 83 for(k=0; k<dimension; k++) 89 for(k=0; k<dimension; k++) { 99 void bezierCurveEvalfast(float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retpoint[]) 106 for(j=0; j<dimension; j++) 112 for(j=0; j<dimension; j++) 117 for(j=0; j<dimension; j++) 125 void bezierCurveEvalDer(float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retDer[]) argument 133 for(k=0; k<dimension; 146 bezierCurveEvalDerGen(int der,float u0,float u1,int order,float * ctlpoints,int stride,int dimension,float u,float retDer[]) argument 176 bezierSurfEvalDerGen(int uder,int vder,float u0,float u1,int uorder,float v0,float v1,int vorder,int dimension,float * ctlpoints,int ustride,int vstride,float u,float v,float ret[]) argument 192 bezierSurfEval(float u0,float u1,int uorder,float v0,float v1,int vorder,int dimension,float * ctlpoints,int ustride,int vstride,float u,float v,float ret[]) argument 202 bezierSurfEvalNormal(float u0,float u1,int uorder,float v0,float v1,int vorder,int dimension,float * ctlpoints,int ustride,int vstride,float u,float v,float retNormal[]) argument [all...] |
| H A D | bezierPatch.h | 47 *Each control point can have dimension 3 or 4: (x,y,z,w). 57 int dimension; member in struct:bezierPatch 71 bezierPatch* bezierPatchMake(float umin, float vmin, float umax, float vmax, int urder, int vorder, int dimension); 73 bezierPatch* bezierPatchMake2(float umin, float vmin, float umax, float vmax, int urder, int vorder, int dimension, int ustride, int vstride, float *ctlpoints);
|
| H A D | glcurveval.cc | 210 int dimension = 0; local in function:OpenGLCurveEvaluator::map1f 215 dimension = 3; 219 dimension = 4; 223 dimension = 1; 227 dimension = 4; 231 dimension = 3; 235 dimension = 1; 239 dimension = 2; 244 dimension = 3; 248 dimension [all...] |
| H A D | bezierPatchMesh.cc | 103 int dimension; local in function:bezierPatchMeshMake 107 if(maptype == GL_MAP2_VERTEX_3) dimension = 3; 108 else if (maptype==GL_MAP2_VERTEX_4) dimension = 4; 120 ret->bpatch = bezierPatchMake(umin, vmin, umax, vmax, uorder, vorder, dimension); 123 the_ustride = vorder * dimension; 124 the_vstride = dimension; 127 for(k=0; k<dimension; k++) 489 int dimension = bpm->bpatch->dimension; local in function:bezierPatchMeshEval 490 int ustride = dimension * vorde [all...] |
| H A D | glinterface.cc | 207 int dimension; local in function:gluNurbsSurface 210 dimension = 3; 213 dimension = 4; 222 dimension,
|
| H A D | insurfeval.cc | 252 int ustride = bpm->bpatch->dimension * bpm->bpatch->vorder; 253 int vstride = bpm->bpatch->dimension; 255 (bpm->bpatch->dimension == 3)? GL_MAP2_VERTEX_3 : GL_MAP2_VERTEX_4, 514 * pu: dimension 3 515 * pv: dimension 3 516 * n: return normal, of dimension 3 940 *k: the dimension of the object space: usually 2,3,or 4. 945 *retPoint: the computed point (one point) with dimension k. 1838 ustride = p->dimension * p->vorder; 1839 vstride = p->dimension; [all...] |
| H A D | glcurveval.h | 57 int k; //the dimension 116 int dimension,
|
| /xsrc/external/mit/freetype/dist/src/pshinter/ |
| H A D | pshalgo.c | 399 FT_Int dimension ) 413 ps_debug_hint_func( hint, dimension ); 438 FT_Int dimension, 441 PSH_Dimension dim = &globals->dimension[dimension]; 457 if ( ( dimension == 0 && !glyph->do_horz_hints ) || 458 ( dimension == 1 && !glyph->do_vert_hints ) ) 470 do_snapping = ( dimension == 0 && glyph->do_horz_snapping ) || 471 ( dimension == 1 && glyph->do_vert_snapping ); 479 if ( dimension 396 ps_simple_scale(PSH_Hint_Table table,FT_Fixed scale,FT_Fixed delta,FT_Int dimension) argument 436 psh_hint_align(PSH_Hint hint,PSH_Globals globals,FT_Int dimension,PSH_Glyph glyph) argument 845 psh_hint_table_align_hints(PSH_Hint_Table table,PSH_Globals globals,FT_Int dimension,PSH_Glyph glyph) argument 1080 psh_glyph_load_points(PSH_Glyph glyph,FT_Int dimension) argument 1114 psh_glyph_save_points(PSH_Glyph glyph,FT_Int dimension) argument 1564 psh_glyph_find_strong_points(PSH_Glyph glyph,FT_Int dimension) argument 1718 psh_glyph_interpolate_strong_points(PSH_Glyph glyph,FT_Int dimension) argument 1769 psh_glyph_interpolate_normal_points(PSH_Glyph glyph,FT_Int dimension) argument 1923 psh_glyph_interpolate_other_points(PSH_Glyph glyph,FT_Int dimension) argument 2080 FT_Int dimension; local in function:ps_hints_apply [all...] |
| H A D | pshrec.c | 541 /* finalize a given dimension */ 543 ps_dimension_done( PS_Dimension dimension, argument 546 ps_mask_table_done( &dimension->counters, memory ); 547 ps_mask_table_done( &dimension->masks, memory ); 548 ps_hint_table_done( &dimension->hints, memory ); 552 /* initialize a given dimension */ 554 ps_dimension_init( PS_Dimension dimension ) argument 556 dimension->hints.num_hints = 0; 557 dimension->masks.num_masks = 0; 558 dimension 840 ps_hints_stem(PS_Hints hints,FT_UInt dimension,FT_Int count,FT_Long * stems) argument 888 ps_hints_t1stem3(PS_Hints hints,FT_UInt dimension,FT_Fixed * stems) argument 1125 t1_hints_stem(T1_Hints hints,FT_UInt dimension,FT_Fixed * coords) argument 1169 t2_hints_stems(T2_Hints hints,FT_UInt dimension,FT_Int count,FT_Fixed * coords) argument [all...] |
| H A D | pshglob.h | 133 /* dimension 0 => X coordinates + vertical hints/stems */ 134 /* dimension 1 => Y coordinates + horizontal hints/stems */ 138 PSH_DimensionRec dimension[2]; member in struct:PSH_GlobalsRec_ 166 psh_dimension_snap_width( PSH_Dimension dimension,
|
| H A D | pshglob.c | 44 PSH_Dimension dim = &globals->dimension[direction]; 85 psh_dimension_snap_width( PSH_Dimension dimension, 89 FT_Pos width = FT_MulFix( org_width, dimension->scale_mult ); 94 for ( n = 0; n < dimension->stdw.count; n++ ) 100 w = dimension->stdw.widths[n].cur; 627 globals->dimension[0].stdw.count = 0; 628 globals->dimension[1].stdw.count = 0; 663 PSH_Dimension dim = &globals->dimension[1]; 683 PSH_Dimension dim = &globals->dimension[0]; 738 globals->dimension[ [all...] |
| H A D | pshrec.h | 113 /* dimension-specific hints descriptor */ 124 /* dimension 0 => X coordinates + vertical hints/stems */ 125 /* dimension 1 => Y coordinates + horizontal hints/stems */ 132 PS_DimensionRec dimension[2]; member in struct:PS_HintsRec_
|
| /xsrc/external/mit/mesa-demos/dist/src/xdemos/ |
| H A D | offset.c | 95 static int dimension = 3; variable in typeref:typename:int 209 glScalef(1.0/dimension, 1.0/dimension, 1.0/dimension); 210 for (z = 0; z < dimension; z++) { 211 for (y = 0; y < dimension; y++) { 212 for (x = 0; x < dimension; x++) {
|
| /xsrc/external/mit/freetype/dist/include/freetype/internal/ |
| H A D | pshints.h | 155 * dimension :: 179 FT_UInt dimension, 196 * dimension :: 213 FT_UInt dimension, 435 * either the vertical or horizontal dimension. Equivalent to the 442 * dimension :: 466 FT_UInt dimension, 642 * The function to set the dimension's stems table.
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/tgsi/ |
| H A D | tgsi_build.c | 125 unsigned dimension, 143 declaration.Dimension = dimension; 862 unsigned dimension, 885 src_register.Dimension = dimension; 934 struct tgsi_dimension dimension; local in function:tgsi_default_dimension 936 dimension.Indirect = 0; 937 dimension.Dimension = 0; 938 dimension.Padding = 0; 939 dimension.Index = 0; 941 return dimension; 121 tgsi_build_declaration(unsigned file,unsigned usage_mask,unsigned interpolate,unsigned dimension,unsigned semantic,unsigned invariant,unsigned local,unsigned array,unsigned atomic,unsigned mem_type,struct tgsi_header * header) argument 853 tgsi_build_src_register(unsigned file,unsigned swizzle_x,unsigned swizzle_y,unsigned swizzle_z,unsigned swizzle_w,unsigned negate,unsigned absolute,unsigned indirect,unsigned dimension,int index,struct tgsi_instruction * instruction,struct tgsi_header * header) argument 964 struct tgsi_dimension dimension; local in function:tgsi_build_dimension 992 tgsi_build_dst_register(unsigned file,unsigned mask,unsigned indirect,unsigned dimension,int index,struct tgsi_instruction * instruction,struct tgsi_header * header) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/tgsi/ |
| H A D | tgsi_build.c | 125 unsigned dimension, 143 declaration.Dimension = dimension; 859 unsigned dimension, 882 src_register.Dimension = dimension; 931 struct tgsi_dimension dimension; local in function:tgsi_default_dimension 933 dimension.Indirect = 0; 934 dimension.Dimension = 0; 935 dimension.Padding = 0; 936 dimension.Index = 0; 938 return dimension; 121 tgsi_build_declaration(unsigned file,unsigned usage_mask,unsigned interpolate,unsigned dimension,unsigned semantic,unsigned invariant,unsigned local,unsigned array,unsigned atomic,unsigned mem_type,struct tgsi_header * header) argument 850 tgsi_build_src_register(unsigned file,unsigned swizzle_x,unsigned swizzle_y,unsigned swizzle_z,unsigned swizzle_w,unsigned negate,unsigned absolute,unsigned indirect,unsigned dimension,int index,struct tgsi_instruction * instruction,struct tgsi_header * header) argument 961 struct tgsi_dimension dimension; local in function:tgsi_build_dimension 989 tgsi_build_dst_register(unsigned file,unsigned mask,unsigned indirect,unsigned dimension,int index,struct tgsi_instruction * instruction,struct tgsi_header * header) argument [all...] |
| /xsrc/external/mit/freetype/dist/src/autofit/ |
| H A D | afhints.c | 244 int dimension ) 246 AF_AxisHints axis = &hints->axis[dimension]; 289 int dimension ) 291 AF_AxisHints axis = &hints->axis[dimension]; 303 int dimension ) 305 AF_AxisHints axis = &hints->axis[dimension]; 309 return AF_INDEX_NUM( strong_edges[dimension], edges ); 438 FT_Int dimension; local in function:af_glyph_hints_dump_segments 441 for ( dimension = 1; dimension > 242 af_get_segment_index(AF_GlyphHints hints,int point_idx,int dimension) argument 287 af_get_edge_index(AF_GlyphHints hints,int segment_idx,int dimension) argument 301 af_get_strong_edge_index(AF_GlyphHints hints,AF_Edge * strong_edges,int dimension) argument 500 af_glyph_hints_get_num_segments(AF_GlyphHints hints,FT_Int dimension,FT_Int * num_segments) argument 526 af_glyph_hints_get_segment_offset(AF_GlyphHints hints,FT_Int dimension,FT_Int idx,FT_Pos * offset,FT_Bool * is_blue,FT_Pos * blue_offset) argument 577 FT_Int dimension; local in function:af_glyph_hints_dump_edges [all...] |
| /xsrc/external/mit/libXaw/dist/src/ |
| H A D | Pixmap.c | 803 int orientation, dimension, steps; local in function:GradientLoader 813 if ((argval = XawFindArgVal(params, "dimension")) != NULL 816 dimension = atoi(argval->value); 817 if (dimension <= 0) 821 dimension = 50; 831 steps = dimension; 833 steps = XawMin(steps, dimension); 860 (unsigned)(orientation == VERTICAL ? 1 : dimension), 861 (unsigned)(orientation == VERTICAL ? dimension : 1), (unsigned)depth)) 873 inc = (double)dimension / (doubl [all...] |
| /xsrc/external/mit/xedit/dist/ |
| H A D | util.c | 751 int idx = WindowIndex(w), dimension; local in function:SplitWindow 791 dimension = (int)height - (((int)bw) << 1); 795 dimension -= (int)height; 798 dimension = (int)width - (int)bw; 800 dimension >>= 1; 802 if (dimension <= 0 || dimension < XawTextSinkMaxHeight(sink, 3)) { 851 XtSetArg(args[num_args], XtNmin, dimension); ++num_args; 852 XtSetArg(args[num_args], XtNmax, dimension); ++num_args;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/ |
| H A D | d3d12_compiler.h | 140 uint32_t dimension; member in struct:d3d12_shader::__anon637fe5ff0708
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/docs/source/ |
| H A D | glossary.rst | 19 dimension which is not a power of two.
|
| /xsrc/external/mit/MesaLib/dist/docs/gallium/ |
| H A D | glossary.rst | 19 dimension which is not a power of two.
|
| /xsrc/external/mit/mesa-demos/dist/src/tests/ |
| H A D | getprocaddress.c | 330 check_texture_compression(const char *message, GLenum dimension, argument 356 switch(dimension) { 373 fprintf(stderr, "%s: unknown dimension 0x%04x.\n", message, dimension); 379 glGetTexLevelParameteriv(dimension, 0, GL_TEXTURE_COMPRESSED_ARB, 387 glGetTexLevelParameteriv(dimension, 0, GL_TEXTURE_INTERNAL_FORMAT, 395 glGetTexLevelParameteriv(dimension, 0, GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB, &compressedSize); 403 (*GetCompressedTexImageARB)(dimension, 0, compressedData); 431 exercise_CompressedTextures(GLenum dimension) argument 549 * of these (the "dimension" paramete [all...] |