Searched defs:tc (Results 26 - 50 of 126) sorted by relevance

123456

/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tile_cache.c42 sp_alloc_tile(struct softpipe_tile_cache *tc);
86 struct softpipe_tile_cache *tc; local
99 tc = CALLOC_STRUCT( softpipe_tile_cache );
100 if (tc) {
101 tc->pipe = pipe;
103 tc->tile_addrs[pos].bits.invalid = 1;
105 tc->last_tile_addr.bits.invalid = 1;
110 tc->tile = MALLOC_STRUCT( softpipe_cached_tile );
111 if (!tc->tile)
113 FREE(tc);
132 sp_destroy_tile_cache(struct softpipe_tile_cache *tc) argument
156 sp_tile_cache_set_surface(struct softpipe_tile_cache *tc, struct pipe_surface *ps) argument
192 sp_tile_cache_get_surface(struct softpipe_tile_cache *tc) argument
199 sp_tile_cache_map_transfers(struct softpipe_tile_cache *tc) argument
207 sp_tile_cache_unmap_transfers(struct softpipe_tile_cache *tc) argument
325 sp_tile_cache_flush_clear(struct softpipe_tile_cache *tc) argument
388 sp_flush_tile(struct softpipe_tile_cache* tc, unsigned pos) argument
431 sp_flush_tile_cache(struct softpipe_tile_cache *tc) argument
462 sp_alloc_tile(struct softpipe_tile_cache *tc) argument
499 sp_find_cached_tile(struct softpipe_tile_cache *tc, union tile_address addr ) argument
614 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.h106 sp_destroy_tile_cache(struct softpipe_tile_cache *tc);
109 sp_tile_cache_set_surface(struct softpipe_tile_cache *tc,
113 sp_tile_cache_get_surface(struct softpipe_tile_cache *tc);
116 sp_tile_cache_map_transfers(struct softpipe_tile_cache *tc);
119 sp_tile_cache_unmap_transfers(struct softpipe_tile_cache *tc);
122 sp_flush_tile_cache(struct softpipe_tile_cache *tc);
125 sp_tile_cache_clear(struct softpipe_tile_cache *tc,
130 sp_find_cached_tile(struct softpipe_tile_cache *tc,
150 sp_get_cached_tile(struct softpipe_tile_cache *tc, argument
155 if (tc
[all...]
H A Dsp_tex_tile_cache.h107 sp_destroy_tex_tile_cache(struct softpipe_tex_tile_cache *tc);
111 sp_tex_tile_cache_map_transfers(struct softpipe_tex_tile_cache *tc);
114 sp_tex_tile_cache_unmap_transfers(struct softpipe_tex_tile_cache *tc);
117 sp_tex_tile_cache_set_sampler_view(struct softpipe_tex_tile_cache *tc,
121 sp_tex_tile_cache_validate_texture(struct softpipe_tex_tile_cache *tc);
124 sp_flush_tex_tile_cache(struct softpipe_tex_tile_cache *tc);
129 sp_find_cached_tile_tex(struct softpipe_tex_tile_cache *tc,
154 sp_get_cached_tile_tex(struct softpipe_tex_tile_cache *tc, argument
157 if (tc->last_tile->addr.value == addr.value)
158 return tc
[all...]
/external/srtp/crypto/test/
H A Dsha1_driver.c148 struct hex_sha1_test_case_t tc[] = { local
476 tc[i].hex_data,
477 tc[i].bit_len/8,
478 tc[i].hex_hash, 20);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3basetreeadaptor.c577 pANTLR3_BASE_TREE tc; local
581 tc = adaptor->create(adaptor, child);
582 adaptor->addChild(adaptor, t, tc);
583 adaptor->debugger->addChild(adaptor->debugger, t, tc);
/external/chromium_org/media/formats/mp2t/
H A Dmp2t_stream_parser_unittest.cc111 const StreamParser::TextTrackConfigMap& tc) {
109 OnNewConfig(const AudioDecoderConfig& ac, const VideoDecoderConfig& vc, const StreamParser::TextTrackConfigMap& tc) argument
/external/chromium_org/media/formats/mp4/
H A Dmp4_stream_parser_unittest.cc72 const StreamParser::TextTrackConfigMap& tc) {
70 NewConfigF(const AudioDecoderConfig& ac, const VideoDecoderConfig& vc, const StreamParser::TextTrackConfigMap& tc) argument
/external/chromium_org/third_party/icu/source/test/letest/
H A Dxmlreader.cpp164 int32_t tc = 0; local
166 while((testCase = root->nextChildElement(tc)) != NULL) {
/external/chromium_org/third_party/icu/source/test/perf/leperf/
H A Dxmlreader.cpp164 int32_t tc = 0; local
166 while((testCase = root->nextChildElement(tc)) != NULL) {
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dppucd.h57 UnicodeString cf, lc, tc, uc; member in struct:UniProps
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe_wide_point.c95 struct vertex_header *v, const float tc[4])
104 v->data[slot][0] = tc[0];
106 v->data[slot][1] = 1.0f - tc[1];
108 v->data[slot][1] = tc[1];
109 v->data[slot][2] = tc[2];
110 v->data[slot][3] = tc[3];
94 set_texcoords(const struct widepoint_stage *wide, struct vertex_header *v, const float tc[4]) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_mc.c163 struct ureg_src tc[2], sampler; local
172 tc[0] = ureg_DECL_fs_input(shader, TGSI_SEMANTIC_GENERIC, VS_O_VTOP, TGSI_INTERPOLATE_LINEAR);
173 tc[1] = ureg_DECL_fs_input(shader, TGSI_SEMANTIC_GENERIC, VS_O_VBOTTOM, TGSI_INTERPOLATE_LINEAR);
183 * ref = field.z ? tc[1] : tc[0]
185 * // Adjust tc acording to top/bottom field selection
196 tc[1], tc[0]);
199 tc[1], tc[
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_debug.c308 unsigned tc = (ptr[j] >> (i * 4)) & 0xf; local
309 if (tc != 0xf)
310 BITS(stream, tc, 3, 0, "tex coord %d", i);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_tex_tile_cache.h107 sp_destroy_tex_tile_cache(struct softpipe_tex_tile_cache *tc);
111 sp_tex_tile_cache_map_transfers(struct softpipe_tex_tile_cache *tc);
114 sp_tex_tile_cache_unmap_transfers(struct softpipe_tex_tile_cache *tc);
117 sp_tex_tile_cache_set_sampler_view(struct softpipe_tex_tile_cache *tc,
121 sp_tex_tile_cache_validate_texture(struct softpipe_tex_tile_cache *tc);
124 sp_flush_tex_tile_cache(struct softpipe_tex_tile_cache *tc);
129 sp_find_cached_tile_tex(struct softpipe_tex_tile_cache *tc,
154 sp_get_cached_tile_tex(struct softpipe_tex_tile_cache *tc, argument
157 if (tc->last_tile->addr.value == addr.value)
158 return tc
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_debug.c232 unsigned tc = (ptr[j] >> (i * 4)) & 0xf; local
233 if (tc != 0xf)
234 BITS(tc, 3, 0, "tex coord %d", i);
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_rasterpos.c463 GLfloat tc[4]; local
464 COPY_4V(tc, ctx->Current.Attrib[VERT_ATTRIB_TEX0 + u]);
466 compute_texgen(ctx, vObj, eye, norm, u, tc);
469 ctx->TextureMatrixStack[u].Top->m, tc);
/external/clang/test/SemaCXX/
H A Dmember-init.cpp40 struct Throw { ThrowCtor tc = 42; }; member in struct:Throw
41 struct NoThrow { NoThrowCtor tc = 42; }; member in struct:NoThrow
52 ThrowCtor tc = 123; member in struct:CheckExcSpecFail
/external/icu/icu4c/source/test/letest/
H A Dxmlreader.cpp164 int32_t tc = 0; local
166 while((testCase = root->nextChildElement(tc)) != NULL) {
/external/icu/icu4c/source/test/perf/leperf/
H A Dxmlreader.cpp164 int32_t tc = 0; local
166 while((testCase = root->nextChildElement(tc)) != NULL) {
/external/icu/icu4c/source/tools/toolutil/
H A Dppucd.h57 UnicodeString cf, lc, tc, uc; member in struct:UniProps
/external/libedit/src/
H A Dcommon.c362 Char tc; local
365 num = FUN(el,getc)(el, &tc);
366 c = tc;
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_wide_point.c95 struct vertex_header *v, const float tc[4])
104 v->data[slot][0] = tc[0];
106 v->data[slot][1] = 1.0f - tc[1];
108 v->data[slot][1] = tc[1];
109 v->data[slot][2] = tc[2];
110 v->data[slot][3] = tc[3];
94 set_texcoords(const struct widepoint_stage *wide, struct vertex_header *v, const float tc[4]) argument
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_mc.c163 struct ureg_src tc[2], sampler; local
172 tc[0] = ureg_DECL_fs_input(shader, TGSI_SEMANTIC_GENERIC, VS_O_VTOP, TGSI_INTERPOLATE_LINEAR);
173 tc[1] = ureg_DECL_fs_input(shader, TGSI_SEMANTIC_GENERIC, VS_O_VBOTTOM, TGSI_INTERPOLATE_LINEAR);
183 * ref = field.z ? tc[1] : tc[0]
185 * // Adjust tc acording to top/bottom field selection
196 tc[1], tc[0]);
199 tc[1], tc[
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_debug.c308 unsigned tc = (ptr[j] >> (i * 4)) & 0xf; local
309 if (tc != 0xf)
310 BITS(stream, tc, 3, 0, "tex coord %d", i);
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_debug.c232 unsigned tc = (ptr[j] >> (i * 4)) & 0xf; local
233 if (tc != 0xf)
234 BITS(tc, 3, 0, "tex coord %d", i);

Completed in 588 milliseconds

123456