HomeSort by: relevance | last modified time | path
    Searched defs:list (Results 1 - 25 of 382) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/
r300_chipset.c 39 static const char *list[] = { local
56 for (i = 0; i < ARRAY_SIZE(list); i++) {
57 if (strcmp(list[i], proc_name) == 0) {
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/
r300_chipset.c 39 static const char *list[] = { local
56 for (i = 0; i < ARRAY_SIZE(list); i++) {
57 if (strcmp(list[i], proc_name) == 0) {
  /xsrc/external/mit/libXi/dist/src/
XGetProp.c 71 XEventClass *list = NULL; local
94 list = Xmalloc(rep.length * sizeof(XEventClass));
95 if (list) {
105 list[i] = (XEventClass) ec;
115 return (list);
  /xsrc/external/mit/mesa-demos/dist/src/rbug/
simple_client.c 37 struct rbug_proto_texture_list_reply *list; local
50 list = (struct rbug_proto_texture_list_reply *)header;
53 for (i = 0; i < list->textures_len; i++)
54 debug_printf("\ttex %llu\n", (unsigned long long)list->textures[i]);
ctx_info.c 38 struct rbug_proto_context_list_reply *list; local
52 list = (struct rbug_proto_context_list_reply *)header;
55 for (i = 0; i < list->contexts_len; i++) {
57 rbug_send_contexts_info(con, list->contexts[i], NULL);
68 (unsigned long long)list->contexts[i]);
72 rbug_free_header(&list->header);
shdr_dump.c 38 struct rbug_proto_shader_list_reply *list; local
48 list = (struct rbug_proto_shader_list_reply *)header;
51 for (i = 0; i < list->shaders_len; i++) {
52 rbug_send_shader_info(con, ctx, list->shaders[i], NULL);
61 (unsigned long long)list->shaders[i],
79 rbug_free_header(&list->header);
87 struct rbug_proto_context_list_reply *list; local
100 list = (struct rbug_proto_context_list_reply *)header;
103 for (i = 0; i < list->contexts_len; i++) {
104 shader_info(con, list->contexts[i])
    [all...]
shdr_info.c 36 struct rbug_proto_shader_list_reply *list; local
44 list = (struct rbug_proto_shader_list_reply *)header;
47 for (i = 0; i < list->shaders_len; i++) {
48 rbug_send_shader_info(con, ctx, list->shaders[i], NULL);
56 (unsigned long long)list->shaders[i],
62 rbug_free_header(&list->header);
70 struct rbug_proto_context_list_reply *list; local
83 list = (struct rbug_proto_context_list_reply *)header;
86 for (i = 0; i < list->contexts_len; i++) {
87 shader_info(con, list->contexts[i])
    [all...]
tex_info.c 39 struct rbug_proto_texture_list_reply *list; local
53 list = (struct rbug_proto_texture_list_reply *)header;
56 for (i = 0; i < list->textures_len; i++) {
57 rbug_send_texture_info(con, list->textures[i], NULL);
64 (unsigned long long)list->textures[i], util_format_name(info->format),
71 rbug_free_header(&list->header);
  /xsrc/external/mit/xorg-server/dist/include/
optionstr.h 3 #include "list.h"
6 GenericListRec list; member in struct:_InputOption
  /xsrc/external/mit/libFS/dist/src/
FSGetCats.c 63 char **list; local
82 list = FSmallocarray(rep.num_catalogues, sizeof(char *));
85 if ((!list) || (!c)) {
86 if (list)
87 FSfree(list);
100 list[i] = c + 1; /* skip length */
106 list = (char **) NULL;
110 return list;
FSListExt.c 63 char **list; local
82 list = FSmallocarray(rep.nExtensions, sizeof(char *));
85 if ((!list) || (!c)) {
86 if (list)
87 FSfree(list);
100 list[i] = c + 1; /* skip length */
106 list = (char **) NULL;
110 return list;
114 int FSFreeExtensionList(char **list)
116 if (list != NULL)
    [all...]
  /xsrc/external/mit/libX11/dist/src/
TextToStr.c 37 * XTextPropertyToStringList - set list and count to contain data stored in
46 char **list; /* return value */ local
65 * walk the list to figure out how many elements there are
73 * allocate list and duplicate
75 list = Xmallocarray (nelements, sizeof (char *));
76 if (!list) return False;
80 Xfree (list);
91 * walk down list setting value
95 list[j] = start;
104 *list_return = list;
    [all...]
  /xsrc/external/mit/libXt/dist/src/
ActionHook.c 82 ActionHook list = *(ActionHook *) closure; local
84 while (list != NULL) {
85 ActionHook next = list->next;
87 XtFree((XtPointer) list);
88 list = next;
GetResList.c 90 register XtResourceList *list, dlist; local
109 list = (XtResourceList *) widget_class->core_class.resources;
112 if (list[i] != NULL) {
114 XrmQuarkToString(TOXRMQUARK(list[i]->resource_name));
116 XrmQuarkToString(TOXRMQUARK(list[i]->resource_class));
118 XrmQuarkToString(TOXRMQUARK(list[i]->resource_type));
119 dlist[dest].resource_size = list[i]->resource_size;
122 -((int) (list[i]->resource_offset + 1));
124 XrmQuarkToString(TOXRMQUARK(list[i]->default_type));
125 dlist[dest].default_addr = list[i]->default_addr
150 register XtResourceList *list, dlist; local
    [all...]
  /xsrc/external/mit/libdrm/dist/tests/radeon/
radeon_ttm.c 37 struct list_head list; local
42 list_inithead(&list);
50 list_add(&bo->list, &list);
52 LIST_FOR_EACH_ENTRY_SAFE(bo, tmp, &list, list) {
53 list_del(&bo->list);
rbo.h 32 struct list_head list; member in struct:rbo
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/common/
xf86Optionstr.h 27 #include "list.h"
33 GenericListRec list; member in struct:_XF86OptionRec
  /xsrc/external/mit/MesaGLUT/dist/src/glut/beos/
glutMenu.h 36 list = 0;
45 GlutMenuItem *list; // list of menu items member in class:GlutMenu
61 GlutMenuItem *next; // next menu entry on list
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_control_flow.h 68 /** puts a control flow node at the beginning of a list from an if, loop, or function */
70 nir_cf_node_insert_begin(struct exec_list *list, nir_cf_node *node)
72 nir_cf_node_insert(nir_before_cf_list(list), node);
75 /** puts a control flow node at the end of a list from an if, loop, or function */
77 nir_cf_node_insert_end(struct exec_list *list, nir_cf_node *node)
79 nir_cf_node_insert(nir_after_cf_list(list), node);
85 * These functions let you take a part of a control flow list (basically
126 * 5. Extracting a control flow list will leave lots of dangling references to
135 struct exec_list list; member in struct:__anon772
136 nir_function_impl *impl; /* for cleaning up if the list is deleted *
153 nir_cf_list list; local
169 nir_cf_list list; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/driver_trace/
tr_texture.h 53 struct tr_list list; member in struct:trace_surface
73 struct tr_list list; member in struct:trace_transfer
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
etnaviv_query_sw.c 119 static const struct pipe_driver_query_info list[] = { variable in typeref:struct:pipe_driver_query_info
130 return ARRAY_SIZE(list);
132 if (index >= ARRAY_SIZE(list))
135 *info = list[index];
152 info->max_active_queries = ARRAY_SIZE(list);
153 info->num_queries = ARRAY_SIZE(list);
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
glthread_list.c 32 const GLuint list = cmd->list; local
48 lists[0] = cmd->list;
49 lists[1] = next_callist->list;
58 lists[count++] = next_callist->list;
71 CALL_CallList(ctx->CurrentServerDispatch, (list));
76 _mesa_marshal_CallList(GLuint list)
82 cmd->list = list;
84 _mesa_glthread_CallList(ctx, list);
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_control_flow.h 68 /** puts a control flow node at the beginning of a list from an if, loop, or function */
70 nir_cf_node_insert_begin(struct exec_list *list, nir_cf_node *node)
72 nir_cf_node_insert(nir_before_cf_list(list), node);
75 /** puts a control flow node at the end of a list from an if, loop, or function */
77 nir_cf_node_insert_end(struct exec_list *list, nir_cf_node *node)
79 nir_cf_node_insert(nir_after_cf_list(list), node);
85 * These functions let you take a part of a control flow list (basically
126 * 5. Extracting a control flow list will leave lots of dangling references to
135 struct exec_list list; member in struct:__anon3397
136 nir_function_impl *impl; /* for cleaning up if the list is deleted *
153 nir_cf_list list; local
169 nir_cf_list list; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/driver_trace/
tr_texture.h 52 struct tr_list list; member in struct:trace_surface
71 struct tr_list list; member in struct:trace_transfer
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
etnaviv_query_sw.c 121 static const struct pipe_driver_query_info list[] = { variable in typeref:struct:pipe_driver_query_info
132 return ARRAY_SIZE(list);
134 if (index >= ARRAY_SIZE(list))
137 *info = list[index];
154 info->max_active_queries = ARRAY_SIZE(list);
155 info->num_queries = ARRAY_SIZE(list);

Completed in 26 milliseconds

1 2 3 4 5 6 7 8 91011>>