| /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/ |
| H A D | glut_menu2.c | 47 GLUTmenuItem *item, *next; local in function:glutDestroyMenu 56 item = menu->list; 57 while (item) { 58 assert(item->menu == menu); 59 next = item->next; 60 free(item->label); 61 free(item); 62 item = next; 73 GLUTmenuItem *item; local in function:glutChangeToMenuEntry 79 item 100 GLUTmenuItem *item; local in function:glutChangeToSubMenu 127 GLUTmenuItem *item, **prev, *remaining; local in function:glutRemoveMenuItem [all...] |
| H A D | win32_menu.c | 84 /* If an item is selected and it is not a submenu trigger, 123 GLUTmenuItem *item; local in function:__glutGetUniqueMenuItem 127 item = menu->list; 128 while (item) { 129 if (item->unique == unique) { 130 return item; 132 if (item->isTrigger) { 134 subitem = __glutGetUniqueMenuItem(menuList[item->value], unique); 140 item = item 148 GLUTmenuItem *item; local in function:__glutGetMenuItem 273 GLUTmenuItem *item, *next; local in function:glutDestroyMenu 324 setMenuItem(GLUTmenuItem * item,const char * label,int value,Bool isTrigger) argument 392 GLUTmenuItem *item; local in function:glutChangeToMenuEntry 433 GLUTmenuItem *item; local in function:glutChangeToSubMenu 474 GLUTmenuItem *item, **prev; local in function:glutRemoveMenuItem [all...] |
| H A D | glut_menu.c | 443 /* If an item is selected and it is not a submenu trigger, 481 GLUTmenuItem *item; local in function:mapMenu 483 item = menu->list; 485 while (item) { 491 XConfigureWindow(__glutDisplay, item->win, 493 item = item->next; 580 paintMenuItem(GLUTmenuItem * item, int num) argument 582 Window win = item->menu->win; 587 if (item 612 GLUTmenuItem *item; local in function:paintMenu 639 GLUTmenuItem *item; local in function:getMenuItem 672 getMenuItemIndex(GLUTmenuItem * item) argument 746 menuItemEnterOrLeave(GLUTmenuItem * item,int num,int type) argument 927 __glutSetMenuItem(GLUTmenuItem * item,const char * label,int value,Bool isTrigger) argument [all...] |
| /xsrc/external/mit/libdrm/dist/ |
| H A D | util_double_list.h | 47 static inline void list_inithead(struct list_head *item) argument 49 item->prev = item; 50 item->next = item; 53 static inline void list_add(struct list_head *item, struct list_head *list) argument 55 item->prev = list; 56 item->next = list->next; 57 list->next->prev = item; 58 list->next = item; 61 list_addtail(struct list_head * item,struct list_head * list) argument 77 list_del(struct list_head * item) argument 83 list_delinit(struct list_head * item) argument [all...] |
| /xsrc/external/mit/xwd/dist/ |
| H A D | list.c | 4 node in the list consists of two pointers, one to the data item 6 the same struct as each node, but the "item" ptr is used to point 50 lp->ptr.item = NULL; 54 Adds item to the list pointed to by lp. Finds the end of the 56 The item pointer in the new node is set to "item" passed in, 61 add_to_list(list_ptr lp, void *item) argument 70 lp->next->ptr.item = item; 88 lp->ptr.item 148 delete_from_list(list_ptr lp,void * item) argument 179 void *item = del_node->ptr.item; local in function:delete_list 189 delete_list_destroying(list_ptr lp,void destructor (void * item)) argument 193 void *item = del_node->ptr.item; local in function:delete_list_destroying [all...] |
| /xsrc/external/mit/libX11/dist/src/ |
| H A D | PolyTxt.c | 43 register XTextItem *item; local in function:XDrawText 55 item = items; 57 if (item->font) 59 if (item->delta) 61 if (item->delta > 0) 63 length += SIZEOF(xTextElt) * ((item->delta + 126) / 127); 67 length += SIZEOF(xTextElt) * ((-item->delta + 127) / 128); 70 if (item->nchars > 0) 72 length += SIZEOF(xTextElt) * ((item->nchars + 253) / 254 - 1); 73 if (!item [all...] |
| H A D | PolyTxt16.c | 43 register XTextItem16 *item; local in function:XDrawText16 55 item = items; 57 if (item->font) 59 if (item->delta) 61 if (item->delta > 0) 63 length += SIZEOF(xTextElt) * ((item->delta + 126) / 127); 67 length += SIZEOF(xTextElt) * ((-item->delta + 127) / 128); 70 if (item->nchars > 0) 72 length += SIZEOF(xTextElt) * ((item->nchars + 253) / 254 - 1); 73 if (!item [all...] |
| /xsrc/local/programs/x11-ssh-askpass/ |
| H A D | dynlist.h | 31 int append_to_list(char ***list_ptr, int *list_len, int *i, char *item);
|
| /xsrc/external/mit/MesaGLUT/dist/src/glut/beos/ |
| H A D | glutMenu.cpp | 137 * DESCRIPTION: add a new menu item 164 GlutMenuItem *item; local in function:glutChangeToMenuEntry 168 item = gState.currentMenu->list; 169 while (item) { 171 free(item->label); 172 item->label = strdup(label); 173 item->isTrigger = false; 174 item->value = value; 178 item = item 191 GlutMenuItem *item; local in function:glutChangeToSubMenu 218 GlutMenuItem *item, **prev; local in function:glutRemoveMenuItem 275 GlutMenuItem *item = list; local in function:GlutMenu::CreateBMenu [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/ |
| H A D | u_hash_table.c | 107 struct util_hash_table_item *item; local in function:util_hash_table_find_iter 111 item = (struct util_hash_table_item *)cso_hash_iter_data(iter); 112 if (!ht->compare(item->key, key)) 127 struct util_hash_table_item *item; local in function:util_hash_table_find_item 131 item = (struct util_hash_table_item *)cso_hash_iter_data(iter); 132 if (!ht->compare(item->key, key)) 133 return item; 147 struct util_hash_table_item *item; local in function:util_hash_table_set 156 item = util_hash_table_find_item(ht, key, key_hash); 157 if (item) { 185 struct util_hash_table_item *item; local in function:util_hash_table_get 207 struct util_hash_table_item *item; local in function:util_hash_table_remove 231 struct util_hash_table_item *item; local in function:util_hash_table_clear 253 struct util_hash_table_item *item; local in function:util_hash_table_foreach 294 struct util_hash_table_item *item; local in function:util_hash_table_destroy [all...] |
| H A D | u_debug_flush.c | 144 debug_flush_item_destroy(struct debug_flush_item *item) argument 146 debug_flush_buf_reference(&item->fbuf, NULL); 148 FREE(item->ref_frame); 150 FREE(item); 238 struct debug_flush_item *item = local in function:debug_flush_map 241 if (item && fctx->catch_map_of_referenced) { 244 debug_flush_alert(NULL, "Reference", 0, item->bt_depth, 245 FALSE, FALSE, item->ref_frame); 280 struct debug_flush_item *item; local in function:debug_flush_cb_reference 285 item 321 struct debug_flush_item *item = local in function:debug_flush_might_flush_cb 362 struct debug_flush_item *item = local in function:debug_flush_flush_cb [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/xquartz/xpr/ |
| H A D | x-hash.c | 105 x_list *node, *item, *next; local in function:hash_table_split 132 item = node->data; 134 b = hash_table_hash_key (h, ITEM_KEY (item)) % new_size; 178 x_list *node, *item; local in function:X_PFX 188 item = node->data; 189 hash_table_destroy_item (h, ITEM_KEY (item), ITEM_VALUE (item)); 190 ITEM_FREE (item); 211 x_list *node, *item; local in function:hash_table_modify 220 item 270 x_list **ptr, *item; local in function:X_PFX 298 x_list *node, *item; local in function:X_PFX 329 x_list *node, *item; local in function:X_PFX [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xquartz/xpr/ |
| H A D | x-hash.c | 108 x_list *node, *item, *next; local in function:hash_table_split 132 item = node->data; 134 b = hash_table_hash_key(h, ITEM_KEY(item)) % new_size; 175 x_list *node, *item; local in function:X_PFX 183 item = node->data; 184 hash_table_destroy_item(h, ITEM_KEY(item), ITEM_VALUE(item)); 185 ITEM_FREE(item); 205 x_list *node, *item; local in function:hash_table_modify 213 item 256 x_list **ptr, *item; local in function:X_PFX 281 x_list *node, *item; local in function:X_PFX 309 x_list *node, *item; local in function:X_PFX [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/ |
| H A D | compute_memory_pool.c | 56 struct compute_memory_item *item, struct pipe_context *pipe, 61 struct compute_memory_item *item, uint64_t new_start_in_dw, 218 struct compute_memory_item *item, *next; local in function:compute_memory_finalize_pending 228 LIST_FOR_EACH_ENTRY(item, pool->item_list, link) { 230 "(%"PRIi64" bytes)\n", item->start_in_dw, item->id, 231 item->size_in_dw, item->size_in_dw * 4); 235 LIST_FOR_EACH_ENTRY(item, pool->item_list, link) { 236 allocated += align(item 292 struct compute_memory_item *item; local in function:compute_memory_defrag 318 compute_memory_promote_item(struct compute_memory_pool * pool,struct compute_memory_item * item,struct pipe_context * pipe,int64_t start_in_dw) argument 367 compute_memory_demote_item(struct compute_memory_pool * pool,struct compute_memory_item * item,struct pipe_context * pipe) argument 423 compute_memory_move_item(struct compute_memory_pool * pool,struct pipe_resource * src,struct pipe_resource * dst,struct compute_memory_item * item,uint64_t new_start_in_dw,struct pipe_context * pipe) argument 504 struct compute_memory_item *item, *next; local in function:compute_memory_free [all...] |
| H A D | compute_memory_pool.h | 43 uint32_t status; /**< Will track the status of the item */ 45 /** Start pointer in dwords relative in the pool bo. If an item 50 /** Intermediate buffer asociated with an item. It is used mainly for mapping 80 static inline int is_item_in_pool(struct compute_memory_item *item) argument 82 return item->start_in_dw != -1; 93 struct compute_memory_item *item, struct pipe_context *pipe);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/ |
| H A D | compute_memory_pool.c | 56 struct compute_memory_item *item, struct pipe_context *pipe, 61 struct compute_memory_item *item, uint64_t new_start_in_dw, 218 struct compute_memory_item *item, *next; local in function:compute_memory_finalize_pending 228 LIST_FOR_EACH_ENTRY(item, pool->item_list, link) { 230 "(%"PRIi64" bytes)\n", item->start_in_dw, item->id, 231 item->size_in_dw, item->size_in_dw * 4); 235 LIST_FOR_EACH_ENTRY(item, pool->item_list, link) { 236 allocated += align(item 292 struct compute_memory_item *item; local in function:compute_memory_defrag 318 compute_memory_promote_item(struct compute_memory_pool * pool,struct compute_memory_item * item,struct pipe_context * pipe,int64_t start_in_dw) argument 367 compute_memory_demote_item(struct compute_memory_pool * pool,struct compute_memory_item * item,struct pipe_context * pipe) argument 423 compute_memory_move_item(struct compute_memory_pool * pool,struct pipe_resource * src,struct pipe_resource * dst,struct compute_memory_item * item,uint64_t new_start_in_dw,struct pipe_context * pipe) argument 503 struct compute_memory_item *item, *next; local in function:compute_memory_free [all...] |
| H A D | compute_memory_pool.h | 43 uint32_t status; /**< Will track the status of the item */ 45 /** Start pointer in dwords relative in the pool bo. If an item 50 /** Intermediate buffer associated with an item. It is used mainly for mapping 80 static inline int is_item_in_pool(struct compute_memory_item *item) argument 82 return item->start_in_dw != -1; 93 struct compute_memory_item *item, struct pipe_context *pipe);
|
| /xsrc/external/mit/xorg-server/dist/test/ |
| H A D | list.c | 244 struct foo *item; local in function:test_nt_list_append 246 for (item = foo, i = 1; i <= 10; i++, item++) { 247 item->a = i; 248 item->b = i * 2; 249 nt_list_init(item, next); 251 if (item != foo) 252 nt_list_append(item, foo, struct foo, next); 256 for (item = foo, i = 1; i <= 10; i++, item 276 struct foo *item; local in function:test_nt_list_insert 311 struct foo *item, *tmp; local in function:test_nt_list_delete [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_program_cache.c | 118 hash_key(struct brw_cache_item *item) argument 120 GLuint *ikey = (GLuint *)item->key; 121 GLuint hash = item->cache_id, i; 123 assert(item->key_size % 4 == 0); 127 for (i = 0; i < item->key_size/4; i++) { 201 struct brw_cache_item *item; local in function:brw_search_cache 211 item = search_cache(cache, hash, &lookup); 213 if (item == NULL) 216 void *prog_data = ((char *) item->key) + item 277 const struct brw_cache_item *item; local in function:brw_lookup_prog 344 struct brw_cache_item *item = CALLOC_STRUCT(brw_cache_item); local in function:brw_upload_cache 541 struct brw_cache_item *item; local in function:brw_print_program_cache [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_program_cache.c | 99 hash_key(struct brw_cache_item *item) argument 102 hash = XXH32(&item->cache_id, sizeof(item->cache_id), hash); 103 hash = XXH32(item->key, item->key_size, hash); 174 struct brw_cache_item *item; local in function:brw_search_cache 184 item = search_cache(cache, hash, &lookup); 186 if (item == NULL) 189 void *prog_data = ((char *) item->key) + item 250 const struct brw_cache_item *item; local in function:brw_lookup_prog 317 struct brw_cache_item *item = CALLOC_STRUCT(brw_cache_item); local in function:brw_upload_cache 514 struct brw_cache_item *item; local in function:brw_print_program_cache [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| H A D | list.h | 53 static inline void list_inithead(struct list_head *item) argument 55 item->prev = item; 56 item->next = item; 59 static inline void list_add(struct list_head *item, struct list_head *list) argument 61 item->prev = list; 62 item->next = list->next; 63 list->next->prev = item; 64 list->next = item; 67 list_addtail(struct list_head * item,struct list_head * list) argument 89 list_del(struct list_head * item) argument 96 list_delinit(struct list_head * item) argument [all...] |
| /xsrc/external/mit/xedit/dist/ |
| H A D | lisp.c | 97 SetTextProperties(xedit_flist_item *item) argument 103 if (source != item->source) 104 XawTextSetSource(textwindow, item->source, 0); 105 XeditLispSetEditMode(item, NULL); 106 if (source != item->source) 112 UnsetTextProperties(xedit_flist_item *item) argument 114 XeditLispUnsetEditMode(item); 230 xedit_flist_item *item = FindTextSource(XawTextGetSource(textwindow), NULL); local in function:SetEditModeMenu 233 if (item->xldata && item 253 xedit_flist_item *item = FindTextSource(source, NULL); local in function:EditModeCallback [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/ |
| H A D | u_debug_flush.c | 144 debug_flush_item_destroy(struct debug_flush_item *item) argument 146 debug_flush_buf_reference(&item->fbuf, NULL); 148 FREE(item->ref_frame); 150 FREE(item); 252 struct debug_flush_item *item = local in function:debug_flush_map 255 if (item && fctx->catch_map_of_referenced) { 258 debug_flush_alert(NULL, "Reference", 0, item->bt_depth, 259 FALSE, FALSE, item->ref_frame); 304 struct debug_flush_item *item; local in function:debug_flush_cb_reference 309 item 342 struct debug_flush_item *item = local in function:debug_flush_might_flush_cb 383 struct debug_flush_item *item = local in function:debug_flush_flush_cb [all...] |
| /xsrc/external/mit/xcb-proto/dist/xcbgen/ |
| H A D | state.py | 57 def add_event(self, id, name, item): 58 self.events[id] = (name, item) 122 for (name, item) in self.all: 124 item.resolve(self) 130 for (name, item) in self.all: 131 item.out(name) 149 def add_type(self, id, ns, name, item): 153 self.types[key] = (name, item) 155 self.all.append((name, item)) 182 def add_request(self, id, name, item) [all...] |
| /xsrc/external/mit/xterm/dist/ |
| H A D | linedata.c | 249 CellData *item = CellDataAddr(screen, data, cell); local in function:saveCellData 253 item->attribs = ld->attribs[column]; 255 item->color = ld->color[column]; 258 item->charSeen = ld->charSeen[column]; 259 item->charData = ld->charData[column]; 263 Bool blank = (((item->charData == HIDDEN_CHAR) 266 || (item->charData != HIDDEN_CHAR 267 && WideCells(item->charData) > 1 271 if_OPT_DEC_RECTOPS(item->charSeen = ' '); 272 item 294 const CellData *item = ConstCellDataAddr(screen, data, cell); local in function:restoreCellData [all...] |