| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/ |
| H A D | gfx6_multisample_state.c | 34 GLuint index, GLfloat *result) 43 bits = brw_multisample_positions_1x_2x >> (8 * index); 46 bits = brw_multisample_positions_4x >> (8 * index); 49 bits = brw_multisample_positions_8x[index >> 2] >> (8 * (index & 3)); 52 bits = brw_multisample_positions_16x[index >> 2] >> (8 * (index & 3)); 32 gfx6_get_sample_position(struct gl_context * ctx,struct gl_framebuffer * fb,GLuint index,GLfloat * result) argument
|
| /xsrc/external/mit/xf86-video-ati/dist/src/ |
| H A D | radeon_atomwrapper.h | 28 extern int ParseTableWrapper(void *pspace, int index, void *CAIL,
|
| /xsrc/external/mit/MesaLib.old/dist/src/egl/main/ |
| H A D | egldispatchstubs.h | 13 void __eglSetDispatchIndex(const char *name, int index); 22 __eglMustCastToProperFunctionPointerType __eglDispatchFetchByDisplay(EGLDisplay dpy, int index); 23 __eglMustCastToProperFunctionPointerType __eglDispatchFetchByDevice(EGLDeviceEXT dpy, int index); 24 __eglMustCastToProperFunctionPointerType __eglDispatchFetchByCurrent(int index);
|
| H A D | egldispatchstubs.c | 42 int index = FindProcIndex(name); local in function:__eglSetDispatchIndex 43 __EGL_DISPATCH_FUNC_INDICES[index] = dispatchIndex; 48 int index = FindProcIndex(name); local in function:__eglDispatchFindDispatchFunction 49 return (void *) __EGL_DISPATCH_FUNCS[index]; 53 int index, EGLint errorCode) 58 func = exports->fetchDispatchEntry(vendor, __EGL_DISPATCH_FUNC_INDICES[index]); 67 _eglError(errorCode, __EGL_DISPATCH_FUNC_NAMES[index]); 75 _eglError(errorCode, __EGL_DISPATCH_FUNC_NAMES[index]); 82 __eglMustCastToProperFunctionPointerType __eglDispatchFetchByCurrent(int index) argument 91 return FetchVendorFunc(vendor, index, EGL_SUCCES 52 FetchVendorFunc(__EGLvendorInfo * vendor,int index,EGLint errorCode) argument 94 __eglDispatchFetchByDisplay(EGLDisplay dpy,int index) argument 103 __eglDispatchFetchByDevice(EGLDeviceEXT dev,int index) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/egl/main/ |
| H A D | egldispatchstubs.h | 40 void __eglSetDispatchIndex(const char *name, int index); 49 __eglMustCastToProperFunctionPointerType __eglDispatchFetchByDisplay(EGLDisplay dpy, int index); 50 __eglMustCastToProperFunctionPointerType __eglDispatchFetchByDevice(EGLDeviceEXT dpy, int index); 51 __eglMustCastToProperFunctionPointerType __eglDispatchFetchByCurrent(int index);
|
| H A D | egldispatchstubs.c | 69 int index = FindProcIndex(name); local in function:__eglSetDispatchIndex 70 __EGL_DISPATCH_FUNC_INDICES[index] = dispatchIndex; 75 int index = FindProcIndex(name); local in function:__eglDispatchFindDispatchFunction 76 return (void *) __EGL_DISPATCH_FUNCS[index]; 80 int index, EGLint errorCode) 85 func = exports->fetchDispatchEntry(vendor, __EGL_DISPATCH_FUNC_INDICES[index]); 94 _eglError(errorCode, __EGL_DISPATCH_FUNC_NAMES[index]); 102 _eglError(errorCode, __EGL_DISPATCH_FUNC_NAMES[index]); 109 __eglMustCastToProperFunctionPointerType __eglDispatchFetchByCurrent(int index) argument 118 return FetchVendorFunc(vendor, index, EGL_SUCCES 79 FetchVendorFunc(__EGLvendorInfo * vendor,int index,EGLint errorCode) argument 121 __eglDispatchFetchByDisplay(EGLDisplay dpy,int index) argument 130 __eglDispatchFetchByDevice(EGLDeviceEXT dev,int index) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/ |
| H A D | u_dual_blend.h | 15 int index) 17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) || 18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) || 19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) || 20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor)) 14 util_blend_state_is_dual(const struct pipe_blend_state * blend,int index) argument
|
| H A D | u_bitmask.h | 65 * Returns the bit index on success, or UTIL_BITMASK_INVALID_INDEX on out of 74 * Returns the input index on success, or UTIL_BITMASK_INVALID_INDEX on out of 79 unsigned index); 83 unsigned index); 87 unsigned index); 104 * Search for the first set bit, starting from the giving index. 110 unsigned index);
|
| H A D | u_handle_table.c | 131 unsigned index) 141 object = ht->objects[index]; 143 ht->objects[index] = NULL; 155 unsigned index; local in function:handle_table_add 170 index = ht->filled; 171 handle = index + 1; 178 if(!handle_table_resize(ht, index)) 181 assert(!ht->objects[index]); 182 ht->objects[index] = object; 194 unsigned index; local in function:handle_table_set 130 handle_table_clear(struct handle_table * ht,unsigned index) argument 241 unsigned index; local in function:handle_table_remove 264 unsigned index; local in function:handle_table_get_next_handle 285 unsigned index; local in function:handle_table_destroy [all...] |
| H A D | u_bitmask.c | 138 unsigned index) 141 assert(index < bm->size); 143 if (index == bm->filled) { 155 unsigned index) 158 assert(index < bm->size); 160 if (index < bm->filled) 161 bm->filled = index; 174 /* linear search for an empty index, starting at filled position */ 205 unsigned index) 214 if (!util_bitmask_resize(bm, index)) 137 util_bitmask_filled_set(struct util_bitmask * bm,unsigned index) argument 154 util_bitmask_filled_unset(struct util_bitmask * bm,unsigned index) argument 204 util_bitmask_set(struct util_bitmask * bm,unsigned index) argument 230 util_bitmask_clear(struct util_bitmask * bm,unsigned index) argument 253 util_bitmask_get(struct util_bitmask * bm,unsigned index) argument 280 util_bitmask_get_next_index(struct util_bitmask * bm,unsigned index) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/ |
| H A D | u_dual_blend.h | 15 int index) 17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) || 18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) || 19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) || 20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor)) 14 util_blend_state_is_dual(const struct pipe_blend_state * blend,int index) argument
|
| H A D | u_bitmask.h | 65 * Returns the bit index on success, or UTIL_BITMASK_INVALID_INDEX on out of 74 * Returns the input index on success, or UTIL_BITMASK_INVALID_INDEX on out of 79 unsigned index); 83 unsigned index); 87 unsigned index); 104 * Search for the first set bit, starting from the giving index. 110 unsigned index);
|
| H A D | u_handle_table.c | 131 unsigned index) 141 object = ht->objects[index]; 143 ht->objects[index] = NULL; 155 unsigned index; local in function:handle_table_add 170 index = ht->filled; 171 handle = index + 1; 178 if(!handle_table_resize(ht, index)) 181 assert(!ht->objects[index]); 182 ht->objects[index] = object; 194 unsigned index; local in function:handle_table_set 130 handle_table_clear(struct handle_table * ht,unsigned index) argument 241 unsigned index; local in function:handle_table_remove 264 unsigned index; local in function:handle_table_get_next_handle 285 unsigned index; local in function:handle_table_destroy [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | api_arrayelt.c | 29 * state for the element/index. 89 VertexAttrib1NbvNV(GLuint index, const GLbyte *v) argument 91 CALL_VertexAttrib1fNV(GET_DISPATCH(), (index, BYTE_TO_FLOAT(v[0]))); 95 VertexAttrib1bvNV(GLuint index, const GLbyte *v) argument 97 CALL_VertexAttrib1fNV(GET_DISPATCH(), (index, (GLfloat)v[0])); 101 VertexAttrib2NbvNV(GLuint index, const GLbyte *v) argument 103 CALL_VertexAttrib2fNV(GET_DISPATCH(), (index, BYTE_TO_FLOAT(v[0]), BYTE_TO_FLOAT(v[1]))); 107 VertexAttrib2bvNV(GLuint index, const GLbyte *v) argument 109 CALL_VertexAttrib2fNV(GET_DISPATCH(), (index, (GLfloat)v[0], (GLfloat)v[1])); 113 VertexAttrib3NbvNV(GLuint index, cons argument 121 VertexAttrib3bvNV(GLuint index,const GLbyte * v) argument 127 VertexAttrib4NbvNV(GLuint index,const GLbyte * v) argument 136 VertexAttrib4bvNV(GLuint index,const GLbyte * v) argument 144 VertexAttrib1NubvNV(GLuint index,const GLubyte * v) argument 150 VertexAttrib1ubvNV(GLuint index,const GLubyte * v) argument 156 VertexAttrib2NubvNV(GLuint index,const GLubyte * v) argument 163 VertexAttrib2ubvNV(GLuint index,const GLubyte * v) argument 169 VertexAttrib3NubvNV(GLuint index,const GLubyte * v) argument 176 VertexAttrib3ubvNV(GLuint index,const GLubyte * v) argument 183 VertexAttrib4NubvNV(GLuint index,const GLubyte * v) argument 192 VertexAttrib4ubvNV(GLuint index,const GLubyte * v) argument 202 VertexAttrib1NsvNV(GLuint index,const GLshort * v) argument 208 VertexAttrib1svNV(GLuint index,const GLshort * v) argument 214 VertexAttrib2NsvNV(GLuint index,const GLshort * v) argument 221 VertexAttrib2svNV(GLuint index,const GLshort * v) argument 227 VertexAttrib3NsvNV(GLuint index,const GLshort * v) argument 235 VertexAttrib3svNV(GLuint index,const GLshort * v) argument 242 VertexAttrib4NsvNV(GLuint index,const GLshort * v) argument 251 VertexAttrib4svNV(GLuint index,const GLshort * v) argument 260 VertexAttrib1NusvNV(GLuint index,const GLushort * v) argument 266 VertexAttrib1usvNV(GLuint index,const GLushort * v) argument 272 VertexAttrib2NusvNV(GLuint index,const GLushort * v) argument 279 VertexAttrib2usvNV(GLuint index,const GLushort * v) argument 286 VertexAttrib3NusvNV(GLuint index,const GLushort * v) argument 294 VertexAttrib3usvNV(GLuint index,const GLushort * v) argument 301 VertexAttrib4NusvNV(GLuint index,const GLushort * v) argument 310 VertexAttrib4usvNV(GLuint index,const GLushort * v) argument 319 VertexAttrib1NivNV(GLuint index,const GLint * v) argument 325 VertexAttrib1ivNV(GLuint index,const GLint * v) argument 331 VertexAttrib2NivNV(GLuint index,const GLint * v) argument 338 VertexAttrib2ivNV(GLuint index,const GLint * v) argument 344 VertexAttrib3NivNV(GLuint index,const GLint * v) argument 352 VertexAttrib3ivNV(GLuint index,const GLint * v) argument 359 VertexAttrib4NivNV(GLuint index,const GLint * v) argument 368 VertexAttrib4ivNV(GLuint index,const GLint * v) argument 377 VertexAttrib1NuivNV(GLuint index,const GLuint * v) argument 383 VertexAttrib1uivNV(GLuint index,const GLuint * v) argument 389 VertexAttrib2NuivNV(GLuint index,const GLuint * v) argument 396 VertexAttrib2uivNV(GLuint index,const GLuint * v) argument 403 VertexAttrib3NuivNV(GLuint index,const GLuint * v) argument 411 VertexAttrib3uivNV(GLuint index,const GLuint * v) argument 418 VertexAttrib4NuivNV(GLuint index,const GLuint * v) argument 427 VertexAttrib4uivNV(GLuint index,const GLuint * v) argument 436 VertexAttrib1fvNV(GLuint index,const GLfloat * v) argument 442 VertexAttrib2fvNV(GLuint index,const GLfloat * v) argument 448 VertexAttrib3fvNV(GLuint index,const GLfloat * v) argument 454 VertexAttrib4fvNV(GLuint index,const GLfloat * v) argument 462 VertexAttrib1dvNV(GLuint index,const GLdouble * v) argument 468 VertexAttrib2dvNV(GLuint index,const GLdouble * v) argument 474 VertexAttrib3dvNV(GLuint index,const GLdouble * v) argument 480 VertexAttrib4dvNV(GLuint index,const GLdouble * v) argument 594 VertexAttrib1NbvARB(GLuint index,const GLbyte * v) argument 600 VertexAttrib1bvARB(GLuint index,const GLbyte * v) argument 606 VertexAttrib2NbvARB(GLuint index,const GLbyte * v) argument 612 VertexAttrib2bvARB(GLuint index,const GLbyte * v) argument 618 VertexAttrib3NbvARB(GLuint index,const GLbyte * v) argument 626 VertexAttrib3bvARB(GLuint index,const GLbyte * v) argument 632 VertexAttrib4NbvARB(GLuint index,const GLbyte * v) argument 641 VertexAttrib4bvARB(GLuint index,const GLbyte * v) argument 649 VertexAttrib1NubvARB(GLuint index,const GLubyte * v) argument 655 VertexAttrib1ubvARB(GLuint index,const GLubyte * v) argument 661 VertexAttrib2NubvARB(GLuint index,const GLubyte * v) argument 669 VertexAttrib2ubvARB(GLuint index,const GLubyte * v) argument 676 VertexAttrib3NubvARB(GLuint index,const GLubyte * v) argument 684 VertexAttrib3ubvARB(GLuint index,const GLubyte * v) argument 693 VertexAttrib4NubvARB(GLuint index,const GLubyte * v) argument 704 VertexAttrib4ubvARB(GLuint index,const GLubyte * v) argument 715 VertexAttrib1NsvARB(GLuint index,const GLshort * v) argument 721 VertexAttrib1svARB(GLuint index,const GLshort * v) argument 727 VertexAttrib2NsvARB(GLuint index,const GLshort * v) argument 735 VertexAttrib2svARB(GLuint index,const GLshort * v) argument 742 VertexAttrib3NsvARB(GLuint index,const GLshort * v) argument 752 VertexAttrib3svARB(GLuint index,const GLshort * v) argument 760 VertexAttrib4NsvARB(GLuint index,const GLshort * v) argument 771 VertexAttrib4svARB(GLuint index,const GLshort * v) argument 780 VertexAttrib1NusvARB(GLuint index,const GLushort * v) argument 786 VertexAttrib1usvARB(GLuint index,const GLushort * v) argument 792 VertexAttrib2NusvARB(GLuint index,const GLushort * v) argument 799 VertexAttrib2usvARB(GLuint index,const GLushort * v) argument 806 VertexAttrib3NusvARB(GLuint index,const GLushort * v) argument 814 VertexAttrib3usvARB(GLuint index,const GLushort * v) argument 821 VertexAttrib4NusvARB(GLuint index,const GLushort * v) argument 830 VertexAttrib4usvARB(GLuint index,const GLushort * v) argument 838 VertexAttrib1NivARB(GLuint index,const GLint * v) argument 844 VertexAttrib1ivARB(GLuint index,const GLint * v) argument 850 VertexAttrib2NivARB(GLuint index,const GLint * v) argument 857 VertexAttrib2ivARB(GLuint index,const GLint * v) argument 864 VertexAttrib3NivARB(GLuint index,const GLint * v) argument 872 VertexAttrib3ivARB(GLuint index,const GLint * v) argument 879 VertexAttrib4NivARB(GLuint index,const GLint * v) argument 888 VertexAttrib4ivARB(GLuint index,const GLint * v) argument 897 VertexAttrib1NuivARB(GLuint index,const GLuint * v) argument 903 VertexAttrib1uivARB(GLuint index,const GLuint * v) argument 909 VertexAttrib2NuivARB(GLuint index,const GLuint * v) argument 916 VertexAttrib2uivARB(GLuint index,const GLuint * v) argument 923 VertexAttrib3NuivARB(GLuint index,const GLuint * v) argument 931 VertexAttrib3uivARB(GLuint index,const GLuint * v) argument 938 VertexAttrib4NuivARB(GLuint index,const GLuint * v) argument 947 VertexAttrib4uivARB(GLuint index,const GLuint * v) argument 956 VertexAttrib1fvARB(GLuint index,const GLfloat * v) argument 962 VertexAttrib2fvARB(GLuint index,const GLfloat * v) argument 968 VertexAttrib3fvARB(GLuint index,const GLfloat * v) argument 974 VertexAttrib4fvARB(GLuint index,const GLfloat * v) argument 982 VertexAttrib1dvARB(GLuint index,const GLdouble * v) argument 988 VertexAttrib2dvARB(GLuint index,const GLdouble * v) argument 994 VertexAttrib3dvARB(GLuint index,const GLdouble * v) argument 1000 VertexAttrib4dvARB(GLuint index,const GLdouble * v) argument 1010 VertexAttribI1bv(GLuint index,const GLbyte * v) argument 1016 VertexAttribI2bv(GLuint index,const GLbyte * v) argument 1022 VertexAttribI3bv(GLuint index,const GLbyte * v) argument 1028 VertexAttribI4bv(GLuint index,const GLbyte * v) argument 1035 VertexAttribI1ubv(GLuint index,const GLubyte * v) argument 1041 VertexAttribI2ubv(GLuint index,const GLubyte * v) argument 1047 VertexAttribI3ubv(GLuint index,const GLubyte * v) argument 1053 VertexAttribI4ubv(GLuint index,const GLubyte * v) argument 1061 VertexAttribI1sv(GLuint index,const GLshort * v) argument 1067 VertexAttribI2sv(GLuint index,const GLshort * v) argument 1073 VertexAttribI3sv(GLuint index,const GLshort * v) argument 1079 VertexAttribI4sv(GLuint index,const GLshort * v) argument 1086 VertexAttribI1usv(GLuint index,const GLushort * v) argument 1092 VertexAttribI2usv(GLuint index,const GLushort * v) argument 1098 VertexAttribI3usv(GLuint index,const GLushort * v) argument 1104 VertexAttribI4usv(GLuint index,const GLushort * v) argument 1112 VertexAttribI1iv(GLuint index,const GLint * v) argument 1118 VertexAttribI2iv(GLuint index,const GLint * v) argument 1124 VertexAttribI3iv(GLuint index,const GLint * v) argument 1130 VertexAttribI4iv(GLuint index,const GLint * v) argument 1137 VertexAttribI1uiv(GLuint index,const GLuint * v) argument 1143 VertexAttribI2uiv(GLuint index,const GLuint * v) argument 1149 VertexAttribI3uiv(GLuint index,const GLuint * v) argument 1155 VertexAttribI4uiv(GLuint index,const GLuint * v) argument 1163 VertexAttribL1dv(GLuint index,const GLdouble * v) argument 1169 VertexAttribL2dv(GLuint index,const GLdouble * v) argument 1175 VertexAttribL3dv(GLuint index,const GLdouble * v) argument 1181 VertexAttribL4dv(GLuint index,const GLdouble * v) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | api_arrayelt.c | 29 * state for the element/index. 96 VertexAttrib1NbvNV(GLuint index, const GLbyte *v) argument 98 CALL_VertexAttrib1fNV(get_dispatch(), (index, BYTE_TO_FLOAT(v[0]))); 102 VertexAttrib1bvNV(GLuint index, const GLbyte *v) argument 104 CALL_VertexAttrib1fNV(get_dispatch(), (index, (GLfloat)v[0])); 108 VertexAttrib2NbvNV(GLuint index, const GLbyte *v) argument 110 CALL_VertexAttrib2fNV(get_dispatch(), (index, BYTE_TO_FLOAT(v[0]), BYTE_TO_FLOAT(v[1]))); 114 VertexAttrib2bvNV(GLuint index, const GLbyte *v) argument 116 CALL_VertexAttrib2fNV(get_dispatch(), (index, (GLfloat)v[0], (GLfloat)v[1])); 120 VertexAttrib3NbvNV(GLuint index, cons argument 128 VertexAttrib3bvNV(GLuint index,const GLbyte * v) argument 134 VertexAttrib4NbvNV(GLuint index,const GLbyte * v) argument 143 VertexAttrib4bvNV(GLuint index,const GLbyte * v) argument 151 VertexAttrib1NubvNV(GLuint index,const GLubyte * v) argument 157 VertexAttrib1ubvNV(GLuint index,const GLubyte * v) argument 163 VertexAttrib2NubvNV(GLuint index,const GLubyte * v) argument 170 VertexAttrib2ubvNV(GLuint index,const GLubyte * v) argument 176 VertexAttrib3NubvNV(GLuint index,const GLubyte * v) argument 183 VertexAttrib3ubvNV(GLuint index,const GLubyte * v) argument 190 VertexAttrib4NubvNV(GLuint index,const GLubyte * v) argument 199 VertexAttrib4ubvNV(GLuint index,const GLubyte * v) argument 209 VertexAttrib1NsvNV(GLuint index,const GLshort * v) argument 215 VertexAttrib1svNV(GLuint index,const GLshort * v) argument 221 VertexAttrib2NsvNV(GLuint index,const GLshort * v) argument 228 VertexAttrib2svNV(GLuint index,const GLshort * v) argument 234 VertexAttrib3NsvNV(GLuint index,const GLshort * v) argument 242 VertexAttrib3svNV(GLuint index,const GLshort * v) argument 249 VertexAttrib4NsvNV(GLuint index,const GLshort * v) argument 258 VertexAttrib4svNV(GLuint index,const GLshort * v) argument 267 VertexAttrib1NusvNV(GLuint index,const GLushort * v) argument 273 VertexAttrib1usvNV(GLuint index,const GLushort * v) argument 279 VertexAttrib2NusvNV(GLuint index,const GLushort * v) argument 286 VertexAttrib2usvNV(GLuint index,const GLushort * v) argument 293 VertexAttrib3NusvNV(GLuint index,const GLushort * v) argument 301 VertexAttrib3usvNV(GLuint index,const GLushort * v) argument 308 VertexAttrib4NusvNV(GLuint index,const GLushort * v) argument 317 VertexAttrib4usvNV(GLuint index,const GLushort * v) argument 326 VertexAttrib1NivNV(GLuint index,const GLint * v) argument 332 VertexAttrib1ivNV(GLuint index,const GLint * v) argument 338 VertexAttrib2NivNV(GLuint index,const GLint * v) argument 345 VertexAttrib2ivNV(GLuint index,const GLint * v) argument 351 VertexAttrib3NivNV(GLuint index,const GLint * v) argument 359 VertexAttrib3ivNV(GLuint index,const GLint * v) argument 366 VertexAttrib4NivNV(GLuint index,const GLint * v) argument 375 VertexAttrib4ivNV(GLuint index,const GLint * v) argument 384 VertexAttrib1NuivNV(GLuint index,const GLuint * v) argument 390 VertexAttrib1uivNV(GLuint index,const GLuint * v) argument 396 VertexAttrib2NuivNV(GLuint index,const GLuint * v) argument 403 VertexAttrib2uivNV(GLuint index,const GLuint * v) argument 410 VertexAttrib3NuivNV(GLuint index,const GLuint * v) argument 418 VertexAttrib3uivNV(GLuint index,const GLuint * v) argument 425 VertexAttrib4NuivNV(GLuint index,const GLuint * v) argument 434 VertexAttrib4uivNV(GLuint index,const GLuint * v) argument 443 VertexAttrib1fvNV(GLuint index,const GLfloat * v) argument 449 VertexAttrib2fvNV(GLuint index,const GLfloat * v) argument 455 VertexAttrib3fvNV(GLuint index,const GLfloat * v) argument 461 VertexAttrib4fvNV(GLuint index,const GLfloat * v) argument 469 VertexAttrib1dvNV(GLuint index,const GLdouble * v) argument 475 VertexAttrib2dvNV(GLuint index,const GLdouble * v) argument 481 VertexAttrib3dvNV(GLuint index,const GLdouble * v) argument 487 VertexAttrib4dvNV(GLuint index,const GLdouble * v) argument 601 VertexAttrib1NbvARB(GLuint index,const GLbyte * v) argument 607 VertexAttrib1bvARB(GLuint index,const GLbyte * v) argument 613 VertexAttrib2NbvARB(GLuint index,const GLbyte * v) argument 619 VertexAttrib2bvARB(GLuint index,const GLbyte * v) argument 625 VertexAttrib3NbvARB(GLuint index,const GLbyte * v) argument 633 VertexAttrib3bvARB(GLuint index,const GLbyte * v) argument 639 VertexAttrib4NbvARB(GLuint index,const GLbyte * v) argument 648 VertexAttrib4bvARB(GLuint index,const GLbyte * v) argument 656 VertexAttrib1NubvARB(GLuint index,const GLubyte * v) argument 662 VertexAttrib1ubvARB(GLuint index,const GLubyte * v) argument 668 VertexAttrib2NubvARB(GLuint index,const GLubyte * v) argument 676 VertexAttrib2ubvARB(GLuint index,const GLubyte * v) argument 683 VertexAttrib3NubvARB(GLuint index,const GLubyte * v) argument 691 VertexAttrib3ubvARB(GLuint index,const GLubyte * v) argument 700 VertexAttrib4NubvARB(GLuint index,const GLubyte * v) argument 711 VertexAttrib4ubvARB(GLuint index,const GLubyte * v) argument 722 VertexAttrib1NsvARB(GLuint index,const GLshort * v) argument 728 VertexAttrib1svARB(GLuint index,const GLshort * v) argument 734 VertexAttrib2NsvARB(GLuint index,const GLshort * v) argument 742 VertexAttrib2svARB(GLuint index,const GLshort * v) argument 749 VertexAttrib3NsvARB(GLuint index,const GLshort * v) argument 759 VertexAttrib3svARB(GLuint index,const GLshort * v) argument 767 VertexAttrib4NsvARB(GLuint index,const GLshort * v) argument 778 VertexAttrib4svARB(GLuint index,const GLshort * v) argument 787 VertexAttrib1NusvARB(GLuint index,const GLushort * v) argument 793 VertexAttrib1usvARB(GLuint index,const GLushort * v) argument 799 VertexAttrib2NusvARB(GLuint index,const GLushort * v) argument 806 VertexAttrib2usvARB(GLuint index,const GLushort * v) argument 813 VertexAttrib3NusvARB(GLuint index,const GLushort * v) argument 821 VertexAttrib3usvARB(GLuint index,const GLushort * v) argument 828 VertexAttrib4NusvARB(GLuint index,const GLushort * v) argument 837 VertexAttrib4usvARB(GLuint index,const GLushort * v) argument 845 VertexAttrib1NivARB(GLuint index,const GLint * v) argument 851 VertexAttrib1ivARB(GLuint index,const GLint * v) argument 857 VertexAttrib2NivARB(GLuint index,const GLint * v) argument 864 VertexAttrib2ivARB(GLuint index,const GLint * v) argument 871 VertexAttrib3NivARB(GLuint index,const GLint * v) argument 879 VertexAttrib3ivARB(GLuint index,const GLint * v) argument 886 VertexAttrib4NivARB(GLuint index,const GLint * v) argument 895 VertexAttrib4ivARB(GLuint index,const GLint * v) argument 904 VertexAttrib1NuivARB(GLuint index,const GLuint * v) argument 910 VertexAttrib1uivARB(GLuint index,const GLuint * v) argument 916 VertexAttrib2NuivARB(GLuint index,const GLuint * v) argument 923 VertexAttrib2uivARB(GLuint index,const GLuint * v) argument 930 VertexAttrib3NuivARB(GLuint index,const GLuint * v) argument 938 VertexAttrib3uivARB(GLuint index,const GLuint * v) argument 945 VertexAttrib4NuivARB(GLuint index,const GLuint * v) argument 954 VertexAttrib4uivARB(GLuint index,const GLuint * v) argument 963 VertexAttrib1fvARB(GLuint index,const GLfloat * v) argument 969 VertexAttrib2fvARB(GLuint index,const GLfloat * v) argument 975 VertexAttrib3fvARB(GLuint index,const GLfloat * v) argument 981 VertexAttrib4fvARB(GLuint index,const GLfloat * v) argument 989 VertexAttrib1dvARB(GLuint index,const GLdouble * v) argument 995 VertexAttrib2dvARB(GLuint index,const GLdouble * v) argument 1001 VertexAttrib3dvARB(GLuint index,const GLdouble * v) argument 1007 VertexAttrib4dvARB(GLuint index,const GLdouble * v) argument 1017 VertexAttribI1bv(GLuint index,const GLbyte * v) argument 1023 VertexAttribI2bv(GLuint index,const GLbyte * v) argument 1029 VertexAttribI3bv(GLuint index,const GLbyte * v) argument 1035 VertexAttribI4bv(GLuint index,const GLbyte * v) argument 1042 VertexAttribI1ubv(GLuint index,const GLubyte * v) argument 1048 VertexAttribI2ubv(GLuint index,const GLubyte * v) argument 1054 VertexAttribI3ubv(GLuint index,const GLubyte * v) argument 1060 VertexAttribI4ubv(GLuint index,const GLubyte * v) argument 1068 VertexAttribI1sv(GLuint index,const GLshort * v) argument 1074 VertexAttribI2sv(GLuint index,const GLshort * v) argument 1080 VertexAttribI3sv(GLuint index,const GLshort * v) argument 1086 VertexAttribI4sv(GLuint index,const GLshort * v) argument 1093 VertexAttribI1usv(GLuint index,const GLushort * v) argument 1099 VertexAttribI2usv(GLuint index,const GLushort * v) argument 1105 VertexAttribI3usv(GLuint index,const GLushort * v) argument 1111 VertexAttribI4usv(GLuint index,const GLushort * v) argument 1119 VertexAttribI1iv(GLuint index,const GLint * v) argument 1125 VertexAttribI2iv(GLuint index,const GLint * v) argument 1131 VertexAttribI3iv(GLuint index,const GLint * v) argument 1137 VertexAttribI4iv(GLuint index,const GLint * v) argument 1144 VertexAttribI1uiv(GLuint index,const GLuint * v) argument 1150 VertexAttribI2uiv(GLuint index,const GLuint * v) argument 1156 VertexAttribI3uiv(GLuint index,const GLuint * v) argument 1162 VertexAttribI4uiv(GLuint index,const GLuint * v) argument 1170 VertexAttribL1dv(GLuint index,const GLdouble * v) argument 1176 VertexAttribL2dv(GLuint index,const GLdouble * v) argument 1182 VertexAttribL3dv(GLuint index,const GLdouble * v) argument 1188 VertexAttribL4dv(GLuint index,const GLdouble * v) argument [all...] |
| /xsrc/external/mit/xf86-video-glint/dist/src/ |
| H A D | pm2ramdac.c | 69 Permedia2WriteAddress (ScrnInfoPtr pScrn, CARD32 index) argument 73 GLINT_SLOW_WRITE_REG(index, PM2DACWriteAddress); 85 Permedia2ReadAddress (ScrnInfoPtr pScrn, CARD32 index) argument 90 GLINT_SLOW_WRITE_REG(index, PM2DACReadAddress); 109 int i, index, shift = 0, j, repeat = 1; local in function:Permedia2LoadPalette 117 index = indices[i]; 119 Permedia2WriteAddress(pScrn, (index << shift)+j); 120 Permedia2WriteData(pScrn, colors[index].red); 121 Permedia2WriteData(pScrn, colors[index].green); 122 Permedia2WriteData(pScrn, colors[index] 142 int i, index, j; local in function:Permedia2LoadPalette16 [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/jitter/shader_lib/ |
| H A D | Scatter.cpp | 42 unsigned long index; local in function:ScatterPS_256 43 while (_BitScanForward(&index, mask)) 45 mask &= ~(1 << index); 47 *(float*)(pBase + indices[index] * scale) = src[index];
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/ |
| H A D | radeon_code.c | 61 unsigned index = c->Count; local in function:rc_constants_add 77 c->Constants[index] = *constant; 80 return index; 89 unsigned index; local in function:rc_constants_add_state 92 for(index = 0; index < c->Count; ++index) { 93 if (c->Constants[index].Type == RC_CONSTANT_STATE) { 94 if (c->Constants[index].u.State[0] == state0 && 95 c->Constants[index] 116 unsigned index; local in function:rc_constants_add_immediate_vec4 141 unsigned index; local in function:rc_constants_add_immediate_scalar [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/ |
| H A D | gen6_multisample_state.c | 34 GLuint index, GLfloat *result) 43 bits = brw_multisample_positions_1x_2x >> (8 * index); 46 bits = brw_multisample_positions_4x >> (8 * index); 49 bits = brw_multisample_positions_8x[index >> 2] >> (8 * (index & 3)); 52 bits = brw_multisample_positions_16x[index >> 2] >> (8 * (index & 3)); 64 * Sample index layout shows the numbering of slots in a rectangular 68 * index layout in case of 2X and 4x MSAA, but they are different in 71 * 8X MSAA sample index layou 32 gen6_get_sample_position(struct gl_context * ctx,struct gl_framebuffer * fb,GLuint index,GLfloat * result) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/ |
| H A D | radeon_code.c | 61 unsigned index = c->Count; local in function:rc_constants_add 77 c->Constants[index] = *constant; 80 return index; 89 unsigned index; local in function:rc_constants_add_state 92 for(index = 0; index < c->Count; ++index) { 93 if (c->Constants[index].Type == RC_CONSTANT_STATE) { 94 if (c->Constants[index].u.State[0] == state0 && 95 c->Constants[index] 116 unsigned index; local in function:rc_constants_add_immediate_vec4 141 unsigned index; local in function:rc_constants_add_immediate_scalar [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/ir/gp/ |
| H A D | physical_regalloc.c | 38 int index = 0; local in function:regalloc_print_result 44 printf("%03d: load %d use reg %d\n", index, node->index, load->reg->index); 48 printf("%03d: store %d use reg %d\n", index, node->index, store->reg->index); 50 index++; 58 int index = 0; local in function:gpir_physical_regalloc_prog 61 node->preg.index [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/glx/ |
| H A D | indirect_vertex_program.c | 38 do_vertex_attrib_enable(GLuint index, GLboolean val) argument 44 index, val)) { 51 __indirect_glEnableVertexAttribArray(GLuint index) argument 53 do_vertex_attrib_enable(index, GL_TRUE); 58 __indirect_glDisableVertexAttribArray(GLuint index) argument 60 do_vertex_attrib_enable(index, GL_FALSE); 65 get_parameter(unsigned opcode, unsigned size, GLenum target, GLuint index, argument 78 *((GLuint *) (pc + 4)) = index; 90 __indirect_glGetProgramEnvParameterfvARB(GLenum target, GLuint index, argument 93 get_parameter(1296, 4, target, index, param 98 __indirect_glGetProgramEnvParameterdvARB(GLenum target,GLuint index,GLdouble * params) argument 106 __indirect_glGetProgramLocalParameterfvARB(GLenum target,GLuint index,GLfloat * params) argument 114 __indirect_glGetProgramLocalParameterdvARB(GLenum target,GLuint index,GLdouble * params) argument 122 __indirect_glGetVertexAttribPointerv(GLuint index,GLenum pname,GLvoid ** pointer) argument 146 get_attrib_array_data(__GLXattribute * state,GLuint index,GLenum cap,GLintptr * data) argument 180 get_vertex_attrib(struct glx_context * gc,unsigned vop,GLuint index,GLenum pname,xReply * reply) argument 196 __indirect_glGetVertexAttribiv(GLuint index,GLenum pname,GLint * params) argument 229 __indirect_glGetVertexAttribfv(GLuint index,GLenum pname,GLfloat * params) argument 263 __indirect_glGetVertexAttribdv(GLuint index,GLenum pname,GLdouble * params) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/glx/ |
| H A D | indirect_vertex_program.c | 38 do_vertex_attrib_enable(GLuint index, GLboolean val) argument 44 index, val)) { 51 __indirect_glEnableVertexAttribArray(GLuint index) argument 53 do_vertex_attrib_enable(index, GL_TRUE); 58 __indirect_glDisableVertexAttribArray(GLuint index) argument 60 do_vertex_attrib_enable(index, GL_FALSE); 65 get_parameter(unsigned opcode, unsigned size, GLenum target, GLuint index, argument 78 *((GLuint *) (pc + 4)) = index; 90 __indirect_glGetProgramEnvParameterfvARB(GLenum target, GLuint index, argument 93 get_parameter(1296, 4, target, index, param 98 __indirect_glGetProgramEnvParameterdvARB(GLenum target,GLuint index,GLdouble * params) argument 106 __indirect_glGetProgramLocalParameterfvARB(GLenum target,GLuint index,GLfloat * params) argument 114 __indirect_glGetProgramLocalParameterdvARB(GLenum target,GLuint index,GLdouble * params) argument 122 __indirect_glGetVertexAttribPointerv(GLuint index,GLenum pname,GLvoid ** pointer) argument 146 get_attrib_array_data(__GLXattribute * state,GLuint index,GLenum cap,GLintptr * data) argument 180 get_vertex_attrib(struct glx_context * gc,unsigned vop,GLuint index,GLenum pname,xReply * reply) argument 196 __indirect_glGetVertexAttribiv(GLuint index,GLenum pname,GLint * params) argument 229 __indirect_glGetVertexAttribfv(GLuint index,GLenum pname,GLfloat * params) argument 263 __indirect_glGetVertexAttribdv(GLuint index,GLenum pname,GLdouble * params) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/ |
| H A D | ir3_dominance.c | 41 * because we index blocks from beginning -> end (i.e. reverse 44 while (b1->index > b2->index) 46 while (b2->index > b1->index) 77 calc_dfs_indices(struct ir3_block *block, unsigned index) argument 79 block->dom_pre_index = index++; 81 index = calc_dfs_indices(block->dom_children[i], index); 82 block->dom_post_index = index [all...] |
| /xsrc/external/mit/xf86-video-geode/dist/src/cim/ |
| H A D | cim_msr.c | 90 /* Note that MSR_DEVICE_EMPTY is the index after the last */ 153 unsigned long port, index; local in function:msr_create_geodelink_table 219 index = port + 8; 223 gliu_nodes[index].address_from_cpu = (0x02l << 29) + (port << 26); 226 gliu_nodes[index].device_id = MSR_CLASS_CODE_REFLECTIVE; 228 gliu_nodes[index].device_id = MSR_CLASS_CODE_UNPOPULATED; 230 MSR_READ(MSR_GEODELINK_CAP, gliu_nodes[index].address_from_cpu, 232 gliu_nodes[index].device_id = 260 index = port + 16; 264 gliu_nodes[index] [all...] |