| /xsrc/external/mit/libxcb/dist/src/ |
| H A D | xcb_list.c | 67 node *cur = list->head; local in function:_xcb_map_delete 69 do_free(cur->data); 70 list->head = cur->next; 71 free(cur); 78 node *cur = malloc(sizeof(node)); local in function:_xcb_map_put 79 if(!cur) 81 cur->key = key; 82 cur->data = data; 83 cur->next = 0; 84 *list->tail = cur; 91 node **cur; local in function:_xcb_map_remove [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/tgsi/ |
| H A D | tgsi_text.c | 42 static boolean is_alpha_underscore( const char *cur ) argument 45 (*cur >= 'a' && *cur <= 'z') || 46 (*cur >= 'A' && *cur <= 'Z') || 47 *cur == '_'; 50 static boolean is_digit( const char *cur ) argument 52 return *cur >= '0' && *cur <= '9'; 55 static boolean is_digit_alpha_underscore( const char *cur ) argument 91 const char *cur = *pcur; local in function:str_match_no_case 112 const char *cur = *pcur; local in function:str_match_nocase_whole 171 const char *cur = *pcur; local in function:eat_white 182 const char *cur = *pcur; local in function:parse_uint 196 const char *cur = *pcur; local in function:parse_int 213 const char *cur = *pcur; local in function:parse_identifier 233 const char *cur = *pcur; local in function:parse_float 285 const char *cur = *pcur; local in function:parse_double 303 const char *cur = *pcur; local in function:parse_int64 321 const char *cur = *pcur; local in function:parse_uint64 340 const char *cur; member in struct:translate_ctx 410 const char *cur = ctx->cur; local in function:parse_label 429 const char *cur = *pcur; local in function:parse_file 445 const char *cur; local in function:parse_opt_writemask 559 const char *cur; local in function:parse_register_bracket 641 const char *cur = ctx->cur; local in function:parse_opt_register_src_bracket 747 const char *cur; local in function:parse_register_dcl 813 const char *cur; local in function:parse_dst_operand 863 const char *cur = ctx->cur; local in function:parse_optional_swizzle 1005 const char *cur = *pcur; local in function:match_inst 1045 const char *cur; local in function:parse_instruction 1290 const char *cur, *cur2; local in function:parse_declaration 1704 const char *cur = *pcur; local in function:parse_primitive 1721 const char *cur = *pcur; local in function:parse_fs_coord_origin 1738 const char *cur = *pcur; local in function:parse_fs_coord_pixel_center 1755 const char *cur = *pcur; local in function:parse_property_next_shader [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/tgsi/ |
| H A D | tgsi_text.c | 42 static boolean is_alpha_underscore( const char *cur ) argument 45 (*cur >= 'a' && *cur <= 'z') || 46 (*cur >= 'A' && *cur <= 'Z') || 47 *cur == '_'; 50 static boolean is_digit( const char *cur ) argument 52 return *cur >= '0' && *cur <= '9'; 55 static boolean is_digit_alpha_underscore( const char *cur ) argument 91 const char *cur = *pcur; local in function:str_match_no_case 112 const char *cur = *pcur; local in function:str_match_nocase_whole 171 const char *cur = *pcur; local in function:eat_white 182 const char *cur = *pcur; local in function:parse_uint 196 const char *cur = *pcur; local in function:parse_int 213 const char *cur = *pcur; local in function:parse_identifier 233 const char *cur = *pcur; local in function:parse_float 285 const char *cur = *pcur; local in function:parse_double 303 const char *cur = *pcur; local in function:parse_int64 321 const char *cur = *pcur; local in function:parse_uint64 340 const char *cur; member in struct:translate_ctx 410 const char *cur = ctx->cur; local in function:parse_label 429 const char *cur = *pcur; local in function:parse_file 445 const char *cur; local in function:parse_opt_writemask 559 const char *cur; local in function:parse_register_bracket 641 const char *cur = ctx->cur; local in function:parse_opt_register_src_bracket 747 const char *cur; local in function:parse_register_dcl 813 const char *cur; local in function:parse_dst_operand 863 const char *cur = ctx->cur; local in function:parse_optional_swizzle 1005 const char *cur = *pcur; local in function:match_inst 1045 const char *cur; local in function:parse_instruction 1290 const char *cur, *cur2; local in function:parse_declaration 1704 const char *cur = *pcur; local in function:parse_primitive 1721 const char *cur = *pcur; local in function:parse_fs_coord_origin 1738 const char *cur = *pcur; local in function:parse_fs_coord_pixel_center 1755 const char *cur = *pcur; local in function:parse_property_next_shader [all...] |
| /xsrc/external/mit/xcb-util/dist/reply/ |
| H A D | reply.c | 52 insert_handler(xcb_reply_handlers_t *h, struct xcb_reply_node *cur) argument 55 while(*prev && (*prev)->request < cur->request) 57 cur->next = *prev; 58 *prev = cur; 62 remove_handler(xcb_reply_handlers_t *h, struct xcb_reply_node *cur) argument 65 while(*prev && (*prev)->request < cur->request) 67 if(!(*prev) || (*prev)->request != cur->request) 69 *prev = cur->next; 70 free(cur); 81 struct xcb_reply_node *cur local in function:process_replies 136 struct xcb_reply_node *cur = malloc(sizeof(struct xcb_reply_node)); local in function:xcb_reply_add_handler [all...] |
| /xsrc/external/mit/xf86-video-intel/dist/tools/ |
| H A D | cursor.c | 40 XFixesCursorImage *cur; local in function:main 55 cur = XFixesGetCursorImage(dpy); 56 if (cur == NULL) 61 cur->width, cur->height, 62 cur->xhot, cur->yhot); 67 src = cur->pixels; 68 for (y = 0; y < cur->height; y++) { 69 for (x = 0; x < cur [all...] |
| /xsrc/external/mit/libXt/dist/src/ |
| H A D | GCManager.c | 195 register GCptr cur; local in function:XtAllocateGC 219 for (prev = &pd->GClist; (cur = *prev); prev = &cur->next) { 220 if (cur->depth == depth && 221 ScreenOfDisplay(dpy, cur->screen) == screen && 222 Matches(dpy, cur, valueMask, values, readOnlyMask, dynamicMask)) { 223 cur->ref_count++; 225 *prev = cur->next; 226 cur->next = pd->GClist; 227 pd->GClist = cur; 302 register GCptr cur, *prev; local in function:XtReleaseGC 335 GCptr cur, *prev; local in function:XtDestroyGC [all...] |
| /xsrc/external/mit/freetype/dist/src/type1/ |
| H A D | t1parse.c | 334 FT_Byte* cur = parser->base_dict; local in function:T1_Get_Private_Dict 335 FT_Byte* limit = cur + parser->base_len; 343 if ( cur[0] == 'e' && 344 cur + 9 < limit ) /* 9 = 5 letters for `eexec' + */ 347 if ( cur[1] == 'e' && 348 cur[2] == 'x' && 349 cur[3] == 'e' && 350 cur[4] == 'c' ) 353 cur++; 354 if ( cur > [all...] |
| /xsrc/external/mit/xcb-util/dist/property/ |
| H A D | property.c | 72 xcb_property_handler_node_t *cur; local in function:xcb_property_changed 74 for(cur = prophs->head; cur; cur = cur->next) 75 if(cur->name == atom) 76 return call_handler(c, state, window, atom, &cur->h); 122 set_prop_handler(xcb_property_handler_t *cur, uint32_t long_len, xcb_generic_property_handler_t handler, void *data) argument 124 cur->long_len = long_len; 125 cur 132 xcb_property_handler_node_t *cur = malloc(sizeof(xcb_property_handler_node_t)); local in function:xcb_property_set_handler [all...] |
| /xsrc/external/mit/freetype/dist/src/psaux/ |
| H A D | psobjs.c | 297 FT_Byte* cur = *acur; local in function:skip_comment 300 while ( cur < limit ) 302 if ( IS_PS_NEWLINE( *cur ) ) 304 cur++; 307 *acur = cur; 315 FT_Byte* cur = *acur; local in function:skip_spaces 318 while ( cur < limit ) 320 if ( !IS_PS_SPACE( *cur ) ) 322 if ( *cur == '%' ) 324 skip_comment( &cur, limi 345 FT_Byte* cur = *acur; local in function:skip_literal_string 421 FT_Byte* cur = *acur; local in function:skip_string 460 FT_Byte* cur; local in function:skip_procedure 523 FT_Byte* cur = parser->cursor; local in function:ps_parser_skip_PS_token 628 FT_Byte* cur; local in function:ps_parser_to_token 745 T1_Token cur = tokens; local in function:ps_parser_to_token_array 786 FT_Byte* cur = *acur; local in function:ps_tocoordarray 866 FT_Byte* cur = *acur; local in function:ps_tofixedarray 999 FT_Byte* cur = *acur; local in function:ps_tobool 1039 FT_Byte* cur; local in function:ps_parser_load_field 1423 FT_Byte* cur; local in function:ps_parser_to_bytes [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/ |
| H A D | nouveau_winsys.h | 22 return push->end - push->cur; 38 *push->cur++ = data; 44 memcpy(push->cur, data, size * 4); 45 push->cur += size; 51 memcpy(push->cur, data, size); 52 push->cur += DIV_ROUND_UP(size, 4);
|
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| H A D | brw_cfg.cpp | 177 bblock_t *cur = NULL; local in function:cfg_t::cfg_t 189 set_next_block(&cur, entry, ip); 199 cur->instructions.push_tail(inst); 207 cur_if = cur; 217 set_next_block(&cur, next, ip); 221 cur->instructions.push_tail(inst); 223 cur_else = cur; 230 set_next_block(&cur, next, ip); 234 if (cur->instructions.is_empty()) { 236 cur_endif = cur; 481 set_next_block(bblock_t ** cur,bblock_t * block,int ip) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/virtio/vulkan/ |
| H A D | vn_cs.h | 20 .cur = storage, .end = (const void *)(storage) + (size), \ 27 .current_buffer_size = size, .cur = (buf)->base, \ 34 .cur = storage, .end = (const void *)(storage) + (size), \ 60 /* cur is the write pointer. When cur passes end, the slow path is 63 void *cur; member in struct:vn_cs_encoder 68 const void *cur; member in struct:vn_cs_decoder 101 return !enc->buffer_count || enc->cur == enc->buffers[0].base; 114 len += enc->cur - cur_buf->base; 127 if (unlikely(size > enc->end - enc->cur)) { [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/parser/ |
| H A D | InputClass.c | 243 char * const *cur; local in function:xf86printInputClassSection 256 for (cur = group->values; *cur; cur++) 257 fprintf(cf, "%s%s", cur == group->values ? "" : TOKEN_SEP, 258 *cur); 263 for (cur = group->values; *cur; cur++) 264 fprintf(cf, "%s%s", cur [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| H A D | brw_cfg.cpp | 161 bblock_t *cur = NULL; local in function:cfg_t::cfg_t 173 set_next_block(&cur, entry, ip); 183 cur->instructions.push_tail(inst); 191 cur_if = cur; 201 set_next_block(&cur, next, ip); 205 cur->instructions.push_tail(inst); 207 cur_else = cur; 213 set_next_block(&cur, next, ip); 217 if (cur->instructions.is_empty()) { 219 cur_endif = cur; 453 set_next_block(bblock_t ** cur,bblock_t * block,int ip) argument [all...] |
| /xsrc/external/mit/freetype/dist/src/base/ |
| H A D | ftutil.c | 246 FT_ListNode cur; local in function:FT_List_Find 252 cur = list->head; 253 while ( cur ) 255 if ( cur->data == data ) 256 return cur; 258 cur = cur->next; 384 FT_ListNode cur; local in function:FT_List_Iterate 391 cur = list->head; 393 while ( cur ) 417 FT_ListNode cur; local in function:FT_List_Finalize [all...] |
| /xsrc/external/mit/freetype/dist/src/type42/ |
| H A D | t42parse.c | 306 FT_Byte* cur; local in function:t42_parse_encoding 313 cur = parser->root.cursor; 314 if ( cur >= limit ) 323 if ( ft_isdigit( *cur ) || *cur == '[' ) 334 if ( *cur == '[' ) 404 cur = parser->root.cursor; 407 if ( *cur == 'd' && cur + 3 < limit ) 409 if ( cur[ 537 FT_Byte* cur; local in function:t42_parse_sfnts 797 FT_Byte* cur; local in function:t42_parse_charstrings 1166 FT_Byte* cur; local in function:t42_parse_dict [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/vl/ |
| H A D | vl_deint_filter.h | 66 struct pipe_video_buffer *cur, 73 struct pipe_video_buffer *cur,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/vl/ |
| H A D | vl_deint_filter.h | 66 struct pipe_video_buffer *cur, 73 struct pipe_video_buffer *cur,
|
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/parser/ |
| H A D | InputClass.c | 401 char *const *cur; local in function:xf86printInputClassSection 414 for (cur = group->values; *cur; cur++) 415 fprintf(cf, "%s%s", cur == group->values ? "" : TOKEN_SEP, 416 *cur); 421 for (cur = group->values; *cur; cur++) 422 fprintf(cf, "%s%s", cur [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imstb_rectpack.h | 448 stbrp_node *node, *cur; local in function:stbrp__skyline_pack_rectangle 467 // let 'cur' point to the remaining nodes needing to be 470 cur = *res.prev_link; 471 if (cur->x < res.x) { 473 stbrp_node *next = cur->next; 474 cur->next = node; 475 cur = next; 480 // from here, traverse cur and free the nodes, until we get to one 482 while (cur->next && cur [all...] |
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imstb_rectpack.h | 448 stbrp_node *node, *cur; local in function:stbrp__skyline_pack_rectangle 467 // let 'cur' point to the remaining nodes needing to be 470 cur = *res.prev_link; 471 if (cur->x < res.x) { 473 stbrp_node *next = cur->next; 474 cur->next = node; 475 cur = next; 480 // from here, traverse cur and free the nodes, until we get to one 482 while (cur->next && cur [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/ |
| H A D | nouveau_winsys.h | 22 return push->end - push->cur; 38 *push->cur++ = data; 44 memcpy(push->cur, data, size * 4); 45 push->cur += size;
|
| /xsrc/external/mit/ctwm/dist/client/ |
| H A D | demolib.c | 19 char *cur; local in function:main 51 cur = CtwmCurrentWorkspace(dpy, 0); 52 if(cur == NULL) { 56 printf("current workspace : %s\n", cur);
|
| /xsrc/external/mit/MesaLib.old/dist/scons/ |
| H A D | source_list.py | 28 def _next_dereference(self, val, cur): 30 deref_pos = val.find('$', cur) 45 cur = 0 47 deref_pos, deref_end = self._next_dereference(val, cur) 49 expanded += val[cur:] 53 expanded += val[cur:deref_pos] + self.symbol_table[sym] 54 cur = deref_end
|
| /xsrc/external/mit/freetype/dist/src/cid/ |
| H A D | cidparse.c | 63 FT_Byte *cur, *limit; local in function:cid_parser_new 199 cur = parser->root.cursor; 201 while ( cur <= limit - SFNTS_LEN ) 209 if ( cur[0] == 'S' && 210 cur <= limit - STARTDATA_LEN && 211 ft_strncmp( (char*)cur, STARTDATA, STARTDATA_LEN ) == 0 ) 229 else if ( cur[1] == 's' && 230 ft_strncmp( (char*)cur, SFNTS, SFNTS_LEN ) == 0 ) 240 arg2 = cur; 241 cur [all...] |