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

1 2 3 4 5 6 7 8 910

  /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...]
  /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;
  /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...]
  /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>
  /external/chromium_org/tools/gn/
label_pattern.h 54 void set_toolchain(const Label& tc) { toolchain_ = tc; }
  /external/iproute2/netem/
Makefile 23 mkdir -p $(DESTDIR)$(LIBDIR)/tc
25 do install -m 644 $$i $(DESTDIR)$(LIBDIR)/tc; \
  /external/libnl/lib/route/cls/
police.c 13 #include <netlink-tc.h>
16 #include <netlink/route/tc.h>
  /external/iproute2/examples/
SYN-DoS.rate.limit 13 TC=$IPROUTE/tc/tc
25 $TC qdisc add dev $INDEV handle ffff: ingress
35 $TC filter add dev $INDEV parent ffff: protocol ip prio 50 handle 1 fw \
42 $TC qdisc ls dev $INDEV
44 $TC class ls dev $INDEV
46 $TC filter ls dev $INDEV parent ffff:
49 #$TC qdisc del $INDEV ingress
  /external/libnl/include/netlink/route/
pktloc.h 17 #include <netlink/route/tc.h>
  /external/libnl/include/netlink/route/sch/
tbf.h 16 #include <netlink/route/tc.h>
  /external/clang/test/SemaCXX/
member-init.cpp 40 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

Completed in 790 milliseconds

1 2 3 4 5 6 7 8 910