HomeSort by relevance Sort by last modified time
    Searched defs:cc (Results 476 - 500 of 1211) sorted by null

<<11121314151617181920>>

  /external/chromium_org/content/browser/android/
overscroll_glow.h 17 namespace cc { namespace
49 bool OnOverscrolled(cc::Layer* overscrolling_layer,
78 void UpdateLayerAttachment(cc::Layer* parent);
96 scoped_refptr<cc::Layer> root_layer_;
  /external/chromium_org/content/browser/compositor/
gpu_process_transport_factory.h 22 namespace cc { namespace
46 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(
54 virtual scoped_refptr<cc::ContextProvider>
57 virtual cc::SharedBitmapManager* GetSharedBitmapManager() OVERRIDE;
88 scoped_ptr<cc::SurfaceManager> surface_manager_;
  /external/chromium_org/content/browser/devtools/
render_view_devtools_agent_host.h 19 namespace cc { namespace
50 const cc::CompositorFrameMetadata& frame_metadata);
  /external/chromium_org/content/public/browser/android/
synchronous_compositor.h 16 namespace cc { namespace
90 virtual scoped_ptr<cc::CompositorFrame> DemandDrawHw(
100 virtual void ReturnResources(const cc::CompositorFrameAck& frame_ack) = 0;
  /external/chromium_org/content/renderer/compositor_bindings/
web_content_layer_impl.h 9 #include "cc/layers/content_layer_client.h"
14 namespace cc { namespace
26 public cc::ContentLayerClient {
web_layer_impl.h 12 #include "cc/layers/layer_client.h"
26 namespace cc { namespace
46 class WebLayerImpl : public blink::WebLayer, public cc::LayerClient {
50 scoped_refptr<cc::Layer>);
57 CONTENT_EXPORT cc::Layer* layer() const;
149 scoped_refptr<cc::Layer> layer_;
  /external/chromium_org/content/renderer/gpu/
mailbox_output_surface.h 10 #include "cc/resources/resource_format.h"
11 #include "cc/resources/transferable_resource.h"
15 namespace cc { namespace
31 scoped_ptr<cc::SoftwareOutputDevice> software_device,
32 cc::ResourceFormat format);
35 // cc::OutputSurface implementation.
40 virtual void SwapBuffers(cc::CompositorFrame* frame) OVERRIDE;
45 const cc::CompositorFrameAck& ack) OVERRIDE;
69 cc::ResourceFormat format_;
  /external/chromium_org/content/renderer/pepper/
pepper_compositor_host.h 19 namespace cc { namespace
21 } // namespace cc
39 const scoped_refptr<cc::Layer> layer() { return layer_; };
55 void UpdateLayer(const scoped_refptr<cc::Layer>& layer,
78 // The toplevel cc::Layer. It is the parent of other cc::Layers.
79 scoped_refptr<cc::Layer> layer_;
84 LayerData(const scoped_refptr<cc::Layer>& cc,
88 scoped_refptr<cc::Layer> cc_layer
    [all...]
  /external/chromium_org/ppapi/c/
pp_completion_callback.h 172 * struct PP_CompletionCallback cc = PP_MakeCompletionCallback(Foo, NULL);
178 * struct PP_CompletionCallback cc = PP_MakeCompletionCallback(Foo, NULL);
179 * cc.flags = cc.flags | PP_COMPLETIONCALLBACK_FLAG_OPTIONAL;
193 struct PP_CompletionCallback cc; local
194 cc.func = func;
195 cc.user_data = user_data;
196 cc.flags = PP_COMPLETIONCALLBACK_FLAG_NONE;
197 return cc;
214 struct PP_CompletionCallback cc = PP_MakeCompletionCallback(func, user_data) local
    [all...]
  /external/chromium_org/ppapi/shared_impl/
ppb_video_decoder_shared.cc 93 scoped_refptr<TrackedCallback> cc = it->second; local
95 cc->Run(PP_OK);
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
cfb64ede.c 76 unsigned char *iv,c,cc; local
125 cc= *(in++);
127 iv[n]=cc;
128 *(out++)=c^cc;
132 v0=v1=ti[0]=ti[1]=c=cc=0;
  /external/openssl/crypto/des/
cfb64ede.c 76 unsigned char *iv,c,cc; local
125 cc= *(in++);
127 iv[n]=cc;
128 *(out++)=c^cc;
132 v0=v1=ti[0]=ti[1]=c=cc=0;
  /external/srec/srec/cfront/
log_tabl.c 122 int ii, aa, bb, cc, value, shift; local
138 cc = value >> 2;
139 value = aa + bb + cc;
147 bb += cc;
149 cc >>= 2;
150 value = aa + bb + cc;
  /external/valgrind/main/memcheck/tests/s390x/
cds.c 12 int cc; // unused local
23 : "=d" (cc), "+QS" (op1), "+QS" (op2), "+QS" (op3)
25 : "r0", "r1", "r2", "r3", "cc");
cdsg.c 16 int cc; // unused local
27 : "=d"(cc), "+QS" (_op1), "+QS" (_op2), "+QS" (_op3)
29 : "r0", "r1", "r2", "r3", "cc");
  /external/valgrind/main/none/tests/amd64/
smc1.c 89 void cc ( int x ) { dd(x, (void(*)(int)) &code[0]); } function
92 void bb ( int x ) { cc(x); }
  /external/valgrind/main/none/tests/s390x/
cds.c 13 int cc = 1 - expected_cc; local
35 : "=d" (cc), "+QS" (op1), "+QS" (op2), "+QS" (op3)
37 : "r0", "r1", "r2", "r3", "cc");
42 printf("cc = %d\n", cc);
45 if (cc != expected_cc) {
cdsg.c 18 int cc = 1 - expected_cc; local
40 : "=d" (cc), "+QS" (_op1), "+QS" (_op2), "+QS" (_op3)
42 : "r0", "r1", "r2", "r3", "cc");
47 printf("cc = %d\n", cc);
49 if (cc != expected_cc) {
clc.c 13 int cc; local
21 :"=d" (cc)
22 :"a" (a1), "a" (a2), "d" (l): "1", "cc");
23 return cc;
29 int cc; local
31 cc = clc(a1, a2, l);
32 printf("%d bytes:%d\n",l, cc);
clcle.c 17 register unsigned long cc asm ("7");
23 :"=d" (cc), "+d" (a1),"+d" (l1), "+d" (a3), "+d" (l3)
25 : "memory", "cc");
31 return cc;
38 int cc; local
41 cc = clcle(&a1, &l1, &a3, &l3, pad);
42 printf("cc: %d, l1: %lu(%lu) l3: %lu(%lu) diff1: %lu diff3: %lu\n",
43 cc, l1, _l1, l3, _l3, a1-(unsigned long) _a1, a3-(unsigned long) _a3);
flogr.c 18 unsigned int *cc)
30 : "2", "3", "cc");
32 *cc = psw >> 28;
34 printf("value = %lx, bitpos = %lu, modval = %lx, cc = %d\n",
35 value, *bitpos, *modval, *cc);
42 unsigned int *cc)
54 : "3", "cc");
56 *cc = psw >> 28;
58 printf("value = %lx, bitpos = %lu, modval = %lx, cc = %d\n",
59 value, *bitpos, *modval, *cc);
92 unsigned int cc; local
    [all...]
icm.c 8 : "1", "memory", "cc"); \
16 : "1", "memory", "cc"); \
30 int cc; local
36 icm(&a[0+offset], 0, what); cc = get_cc(); \
37 icm(&a[1+offset+cc], 1, what); cc = get_cc(); \
38 icm(&a[2+offset+cc], 2, what); cc = get_cc(); \
39 icm(&a[3+offset+cc], 3, what); cc = get_cc();
    [all...]
stcke.c 18 int cc; local
22 :"+Q" (*addr), "=d"(cc)::"cc");
24 return cc;
35 int cc; local
37 cc = stcke(start.buffer);
38 if (cc)
39 printf("cc != 0!\n");
42 cc = stcke(end.buffer);
43 if (cc)
    [all...]
tre.c 14 uint64_t cc; member in struct:__anon36933
21 int cc; local
33 :"=d"(cc),"+&d"(a1)
40 regs.cc = cc;
59 printf("Resulting cc is %"PRIu64" and the string is ", regs.cc);
77 run_test((char *)&touppercase, &buff, 1, 'a'); //cc = 1
81 run_test((char *)&touppercase, &buff, 3, 'a'); //cc = 1
82 run_test((char *)&touppercase, &buff, 3, 'f'); //cc =
    [all...]
troo.c 13 uint64_t cc; member in struct:__anon36934
35 register uint64_t cc asm("5");
37 cc = 2; /* cc result will never be 2 */
42 : "=d"(cc),"+&d"(desaddr)
51 regs.cc = cc;
74 if (regs.cc == 0 && regs.len != 0)
75 printf("length is not zero but cc is zero\n");
83 return regs.cc;
88 int cc; local
    [all...]

Completed in 710 milliseconds

<<11121314151617181920>>