Searched refs:tc (Results 1 - 25 of 121) sorted by relevance

12345

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
H A Dsp_tex_tile_cache.c49 struct softpipe_tex_tile_cache *tc; local in function:sp_create_tex_tile_cache
55 tc = CALLOC_STRUCT( softpipe_tex_tile_cache );
56 if (tc) {
57 tc->pipe = pipe;
58 for (pos = 0; pos < ARRAY_SIZE(tc->entries); pos++) {
59 tc->entries[pos].addr.bits.invalid = 1;
61 tc->last_tile = &tc->entries[0]; /* any tile */
63 return tc;
68 sp_destroy_tex_tile_cache(struct softpipe_tex_tile_cache *tc) argument
93 sp_tex_tile_cache_validate_texture(struct softpipe_tex_tile_cache * tc) argument
106 sp_tex_tile_is_compat_view(struct softpipe_tex_tile_cache * tc,struct pipe_sampler_view * view) argument
123 sp_tex_tile_cache_set_sampler_view(struct softpipe_tex_tile_cache * tc,struct pipe_sampler_view * view) argument
166 sp_flush_tex_tile_cache(struct softpipe_tex_tile_cache * tc) argument
204 sp_find_cached_tile_tex(struct softpipe_tex_tile_cache * tc,union tex_tile_address addr) argument
[all...]
H A Dsp_tile_cache.c42 sp_alloc_tile(struct softpipe_tile_cache *tc);
93 struct softpipe_tile_cache *tc; local in function:sp_create_tile_cache
107 tc = CALLOC_STRUCT( softpipe_tile_cache );
108 if (tc) {
109 tc->pipe = pipe;
110 for (pos = 0; pos < ARRAY_SIZE(tc->tile_addrs); pos++) {
111 tc->tile_addrs[pos].bits.invalid = 1;
113 tc->last_tile_addr.bits.invalid = 1;
118 tc->tile = MALLOC_STRUCT( softpipe_cached_tile );
119 if (!tc
140 sp_destroy_tile_cache(struct softpipe_tile_cache * tc) argument
171 sp_tile_cache_set_surface(struct softpipe_tile_cache * tc,struct pipe_surface * ps) argument
228 sp_tile_cache_get_surface(struct softpipe_tile_cache * tc) argument
343 sp_tile_cache_flush_clear(struct softpipe_tile_cache * tc,int layer) argument
402 sp_flush_tile(struct softpipe_tile_cache * tc,unsigned pos) argument
446 sp_flush_tile_cache(struct softpipe_tile_cache * tc) argument
480 sp_alloc_tile(struct softpipe_tile_cache * tc) argument
517 sp_find_cached_tile(struct softpipe_tile_cache * tc,union tile_address addr) argument
636 sp_tile_cache_clear(struct softpipe_tile_cache * tc,const union pipe_color_union * color,uint64_t clearValue) argument
[all...]
H A Dsp_tile_cache.h109 sp_destroy_tile_cache(struct softpipe_tile_cache *tc);
112 sp_tile_cache_set_surface(struct softpipe_tile_cache *tc,
116 sp_tile_cache_get_surface(struct softpipe_tile_cache *tc);
119 sp_flush_tile_cache(struct softpipe_tile_cache *tc);
122 sp_tile_cache_clear(struct softpipe_tile_cache *tc,
127 sp_find_cached_tile(struct softpipe_tile_cache *tc,
147 sp_get_cached_tile(struct softpipe_tile_cache *tc, argument
152 if (tc->last_tile_addr.value == addr.value)
153 return tc->last_tile;
155 return sp_find_cached_tile( tc, add
[all...]
H A Dsp_tex_tile_cache.h111 sp_destroy_tex_tile_cache(struct softpipe_tex_tile_cache *tc);
114 sp_tex_tile_cache_set_sampler_view(struct softpipe_tex_tile_cache *tc,
118 sp_tex_tile_cache_validate_texture(struct softpipe_tex_tile_cache *tc);
121 sp_flush_tex_tile_cache(struct softpipe_tex_tile_cache *tc);
126 sp_find_cached_tile_tex(struct softpipe_tex_tile_cache *tc,
150 sp_get_cached_tile_tex(struct softpipe_tex_tile_cache *tc, argument
153 if (tc->last_tile->addr.value == addr.value)
154 return tc->last_tile;
156 return sp_find_cached_tile_tex( tc, addr );
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
H A Dsp_tex_tile_cache.c49 struct softpipe_tex_tile_cache *tc; local in function:sp_create_tex_tile_cache
55 tc = CALLOC_STRUCT( softpipe_tex_tile_cache );
56 if (tc) {
57 tc->pipe = pipe;
58 for (pos = 0; pos < ARRAY_SIZE(tc->entries); pos++) {
59 tc->entries[pos].addr.bits.invalid = 1;
61 tc->last_tile = &tc->entries[0]; /* any tile */
63 return tc;
68 sp_destroy_tex_tile_cache(struct softpipe_tex_tile_cache *tc) argument
93 sp_tex_tile_cache_validate_texture(struct softpipe_tex_tile_cache * tc) argument
106 sp_tex_tile_is_compat_view(struct softpipe_tex_tile_cache * tc,struct pipe_sampler_view * view) argument
123 sp_tex_tile_cache_set_sampler_view(struct softpipe_tex_tile_cache * tc,struct pipe_sampler_view * view) argument
166 sp_flush_tex_tile_cache(struct softpipe_tex_tile_cache * tc) argument
204 sp_find_cached_tile_tex(struct softpipe_tex_tile_cache * tc,union tex_tile_address addr) argument
[all...]
H A Dsp_tile_cache.c42 sp_alloc_tile(struct softpipe_tile_cache *tc);
93 struct softpipe_tile_cache *tc; local in function:sp_create_tile_cache
104 tc = CALLOC_STRUCT( softpipe_tile_cache );
105 if (tc) {
106 tc->pipe = pipe;
107 for (pos = 0; pos < ARRAY_SIZE(tc->tile_addrs); pos++) {
108 tc->tile_addrs[pos].bits.invalid = 1;
110 tc->last_tile_addr.bits.invalid = 1;
115 tc->tile = MALLOC_STRUCT( softpipe_cached_tile );
116 if (!tc
137 sp_destroy_tile_cache(struct softpipe_tile_cache * tc) argument
168 sp_tile_cache_set_surface(struct softpipe_tile_cache * tc,struct pipe_surface * ps) argument
225 sp_tile_cache_get_surface(struct softpipe_tile_cache * tc) argument
340 sp_tile_cache_flush_clear(struct softpipe_tile_cache * tc,int layer) argument
387 sp_flush_tile(struct softpipe_tile_cache * tc,unsigned pos) argument
415 sp_flush_tile_cache(struct softpipe_tile_cache * tc) argument
449 sp_alloc_tile(struct softpipe_tile_cache * tc) argument
486 sp_find_cached_tile(struct softpipe_tile_cache * tc,union tile_address addr) argument
573 sp_tile_cache_clear(struct softpipe_tile_cache * tc,const union pipe_color_union * color,uint64_t clearValue) argument
[all...]
H A Dsp_tile_cache.h109 sp_destroy_tile_cache(struct softpipe_tile_cache *tc);
112 sp_tile_cache_set_surface(struct softpipe_tile_cache *tc,
116 sp_tile_cache_get_surface(struct softpipe_tile_cache *tc);
119 sp_flush_tile_cache(struct softpipe_tile_cache *tc);
122 sp_tile_cache_clear(struct softpipe_tile_cache *tc,
127 sp_find_cached_tile(struct softpipe_tile_cache *tc,
147 sp_get_cached_tile(struct softpipe_tile_cache *tc, argument
152 if (tc->last_tile_addr.value == addr.value)
153 return tc->last_tile;
155 return sp_find_cached_tile( tc, add
[all...]
H A Dsp_tex_tile_cache.h111 sp_destroy_tex_tile_cache(struct softpipe_tex_tile_cache *tc);
114 sp_tex_tile_cache_set_sampler_view(struct softpipe_tex_tile_cache *tc,
118 sp_tex_tile_cache_validate_texture(struct softpipe_tex_tile_cache *tc);
121 sp_flush_tex_tile_cache(struct softpipe_tex_tile_cache *tc);
126 sp_find_cached_tile_tex(struct softpipe_tex_tile_cache *tc,
150 sp_get_cached_tile_tex(struct softpipe_tex_tile_cache *tc, argument
153 if (tc->last_tile->addr.value == addr.value)
154 return tc->last_tile;
156 return sp_find_cached_tile_tex( tc, addr );
/xsrc/external/mit/xtrap/dist/
H A Dxtrapproto.c69 XETC *tc; local in function:main
78 if ((tc = XECreateTC(dpy,0L, NULL)) == NULL)
84 XEResetRequest(tc);
85 XEGetAvailableRequest(tc,&ret_avail);
87 XEGetCurrentRequest(tc,&ret_cur);
89 XETrapSetStatistics(tc, True); /* trigger config and def stats */
90 XEFlushConfig(tc);
91 XEGetStatisticsRequest(tc, &ret_stats);
92 XEPrintStatistics(stdout, &ret_stats,tc);
93 XEStartTrapRequest(tc);
[all...]
H A Dxtrapstats.c67 XETC *tc; local in function:main
84 if ((tc = XECreateTC(dpy,0L, NULL)) == NULL)
90 (void)XEGetAvailableRequest(tc,&ret_avail);
97 XETrapSetStatistics(tc, True);
102 XETrapSetRequests(tc, True, requests);
107 XETrapSetEvents(tc, True, events);
117 (void)XEGetStatisticsRequest(tc,&ret_stats);
118 (void)XEPrintStatistics(stdout,&ret_stats,tc);
121 XETrapSetStatistics(tc, False);
131 (void)XEFreeTC(tc);
[all...]
H A Dxtrapchar.c150 static void KeyClick(XETC *tc, KeyCode keycode) argument
154 XESimulateXEventRequest(tc, KeyPress, ctrl_code, 0, 0, 0);
158 XESimulateXEventRequest(tc, KeyPress, shift_code, 0, 0, 0);
160 XESimulateXEventRequest(tc, KeyPress, keycode, 0, 0, 0);
161 XESimulateXEventRequest(tc, KeyRelease, keycode, 0, 0, 0);
164 XESimulateXEventRequest(tc, KeyRelease, shift_code, 0, 0, 0);
168 XESimulateXEventRequest(tc, KeyRelease, ctrl_code, 0, 0, 0);
179 static int get_csi_key ( XETC *tc , int private , int param [],
181 static int get_ss3_key ( XETC *tc , int private , int param [],
183 static void send_special ( XETC *tc , in
195 XETC *tc; local in function:main
371 get_csi_key(XETC * tc,int private,int param[],int nparam,int inter[],int ninter,int final) argument
446 send_special(XETC * tc,int private,int param[],int nparam,int inter[],int ninter,int final) argument
618 get_ss3_key(XETC * tc,int private,int param[],int nparam,int inter[],int ninter,int final) argument
662 get_typical_char(XETC * tc,CARD32 keysym) argument
697 get_keycode(XETC * tc,KeySym keysym) argument
[all...]
H A Dxtrapout.c118 static void print_req_callback (XETC *tc , XETrapDatum *data ,
120 static void print_evt_callback (XETC *tc , XETrapDatum *data ,
140 static void print_req_callback(XETC *tc, XETrapDatum *data, BYTE *my_buf) argument
143 req_type = (data->u.req.reqType == XETrapGetExtOpcode(tc) ? "XTrap" :
144 XERequestIDToString(data->u.req.reqType,tc));
150 static void print_evt_callback(XETC *tc, XETrapDatum *data, BYTE *my_buf) argument
167 XEEventIDToString(data->u.event.u.u.type,tc), data->u.event.u.u.type,
186 XETC *tc; local in function:main
239 if ((tc = XECreateTC(dpy,0L, NULL)) == NULL)
244 XETrapSetTimestamps(tc,Tru
[all...]
/xsrc/external/mit/xorgproto/dist/include/X11/extensions/
H A Dxtraplibp.h53 int XEChangeTC (XETC *tc , CARD32 mask , XETCValues *values );
54 void XEFreeTC (XETC *tc );
55 int XETrapSetMaxPacket (XETC *tc , Bool set_flag , CARD16 size );
56 int XETrapSetCommandKey (XETC *tc , Bool set_flag , KeySym cmd_key ,
58 int XETrapSetTimestamps (XETC *tc , Bool set_flag , Bool delta_flag );
59 int XETrapSetWinXY (XETC *tc , Bool set_flag );
60 int XETrapSetCursor (XETC *tc , Bool set_flag );
61 int XETrapSetXInput (XETC *tc , Bool set_flag );
62 int XETrapSetColorReplies (XETC *tc , Bool set_flag );
63 int XETrapSetGrabServer (XETC *tc , Boo
[all...]
H A Dxtrapemacros.h224 #define XETrapGetTCReqCB(tc) ((tc)->values.req_cb)
225 #define XETrapGetTCEvtCB(tc) ((tc)->values.evt_cb)
226 #define XETrapGetTCTime(tc) ((tc)->values.last_time)
228 #define XETrapGetTCLFlags(tc,a) \
229 memcpy((a), (tc)->values.tc_flags, sizeof((tc)->values.tc_flags))
230 #define XETrapGetTCFlagDeltaTimes(tc) \
[all...]
/xsrc/external/mit/libXTrap/dist/src/
H A DXECallBcks.c46 int XEAddRequestCB(XETC *tc, CARD8 req, void_function func, BYTE *data) argument
48 if (!tc->values.req_cb)
50 if ((tc->values.req_cb =
57 tc->values.req_cb[req].func = func;
58 tc->values.req_cb[req].data = data;
63 int XEAddRequestCBs(XETC *tc, ReqFlags req_flags, void_function func, argument
73 status = XEAddRequestCB(tc, (CARD8)i, func, data);
80 int XEAddEventCB(XETC *tc, CARD8 evt, void_function func, BYTE *data)
82 if (!tc->values.evt_cb)
84 if ((tc
79 XEAddEventCB(XETC * tc,CARD8 evt,void_function func,BYTE * data) argument
96 XEAddEventCBs(XETC * tc,EventFlags evt_flags,void_function func,BYTE * data) argument
112 XERemoveRequestCB(XETC * tc,CARD8 req) argument
122 XERemoveRequestCBs(XETC * tc,ReqFlags req_flags) argument
135 XERemoveAllRequestCBs(XETC * tc) argument
144 XERemoveEventCB(XETC * tc,CARD8 evt) argument
155 XERemoveEventCBs(XETC * tc,EventFlags evt_flags) argument
168 XERemoveAllEventCBs(XETC * tc) argument
[all...]
H A DXEDsptch.c42 static void XETrapDispatchCB(XETC *tc, XETrapDatum *pdatum) argument
48 if (XETrapGetTCFlagDeltaTimes(tc))
50 CARD32 last_time = XETrapGetTCTime(tc);
72 tc->values.last_time = pdatum->hdr.timestamp; /* no macro! */
85 pfunc = tc->values.evt_cb[pdatum->u.event.u.u.type].func;
86 userp = tc->values.evt_cb[pdatum->u.event.u.u.type].data;
91 pfunc = tc->values.req_cb[pdatum->u.req.reqType].func;
92 userp = tc->values.req_cb[pdatum->u.req.reqType].data;
98 (*pfunc)(tc,pdatum,userp);
103 Boolean XETrapDispatchXLib(XETrapDataEvent *event, XETC *tc)
102 XETrapDispatchXLib(XETrapDataEvent * event,XETC * tc) argument
[all...]
H A DXEConTxt.c63 register XETC *tc = &TC; local in function:XECreateTC
72 memset(tc,0L,sizeof(*tc));
73 tc->eventBase = 0x7FFFFFFFL;
74 tc->errorBase = 0x7FFFFFFFL;
75 tc->values.v.max_pkt_size = 0x7FFFL;
79 for (;tc->next != NULL; tc = tc->next);
82 last_tc = tc; /* sav
198 XEChangeTC(XETC * tc,CARD32 mask,XETCValues * values) argument
299 XEFreeTC(XETC * tc) argument
334 XETrapSetMaxPacket(XETC * tc,Bool set_flag,CARD16 size) argument
346 XETrapSetCommandKey(XETC * tc,Bool set_flag,KeySym cmd_key,Bool mod_flag) argument
381 XETrapSetTimestamps(XETC * tc,Bool set_flag,Bool delta_flag) argument
394 XETrapSetWinXY(XETC * tc,Bool set_flag) argument
406 XETrapSetCursor(XETC * tc,Bool set_flag) argument
418 XETrapSetXInput(XETC * tc,Bool set_flag) argument
430 XETrapSetColorReplies(XETC * tc,Bool set_flag) argument
442 XETrapSetGrabServer(XETC * tc,Bool set_flag) argument
454 XETrapSetStatistics(XETC * tc,Bool set_flag) argument
466 XETrapSetRequests(XETC * tc,Bool set_flag,ReqFlags requests) argument
483 XETrapSetEvents(XETC * tc,Bool set_flag,EventFlags events) argument
500 XESetCmdGateState(XETC * tc,CARD8 type,Bool * gate_closed,CARD8 * next_key,Bool * key_ignore) argument
[all...]
H A DXERqsts.c142 int XEGetVersionRequest(XETC *tc, XETrapGetVersRep *ret) argument
145 Display *dpy = tc->dpy;
146 CARD32 X_XTrapGet = tc->extOpcode;
162 int XEGetAvailableRequest(XETC *tc, XETrapGetAvailRep *ret) argument
165 Display *dpy = tc->dpy;
166 CARD32 X_XTrapGet = tc->extOpcode;
183 static int XEConfigRequest(XETC *tc) argument
186 Display *dpy = tc->dpy;
187 CARD32 X_XTrapConfig = tc->extOpcode;
189 if (tc
217 XEFlushConfig(XETC * tc) argument
221 XEResetRequest(XETC * tc) argument
239 XEGetLastInpTimeRequest(XETC * tc,XETrapGetLastInpTimeRep * ret) argument
260 XEStartTrapRequest(XETC * tc) argument
279 XEStopTrapRequest(XETC * tc) argument
301 XESimulateXEventRequest(XETC * tc,CARD8 type,CARD8 detail,CARD16 x,CARD16 y,CARD8 screen) argument
323 XEGetCurrentRequest(XETC * tc,XETrapGetCurRep * ret) argument
367 XEGetStatisticsRequest(XETC * tc,XETrapGetStatsRep * ret) argument
[all...]
H A DXEWrappers.c106 Boolean (*XETrapGetEventHandler(XETC *tc, CARD32 id))(XETrapDataEvent *event, XETC *tc)
108 return((id < XETrapNumberEvents) ? tc->eventFunc[id] : NULL);
111 Boolean (*XETrapSetEventHandler(XETC *tc, CARD32 id,
112 Boolean (*pfunc)(XETrapDataEvent *event, XETC *tc)))(XETrapDataEvent *event, XETC *tc)
114 register Boolean (*rfunc)(XETrapDataEvent *event, XETC *tc) = NULL;
118 rfunc = XETrapGetEventHandler(tc,id);
119 tc->eventFunc[id] = pfunc;
124 Boolean XETrapDispatchEvent(XEvent *pevent, XETC *tc)
105 XETrapGetEventHandler(XETC * tc,CARD32 id) argument
110 XETrapSetEventHandler(XETC * tc,CARD32 id,Boolean (* pfunc)(XETrapDataEvent * event,XETC * tc)) argument
123 XETrapDispatchEvent(XEvent * pevent,XETC * tc) argument
198 XETrapAppMainLoop(XtAppContext app,XETC * tc) argument
226 XETrapAppWhileLoop(XtAppContext app,XETC * tc,Bool * done) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_texture.c53 /* Compute sc = +/-scale and tc = +/-scale.
59 * would be to clamp (sc, tc) against +/- 1.0-1.0/mipsize, in the shader.
65 const float tc = (2 * in_st[1] - 1) * scale; local in function:util_map_texcoords2d_onto_cubemap
70 ry = -tc;
75 ry = -tc;
81 rz = tc;
86 rz = -tc;
90 ry = -tc;
95 ry = -tc;
H A Du_threaded_context.c74 tc_debug_check(struct threaded_context *tc) argument
77 tc_batch_check(&tc->batch_slots[i]);
78 tc_assert(tc->batch_slots[i].pipe == tc->pipe);
104 tc_batch_flush(struct threaded_context *tc) argument
106 struct tc_batch *next = &tc->batch_slots[tc->next];
110 tc_debug_check(tc);
111 p_atomic_add(&tc->num_offloaded_slots, next->num_total_call_slots);
114 next->token->tc
129 tc_add_sized_call(struct threaded_context * tc,enum tc_call_id id,unsigned payload_size) argument
167 tc_add_small_call(struct threaded_context * tc,enum tc_call_id id) argument
173 tc_is_sync(struct threaded_context * tc) argument
183 _tc_sync(struct threaded_context * tc,MAYBE_UNUSED const char * info,MAYBE_UNUSED const char * func) argument
237 struct threaded_context *tc = threaded_context(_pipe); local in function:threaded_context_flush
333 struct threaded_context *tc = threaded_context(_pipe); variable in typeref:struct:threaded_context *
343 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_create_batch_query
363 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_destroy_query
377 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_begin_query
385 struct threaded_context *tc; member in struct:tc_end_query_payload
404 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_end_query
422 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_get_query_result
467 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_get_query_result_resource
498 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_render_condition
574 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_bind_sampler_states
606 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_framebuffer_state
638 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_tess_state
668 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_constant_buffer
721 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_scissor_states
750 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_viewport_states
778 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_window_rectangles
812 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_sampler_views
862 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_shader_images
925 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_shader_buffers
985 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_vertex_buffers
1040 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_stream_output_targets
1057 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_compute_resources
1069 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_global_binding
1167 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_create_texture_handle
1184 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_delete_texture_handle
1211 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_make_texture_handle_resident
1224 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_create_image_handle
1241 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_delete_image_handle
1269 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_make_image_handle_resident
1303 tc_invalidate_buffer(struct threaded_context * tc,struct threaded_resource * tbuf) argument
1345 tc_improve_map_buffer_flags(struct threaded_context * tc,struct threaded_resource * tres,unsigned usage,unsigned offset,unsigned size) argument
1446 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_transfer_map
1523 tc_buffer_do_flush_region(struct threaded_context * tc,struct threaded_transfer * ttrans,const struct pipe_box * box) argument
1549 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_transfer_flush_region
1584 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_transfer_unmap
1627 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_buffer_subdata
1696 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_texture_subdata
1752 struct threaded_context *tc = threaded_context(_pipe); local in function:TC_FUNC_SYNC_RET0
1764 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_device_reset_callback
1787 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_emit_string_marker
1807 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_dump_debug_state
1818 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_debug_callback
1835 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_log_context
1847 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_create_fence_fd
1865 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_fence_server_sync
1884 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_fence_server_signal
1928 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_context_param
1952 struct threaded_context *tc; member in struct:tc_flush_payload
1958 tc_flush_queries(struct threaded_context * tc) argument
1989 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_flush
2078 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_draw_vbo
2142 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_launch_grid
2169 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_resource_copy_region
2201 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_blit
2241 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_generate_mipmap
2279 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_flush_resource
2296 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_invalidate_resource
2326 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_clear
2343 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_clear_render_target
2358 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_clear_depth_stencil
2390 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_clear_buffer
2424 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_clear_texture
2455 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_resource_commit
2488 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_callback
2509 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_destroy
2561 struct threaded_context *tc; local in function:threaded_context_create
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
H A Du_texture.c53 /* Compute sc = +/-scale and tc = +/-scale.
59 * would be to clamp (sc, tc) against +/- 1.0-1.0/mipsize, in the shader.
65 const float tc = (2 * in_st[1] - 1) * scale; local in function:util_map_texcoords2d_onto_cubemap
70 ry = -tc;
75 ry = -tc;
81 rz = tc;
86 rz = -tc;
90 ry = -tc;
95 ry = -tc;
H A Du_threaded_context.c82 tc_debug_check(struct threaded_context *tc) argument
85 tc_batch_check(&tc->batch_slots[i]);
86 tc_assert(tc->batch_slots[i].tc == tc);
91 tc_set_driver_thread(struct threaded_context *tc) argument
94 tc->driver_thread = util_get_thread_id();
99 tc_clear_driver_thread(struct threaded_context *tc) argument
102 memset(&tc->driver_thread, 0, sizeof(tc
220 struct threaded_context *tc = batch->tc; local in function:tc_batch_execute
245 tc_begin_next_buffer_list(struct threaded_context * tc) argument
262 tc_batch_flush(struct threaded_context * tc) argument
289 tc_add_sized_call(struct threaded_context * tc,enum tc_call_id id,unsigned num_slots) argument
329 tc_is_sync(struct threaded_context * tc) argument
339 _tc_sync(struct threaded_context * tc,UNUSED const char * info,UNUSED const char * func) argument
395 struct threaded_context *tc = threaded_context(_pipe); local in function:threaded_context_flush
468 tc_add_shader_bindings_to_buffer_list(struct threaded_context * tc,BITSET_WORD * buffer_list,enum pipe_shader_type shader) argument
489 tc_rebind_shader_bindings(struct threaded_context * tc,uint32_t old_id,uint32_t new_id,enum pipe_shader_type shader,uint32_t * rebind_mask) argument
524 tc_add_all_gfx_bindings_to_buffer_list(struct threaded_context * tc) argument
550 tc_add_all_compute_bindings_to_buffer_list(struct threaded_context * tc) argument
559 tc_rebind_buffer(struct threaded_context * tc,uint32_t old_id,uint32_t new_id,uint32_t * rebind_mask) argument
604 tc_is_buffer_shader_bound_for_write(struct threaded_context * tc,uint32_t id,enum pipe_shader_type shader) argument
621 tc_is_buffer_bound_for_write(struct threaded_context * tc,uint32_t id) argument
649 tc_is_buffer_busy(struct threaded_context * tc,struct threaded_resource * tbuf,unsigned map_usage) argument
759 struct threaded_context *tc = threaded_context(_pipe); variable in typeref:struct:threaded_context *
769 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_create_batch_query
796 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_destroy_query
811 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_begin_query
819 struct threaded_context *tc; member in struct:tc_end_query_call
839 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_end_query
857 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_get_query_result
909 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_get_query_result_resource
943 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_render_condition
1024 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_bind_sampler_states
1062 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_framebuffer_state
1100 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_tess_state
1124 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_patch_vertices
1161 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_constant_buffer
1234 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_inlinable_constants
1261 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_sample_locations
1290 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_scissor_states
1322 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_viewport_states
1352 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_window_rectangles
1387 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_sampler_views
1476 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_shader_images
1566 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_shader_buffers
1645 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_vertex_buffers
1731 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_stream_output_targets
1757 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_compute_resources
1769 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_global_binding
1866 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_create_texture_handle
1893 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_make_texture_handle_resident
1906 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_create_image_handle
1934 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_make_image_handle_resident
1973 tc_invalidate_buffer(struct threaded_context * tc,struct threaded_resource * tbuf) argument
2038 tc_improve_map_buffer_flags(struct threaded_context * tc,struct threaded_resource * tres,unsigned usage,unsigned offset,unsigned size) argument
2141 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_buffer_map
2219 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_texture_map
2270 tc_buffer_do_flush_region(struct threaded_context * tc,struct threaded_transfer * ttrans,const struct pipe_box * box) argument
2297 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_transfer_flush_region
2356 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_buffer_unmap
2427 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_texture_unmap
2467 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_buffer_subdata
2545 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_texture_subdata
2602 struct threaded_context *tc = threaded_context(_pipe); local in function:TC_FUNC_SYNC_RET0
2613 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_get_device_reset_status
2626 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_device_reset_callback
2651 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_emit_string_marker
2673 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_dump_debug_state
2684 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_debug_callback
2701 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_log_context
2713 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_create_fence_fd
2739 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_fence_server_sync
2762 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_fence_server_signal
2809 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_set_context_param
2843 struct threaded_context *tc; member in struct:tc_flush_call
2848 tc_flush_queries(struct threaded_context * tc) argument
2881 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_flush
3136 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_draw_vbo
3438 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_draw_vertex_state
3523 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_launch_grid
3557 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_resource_copy_region
3602 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_blit
3643 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_generate_mipmap
3688 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_flush_resource
3709 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_invalidate_resource
3745 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_clear
3787 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_clear_render_target
3833 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_clear_depth_stencil
3872 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_clear_buffer
3909 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_clear_texture
3942 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_resource_commit
3956 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_init_intel_perf_query_info
3970 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_get_intel_perf_query_info
3990 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_get_intel_perf_query_counter_info
4000 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_new_intel_perf_query_obj
4016 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_begin_intel_perf_query
4034 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_end_intel_perf_query
4042 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_delete_intel_perf_query
4052 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_wait_intel_perf_query
4062 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_is_intel_perf_query_ready
4076 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_get_intel_perf_query_data
4106 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_callback
4127 struct threaded_context *tc = threaded_context(_pipe); local in function:tc_destroy
4167 tc_driver_internal_flush_notify(struct threaded_context * tc) argument
4202 struct threaded_context *tc; local in function:threaded_context_create
4429 threaded_context_init_bytes_mapped_limit(struct threaded_context * tc,unsigned divisor) argument
[all...]
/xsrc/external/mit/libxcb/dist/tests/
H A Dcheck_all.c10 TCase *tc = tcase_create(name); local in function:suite_add_test
13 tcase_add_test(tc, tf);
15 tcase_add_test(tc, tt);
17 suite_add_tcase(s, tc);
/xsrc/external/mit/libX11/dist/src/
H A DGetMoEv.c43 XTimeCoord *tc = NULL; local in function:XGetMotionEvents
57 tc = Xmallocarray(rep.nEvents, sizeof(XTimeCoord));
58 if (tc == NULL) {
70 for (i = rep.nEvents, tcptr = tc; i > 0; i--, tcptr++) {
80 return (tc);

Completed in 25 milliseconds

12345