HomeSort by: relevance | last modified time | path
    Searched refs:item (Results 1 - 25 of 154) sorted by relevancy

1 2 3 4 5 6 7

  /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
glut_menu2.c 47 GLUTmenuItem *item, *next; local
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
79 item = __glutCurrentMenu->list
100 GLUTmenuItem *item; local
127 GLUTmenuItem *item, **prev, *remaining; local
    [all...]
win32_menu.c 84 /* If an item is selected and it is not a submenu trigger,
123 GLUTmenuItem *item; local
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->next
148 GLUTmenuItem *item; local
273 GLUTmenuItem *item, *next; local
392 GLUTmenuItem *item; local
433 GLUTmenuItem *item; local
474 GLUTmenuItem *item, **prev; local
    [all...]
glut_menu.c 443 /* If an item is selected and it is not a submenu trigger,
481 GLUTmenuItem *item; local
483 item = menu->list;
485 while (item) {
491 XConfigureWindow(__glutDisplay, item->win,
493 item = item->next;
580 paintMenuItem(GLUTmenuItem * item, int num)
582 Window win = item->menu->win;
587 if (item->menu->submenus > 0)
612 GLUTmenuItem *item; local
639 GLUTmenuItem *item; local
    [all...]
  /xsrc/external/mit/libdrm/dist/
util_double_list.h 47 static inline void list_inithead(struct list_head *item)
49 item->prev = item;
50 item->next = item;
53 static inline void list_add(struct list_head *item, struct list_head *list)
55 item->prev = list;
56 item->next = list->next;
57 list->next->prev = item;
58 list->next = item;
    [all...]
  /xsrc/external/mit/xwd/dist/
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)
70 lp->next->ptr.item = item;
88 lp->ptr.item = NULL
179 void *item = del_node->ptr.item; local
193 void *item = del_node->ptr.item; local
    [all...]
  /xsrc/external/mit/libX11/dist/src/
PolyTxt.c 43 register XTextItem *item; local
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->delta) length += SIZEOF(xTextElt)
    [all...]
PolyTxt16.c 43 register XTextItem16 *item; local
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->delta) length += SIZEOF(xTextElt)
    [all...]
  /xsrc/external/mit/MesaGLUT/dist/src/glut/beos/
glutMenu.cpp 137 * DESCRIPTION: add a new menu item
164 GlutMenuItem *item; local
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->next
191 GlutMenuItem *item; local
218 GlutMenuItem *item, **prev; local
275 GlutMenuItem *item = list; local
    [all...]
  /xsrc/local/programs/x11-ssh-askpass/
dynlist.h 31 int append_to_list(char ***list_ptr, int *list_len, int *i, char *item);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_hash_table.c 107 struct util_hash_table_item *item; local
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
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
156 item = util_hash_table_find_item(ht, key, key_hash);
157 if (item) {
185 struct util_hash_table_item *item; local
207 struct util_hash_table_item *item; local
231 struct util_hash_table_item *item; local
253 struct util_hash_table_item *item; local
294 struct util_hash_table_item *item; local
    [all...]
u_debug_flush.c 144 debug_flush_item_destroy(struct debug_flush_item *item)
146 debug_flush_buf_reference(&item->fbuf, NULL);
148 FREE(item->ref_frame);
150 FREE(item);
238 struct debug_flush_item *item = local
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
285 item = util_hash_table_get(fctx->ref_hash, fbuf)
321 struct debug_flush_item *item = local
362 struct debug_flush_item *item = local
    [all...]
  /xsrc/external/mit/xorg-server/dist/hw/xquartz/xpr/
x-hash.c 108 x_list *node, *item, *next; local
132 item = node->data;
134 b = hash_table_hash_key(h, ITEM_KEY(item)) % new_size;
175 x_list *node, *item; local
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
213 item = node->data
256 x_list **ptr, *item; local
281 x_list *node, *item; local
309 x_list *node, *item; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/xquartz/xpr/
x-hash.c 105 x_list *node, *item, *next; local
132 item = node->data;
134 b = hash_table_hash_key (h, ITEM_KEY (item)) % new_size;
178 x_list *node, *item; local
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
220 item = node->data
270 x_list **ptr, *item; local
298 x_list *node, *item; local
329 x_list *node, *item; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
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
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->size_in_dw, ITEM_ALIGNMENT)
292 struct compute_memory_item *item; local
504 struct compute_memory_item *item, *next; local
    [all...]
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)
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/
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
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->size_in_dw, ITEM_ALIGNMENT)
292 struct compute_memory_item *item; local
503 struct compute_memory_item *item, *next; local
    [all...]
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)
82 return item->start_in_dw != -1;
93 struct compute_memory_item *item, struct pipe_context *pipe);
  /xsrc/external/mit/xorg-server/dist/test/
list.c 244 struct foo *item; local
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 = nt_list_next(item, next))
276 struct foo *item; local
311 struct foo *item, *tmp; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
brw_program_cache.c 99 hash_key(struct brw_cache_item *item)
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
184 item = search_cache(cache, hash, &lookup);
186 if (item == NULL)
189 void *prog_data = ((char *) item->key) + item->key_size
250 const struct brw_cache_item *item; local
317 struct brw_cache_item *item = CALLOC_STRUCT(brw_cache_item); local
514 struct brw_cache_item *item; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
brw_program_cache.c 118 hash_key(struct brw_cache_item *item)
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
211 item = search_cache(cache, hash, &lookup);
213 if (item == NULL)
216 void *prog_data = ((char *) item->key) + item->key_size
277 const struct brw_cache_item *item; local
344 struct brw_cache_item *item = CALLOC_STRUCT(brw_cache_item); local
541 struct brw_cache_item *item; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/util/
list.h 53 static inline void list_inithead(struct list_head *item)
55 item->prev = item;
56 item->next = item;
59 static inline void list_add(struct list_head *item, struct list_head *list)
61 item->prev = list;
62 item->next = list->next;
63 list->next->prev = item;
64 list->next = item;
    [all...]
  /xsrc/external/mit/xedit/dist/
lisp.c 97 SetTextProperties(xedit_flist_item *item)
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)
114 XeditLispUnsetEditMode(item);
230 xedit_flist_item *item = FindTextSource(XawTextGetSource(textwindow), NULL); local
233 if (item->xldata && item->xldata->syntax &
253 xedit_flist_item *item = FindTextSource(source, NULL); local
    [all...]
util.c 236 xedit_flist_item *item; local
239 item = (xedit_flist_item*)XtMalloc(sizeof(xedit_flist_item));
240 item->source = source;
241 item->name = XtNewString(name);
242 item->filename = XtNewString(filename);
243 item->flags = flags;
244 item->file_access = file_access;
245 item->display_position = item->insert_position = 0;
246 item->mode = 0
561 xedit_flist_item *item; local
650 xedit_flist_item *item; local
753 xedit_flist_item *item; local
961 xedit_flist_item *item = FindTextSource(XawTextGetSource(textwindow), NULL); local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_debug_flush.c 144 debug_flush_item_destroy(struct debug_flush_item *item)
146 debug_flush_buf_reference(&item->fbuf, NULL);
148 FREE(item->ref_frame);
150 FREE(item);
252 struct debug_flush_item *item = local
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
309 item = util_hash_table_get(fctx->ref_hash, fbuf)
342 struct debug_flush_item *item = local
383 struct debug_flush_item *item = local
    [all...]
  /xsrc/external/mit/xterm/dist/
linedata.c 249 CellData *item = CellDataAddr(screen, data, cell); local
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->charData = (CharData) ' '
294 const CellData *item = ConstCellDataAddr(screen, data, cell); local
    [all...]

Completed in 21 milliseconds

1 2 3 4 5 6 7