| /xsrc/external/mit/libXmu/dist/test/ |
| H A D | EditResStream.c | 40 unsigned long ids[] = { 1, 10, 0xbabe, 0xbabeface, 0xffffffff }; local in function:main 42 .num_widgets = sizeof(ids) / sizeof(ids[0]), 43 .ids = ids, 94 assert(memcmp(ids, out.ids, sizeof(ids)) == 0); 95 XtFree((char *) out.ids); 96 out.ids [all...] |
| /xsrc/external/mit/libepoxy/dist/test/ |
| H A D | glx_gles2.c | 53 override_GLES2_glGenQueries(GLsizei n, GLuint *ids); 56 override_GLES2_glGenQueries(GLsizei n, GLuint *ids) argument 60 ids[i] = 0;
|
| /xsrc/external/mit/xfs/dist/difs/ |
| H A D | fonts.c | 188 add_id_to_list(FontIDListPtr ids, Font fid) argument 195 if (ids->num == ids->size) { 197 newlist = (Font *) FSreallocarray(ids->client_list, 198 (ids->size + NUM_IDS_PER_CLIENT), 202 ids->client_list = newlist; 203 ids->size += NUM_IDS_PER_CLIENT; 205 ids->client_list[ids->num++] = fid; 210 remove_id_from_list(FontIDListPtr ids, Fon argument 231 FontIDListPtr ids; local in function:make_clients_id_list 251 FontIDListPtr *idlist, ids; local in function:free_svrPrivate 282 ids; local in function:do_open_font 436 ids; local in function:OpenFont 571 FontIDListPtr ids; local in function:CloseClientFont [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/ |
| H A D | svga_state_sampler.c | 246 SVGA3dShaderResourceViewId ids[PIPE_MAX_SAMPLERS]; local in function:update_sampler_resources 266 ids[i] = sv->id; 271 ids[i] = SVGA3D_INVALID_ID; 277 ids[i] = SVGA3D_INVALID_ID; 290 SVGA3dShaderResourceViewId *pIds = ids; 398 SVGA3dSamplerId ids[PIPE_MAX_SAMPLERS]; local in function:update_samplers 418 ids[i] = svga->curr.sampler[shader][i]->id[fs_shadow]; 419 assert(ids[i] != SVGA3D_INVALID_ID); 422 ids[i] = SVGA3D_INVALID_ID; 427 ids[ [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/ |
| H A D | svga_state_sampler.c | 248 SVGA3dShaderResourceViewId ids[PIPE_MAX_SAMPLERS]; local in function:update_sampler_resources 268 ids[i] = sv->id; 273 ids[i] = SVGA3D_INVALID_ID; 279 ids[i] = SVGA3D_INVALID_ID; 292 SVGA3dShaderResourceViewId *pIds = ids; 400 SVGA3dSamplerId ids[PIPE_MAX_SAMPLERS]; local in function:update_samplers 421 ids[i] = svga->curr.sampler[shader][i]->id[fs_shadow]; 422 assert(ids[i] != SVGA3D_INVALID_ID); 425 ids[i] = SVGA3D_INVALID_ID; 430 ids[ [all...] |
| /xsrc/external/mit/MesaLib/dist/bin/ |
| H A D | gen_release_notes_test.py | 160 ids = await parse_issues('1234 not used') 161 assert set(ids) == set(bugs)
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | queryobj.h | 52 _mesa_GenQueries(GLsizei n, GLuint *ids); 54 _mesa_CreateQueries(GLenum target, GLsizei n, GLuint *ids); 56 _mesa_DeleteQueries(GLsizei n, const GLuint *ids);
|
| H A D | debug_output.h | 79 GLenum* types, GLenum* ids, GLenum* severities, 84 GLsizei count, const GLuint *ids,
|
| H A D | arbprogram.h | 37 _mesa_DeleteProgramsARB(GLsizei n, const GLuint *ids); 40 _mesa_GenProgramsARB(GLsizei n, GLuint *ids);
|
| H A D | arbprogram.c | 151 _mesa_DeleteProgramsARB(GLsizei n, const GLuint *ids) argument 164 if (ids[i] != 0) { 165 struct gl_program *prog = _mesa_lookup_program(ctx, ids[i]); 167 _mesa_HashRemove(ctx->Shared->Programs, ids[i]); 174 ctx->VertexProgram.Current->Id == ids[i]) { 181 ctx->FragmentProgram.Current->Id == ids[i]) { 191 _mesa_HashRemove(ctx->Shared->Programs, ids[i]); 205 _mesa_GenProgramsARB(GLsizei n, GLuint *ids) argument 216 if (!ids) 233 ids[ [all...] |
| H A D | queryobj.c | 251 * Create $n query objects and store them in *ids. Make them of type $target 255 create_queries(struct gl_context *ctx, GLenum target, GLsizei n, GLuint *ids, argument 283 ids[i] = first + i; 290 _mesa_GenQueries(GLsizei n, GLuint *ids) argument 293 create_queries(ctx, 0, n, ids, false); 297 _mesa_CreateQueries(GLenum target, GLsizei n, GLuint *ids) argument 318 create_queries(ctx, target, n, ids, true); 323 _mesa_DeleteQueries(GLsizei n, const GLuint *ids) argument 338 if (ids[i] > 0) { 339 struct gl_query_object *q = _mesa_lookup_query_object(ctx, ids[ [all...] |
| H A D | arrayobj.c | 1076 * \param ids Array of \c n array object IDs. 1079 delete_vertex_arrays(struct gl_context *ctx, GLsizei n, const GLuint *ids) argument 1085 if (!ids[i]) 1088 struct gl_vertex_array_object *obj = _mesa_lookup_vao(ctx, ids[i]); 1091 assert(obj->Name == ids[i]); 1118 _mesa_DeleteVertexArrays_no_error(GLsizei n, const GLuint *ids) argument 1121 delete_vertex_arrays(ctx, n, ids); 1126 _mesa_DeleteVertexArrays(GLsizei n, const GLuint *ids) argument 1135 delete_vertex_arrays(ctx, n, ids);
|
| H A D | arrayobj.h | 364 _mesa_DeleteVertexArrays_no_error(GLsizei n, const GLuint *ids); 366 void GLAPIENTRY _mesa_DeleteVertexArrays(GLsizei n, const GLuint *ids);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | queryobj.h | 55 _mesa_GenQueries(GLsizei n, GLuint *ids); 57 _mesa_CreateQueries(GLenum target, GLsizei n, GLuint *ids); 59 _mesa_DeleteQueries(GLsizei n, const GLuint *ids);
|
| H A D | debug_output.h | 79 GLenum* types, GLenum* ids, GLenum* severities, 84 GLsizei count, const GLuint *ids,
|
| H A D | arbprogram.h | 37 _mesa_DeleteProgramsARB(GLsizei n, const GLuint *ids); 40 _mesa_GenProgramsARB(GLsizei n, GLuint *ids);
|
| H A D | queryobj.c | 257 * Create $n query objects and store them in *ids. Make them of type $target 261 create_queries(struct gl_context *ctx, GLenum target, GLsizei n, GLuint *ids, argument 274 if (_mesa_HashFindFreeKeys(ctx->Query.QueryObjects, ids, n)) { 278 = ctx->Driver.NewQueryObject(ctx, ids[i]); 287 _mesa_HashInsertLocked(ctx->Query.QueryObjects, ids[i], q, true); 293 _mesa_GenQueries(GLsizei n, GLuint *ids) argument 296 create_queries(ctx, 0, n, ids, false); 300 _mesa_CreateQueries(GLenum target, GLsizei n, GLuint *ids) argument 321 create_queries(ctx, target, n, ids, true); 326 _mesa_DeleteQueries(GLsizei n, const GLuint *ids) argument [all...] |
| H A D | arbprogram.c | 166 _mesa_DeleteProgramsARB(GLsizei n, const GLuint *ids) argument 179 if (ids[i] != 0) { 180 struct gl_program *prog = _mesa_lookup_program(ctx, ids[i]); 182 _mesa_HashRemove(ctx->Shared->Programs, ids[i]); 189 ctx->VertexProgram.Current->Id == ids[i]) { 196 ctx->FragmentProgram.Current->Id == ids[i]) { 206 _mesa_HashRemove(ctx->Shared->Programs, ids[i]); 220 _mesa_GenProgramsARB(GLsizei n, GLuint *ids) argument 230 if (!ids) 235 _mesa_HashFindFreeKeys(ctx->Shared->Programs, ids, [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| H A D | brw_fs_scoreboard.cpp | 347 unsigned *ids = new unsigned[n]; local in function:__anon19a82a480110::equivalence_relation::flatten 350 ids[i] = lookup(i); 352 return ids; 780 add_dependency(const unsigned *ids, dependency_list &deps, dependency dep) argument 787 dep.id = ids[dep.id]; 1093 const unsigned *ids = eq.flatten(); local in function:__anon19a82a480110::gather_inst_dependencies 1104 add_dependency(ids, deps[ip], dependency_for_read( 1117 add_dependency(ids, deps[ip], dep); 1122 add_dependency(ids, deps[ip], dependency_for_read( 1127 add_dependency(ids, dep 1188 unsigned *ids = new unsigned[num_instructions(shader)]; local in function:__anon19a82a480110::allocate_inst_dependencies [all...] |
| /xsrc/external/mit/libXmu/dist/include/X11/Xmu/ |
| H A D | EditresP.h | 321 unsigned long *ids; member in struct:_WidgetInfo
|
| /xsrc/external/mit/MesaLib/dist/src/nouveau/drm-shim/ |
| H A D | README.md | 11 chipset ids:
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/ci/ |
| H A D | create-rootfs.sh | 62 rm -rf var/lib/usbutils/usb.ids 63 rm -rf usr/share/misc/usb.ids
|
| /xsrc/external/mit/editres/dist/ |
| H A D | setvalues.c | 67 sv_event->info[i].widgets.ids,
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_lower_system_values.c | 317 nir_ssa_def *ids = nir_load_local_invocation_id(b); local in function:lower_compute_system_value_instr 318 _mesa_set_add(state->lower_once_list, ids->parent_instr); 320 nir_ssa_def *x = nir_channel(b, ids, 0); 321 nir_ssa_def *y = nir_channel(b, ids, 1); 322 nir_ssa_def *z = nir_channel(b, ids, 2);
|
| /xsrc/external/mit/libSM/dist/ |
| H A D | configure.ac | 54 # to generate client ids
|