HomeSort by relevance Sort by last modified time
    Searched refs:tc (Results 1 - 25 of 362) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_tex_tile_cache.c 49 struct softpipe_tex_tile_cache *tc; local
55 tc = CALLOC_STRUCT( softpipe_tex_tile_cache );
56 if (tc) {
57 tc->pipe = pipe;
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)
70 if (tc) {
    [all...]
sp_tile_cache.c 42 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);
    [all...]
sp_tile_cache.h 106 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,
155 if (tc->last_tile_addr.value == addr.value
    [all...]
sp_tex_tile_cache.h 107 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,
157 if (tc->last_tile->addr.value == addr.value)
158 return tc->last_tile
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_tile_cache.c 49 struct softpipe_tex_tile_cache *tc; local
55 tc = CALLOC_STRUCT( softpipe_tex_tile_cache );
56 if (tc) {
57 tc->pipe = pipe;
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)
70 if (tc) {
    [all...]
sp_tile_cache.c 42 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);
    [all...]
sp_tile_cache.h 106 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,
155 if (tc->last_tile_addr.value == addr.value
    [all...]
sp_tex_tile_cache.h 107 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,
157 if (tc->last_tile->addr.value == addr.value)
158 return tc->last_tile
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/arch/x86/util/
tsc.c 11 u64 perf_time_to_tsc(u64 ns, struct perf_tsc_conversion *tc)
15 t = ns - tc->time_zero;
16 quot = t / tc->time_mult;
17 rem = t % tc->time_mult;
18 return (quot << tc->time_shift) +
19 (rem << tc->time_shift) / tc->time_mult;
22 u64 tsc_to_perf_time(u64 cyc, struct perf_tsc_conversion *tc)
26 quot = cyc >> tc->time_shift;
27 rem = cyc & ((1 << tc->time_shift) - 1)
    [all...]
tsc.h 15 struct perf_tsc_conversion *tc);
17 u64 perf_time_to_tsc(u64 ns, struct perf_tsc_conversion *tc);
18 u64 tsc_to_perf_time(u64 cyc, struct perf_tsc_conversion *tc);
  /external/iproute2/man/man8/
Makefile 4 tc-bfifo.8 tc-cbq-details.8 tc-cbq.8 tc-drr.8 tc-htb.8 \
5 tc-pfifo.8 tc-pfifo_fast.8 tc-prio.8 tc-red.8 tc-sfq.8
    [all...]
  /external/expat/tests/
minicheck.c 28 TCase *tc = (TCase *) calloc(1, sizeof(TCase)); local
29 if (tc != NULL) {
30 tc->name = name;
32 return tc;
36 suite_add_tcase(Suite *suite, TCase *tc)
39 assert(tc != NULL);
40 assert(tc->next_tcase == NULL);
42 tc->next_tcase = suite->tests;
43 suite->tests = tc;
47 tcase_add_checked_fixture(TCase *tc,
114 TCase *tc; local
    [all...]
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
BurstControlPane.java 35 public BurstControlPane(TestingCamera21 tc, AttributeSet attrs, StatusListener listener) {
36 super(tc, attrs, listener, tc.getPaneTracker());
38 this.setName(tc.getResources().getString(R.string.burst_pane_title));
41 public BurstControlPane(TestingCamera21 tc, XmlPullParser configParser, StatusListener listener)
43 super(tc, null, listener, tc.getPaneTracker());
45 this.setName(tc.getResources().getString(R.string.request_pane_title));
UtilControlPane.java 34 public UtilControlPane(TestingCamera21 tc, AttributeSet attrs, StatusListener listener) {
35 super(tc, attrs, listener, tc.getPaneTracker());
37 this.setName(tc.getResources().getString(R.string.util_pane_title));
40 public UtilControlPane(TestingCamera21 tc, XmlPullParser configParser, StatusListener listener)
42 super(tc, null, listener, tc.getPaneTracker());
44 this.setName(tc.getResources().getString(R.string.util_pane_title));
PaneLayout.java 120 public void readConfig(TestingCamera21 tc, XmlPullParser configParser)
128 T pane = readControlPane(tc, configParser);
154 public void addPane(TestingCamera21 tc) {
155 T newPane = createControlPane(tc, null);
175 protected abstract T createControlPane(TestingCamera21 tc, AttributeSet attrs);
177 protected abstract T readControlPane(TestingCamera21 tc, XmlPullParser configParser)
187 protected TargetControlPane createControlPane(TestingCamera21 tc, AttributeSet attrs) {
188 return new TargetControlPane(tc, attrs, this);
191 protected TargetControlPane readControlPane(TestingCamera21 tc, XmlPullParser configParser)
193 return new TargetControlPane(tc, configParser, this)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_texture.c 52 /* Compute sc = +/-scale and tc = +/-scale.
58 const float tc = (2 * in_st[1] - 1) * scale; local
63 ry = -tc;
68 ry = -tc;
74 rz = tc;
79 rz = -tc;
83 ry = -tc;
88 ry = -tc;
  /external/mesa3d/src/gallium/auxiliary/util/
u_texture.c 52 /* Compute sc = +/-scale and tc = +/-scale.
58 const float tc = (2 * in_st[1] - 1) * scale; local
63 ry = -tc;
68 ry = -tc;
74 rz = tc;
79 rz = -tc;
83 ry = -tc;
88 ry = -tc;
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/wizards/
NdkWizardHandler.java 32 for (IToolChain tc : tcs) {
33 if (tc.getId().equals("com.android.toolchain.gcc")) //$NON-NLS-1$
35 tc
  /external/libhevc/common/
ihevc_deblk_edge_filter.c 113 WORD32 beta, tc; local
128 /* based on BS, tc index is calcuated by adding 2 * ( bs - 1) to QP and tc_offset */
135 tc = gai4_ihevc_tc_table[tc_indx];
136 if(0 == tc)
166 && ABS(pu1_src[0] - pu1_src[-1]) < ((5 * tc + 1) >> 1))
176 && ABS(pu1_src[0] - pu1_src[-1]) < ((5 * tc + 1) >> 1))
185 if(tc <= 1)
209 pu1_src[0] - 2 * tc,
210 pu1_src[0] + 2 * tc);
214 pu1_src[1] - 2 * tc,
351 WORD32 beta, tc; local
588 WORD32 beta, tc; local
850 WORD32 beta, tc; local
1345 WORD32 tc; local
1460 WORD32 tc; local
    [all...]
  /external/deqp/modules/gles3/functional/
es3fScissorTests.cpp 63 tcu::TestContext& tc = m_context.getTestContext();
94 addChild(createPrimitiveTest(tc,
104 addChild(createClearTest(tc, rc, "clear_depth", "Depth buffer clear", Vec4(0.1f, 0.1f, 0.8f, 0.8f), GL_DEPTH_BUFFER_BIT));
105 addChild(createClearTest(tc, rc, "clear_stencil", "Stencil buffer clear", Vec4(0.1f, 0.1f, 0.8f, 0.8f), GL_STENCIL_BUFFER_BIT));
106 addChild(createClearTest(tc, rc, "clear_color", "Color buffer clear", Vec4(0.1f, 0.1f, 0.8f, 0.8f), GL_COLOR_BUFFER_BIT));
108 addChild(createFramebufferClearTest(tc, rc, "clear_fixed_buffer", "Fixed point color clear", CLEAR_COLOR_FIXED));
109 addChild(createFramebufferClearTest(tc, rc, "clear_int_buffer", "Integer color clear", CLEAR_COLOR_INT));
110 addChild(createFramebufferClearTest(tc, rc, "clear_uint_buffer", "Unsigned integer buffer clear", CLEAR_COLOR_UINT));
111 addChild(createFramebufferClearTest(tc, rc, "clear_depth_buffer", "Depth buffer clear", CLEAR_DEPTH));
112 addChild(createFramebufferClearTest(tc, rc, "clear_stencil_buffer", "Stencil buffer clear", CLEAR_STENCIL))
    [all...]
  /frameworks/base/core/java/com/android/internal/transition/
ActionBarTransition.java 38 final ChangeText tc = new ChangeText(); typedefs
39 tc.setChangeBehavior(ChangeText.CHANGE_BEHAVIOR_OUT_IN);
41 inner.addTransition(tc).addTransition(new ChangeBounds());
  /prebuilts/misc/common/swig/include/2.0.11/pike/
pikerun.swg 48 swig_cast_info *tc;
55 tc = SWIG_TypeCheckStruct(obj_wrapper->type, ty);
56 if (tc) {
58 *ptr = SWIG_TypeCast(tc, obj_wrapper->self, &newmemory);
  /external/valgrind/main/memcheck/tests/
cond_ld_st.c 354 int i, Bool isLd, const TestCase* tc )
357 if (i == 0) { fn(i,isLd,tc); return; };
359 if (i == 1) { fn(i,isLd,tc); return; };
361 if (i == 2) { fn(i,isLd,tc); return; };
363 if (i == 3) { fn(i,isLd,tc); return; };
365 if (i == 4) { fn(i,isLd,tc); return; };
367 if (i == 5) { fn(i,isLd,tc); return; };
369 if (i == 6) { fn(i,isLd,tc); return; };
371 if (i == 7) { fn(i,isLd,tc); return; };
373 if (i == 8) { fn(i,isLd,tc); return; }
    [all...]
  /external/iproute2/tc/
Android.mk 4 LOCAL_SRC_FILES := tc.c tc_qdisc.c q_cbq.c tc_util.c tc_class.c tc_core.c m_action.c \
8 LOCAL_MODULE := tc
  /external/libnl/lib/route/sch/
blackhole.c 19 #include <netlink-tc.h>

Completed in 822 milliseconds

1 2 3 4 5 6 7 8 91011>>