HomeSort by relevance Sort by last modified time
    Searched defs:cc (Results 501 - 525 of 1020) sorted by null

<<21222324252627282930>>

  /external/chromium_org/content/renderer/gpu/
compositor_output_surface.h 15 #include "cc/output/begin_frame_args.h"
16 #include "cc/output/output_surface.h"
28 namespace cc { namespace
40 : NON_EXPORTED_BASE(public cc::OutputSurface),
49 cc::SoftwareOutputDevice* software,
53 // cc::OutputSurface implementation.
54 virtual bool BindToClient(cc::OutputSurfaceClient* client) OVERRIDE;
55 virtual void SwapBuffers(cc::CompositorFrame* frame) OVERRIDE;
66 const cc::CompositorFrameAck& ack);
94 void OnBeginFrame(const cc::BeginFrameArgs& args)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_html5fs.cc 142 PP_CompletionCallback cc = local
148 ->Open(filesystem_resource_, expected_size, cc);
  /external/chromium_org/net/third_party/nss/ssl/
sslmutex.c 187 int cc; local
190 cc = write(pMutex->u.pipeStr.mPipes[1], &c, 1);
191 } while (cc < 0 && (errno == EINTR || errno == EAGAIN));
192 if (cc != 1) {
193 if (cc < 0)
218 int cc; local
221 cc = read(pMutex->u.pipeStr.mPipes[0], &c, 1);
222 } while (cc < 0 && errno == EINTR);
223 if (cc != 1) {
224 if (cc < 0
245 int cc; local
273 int cc; local
    [all...]
  /external/chromium_org/ppapi/examples/url_loader/
streaming.cc 10 // The other mode is to stream to a file instead. See stream_to_file.cc
114 pp::CompletionCallback cc = local
118 result = loader_.ReadResponseBody(buf_, kBufSize, cc);
133 cc.Run(result);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/
Makefile 105 define egl-cc
106 $(CC) -c $(common_INCLUDES) $($(1)_INCLUDES) $(DEFINES) $(CFLAGS) $< -o $@
110 $(CC) -c $(EGL_CPPFLAGS) $(DEFINES) $(CFLAGS) $< -o $@
113 $(call egl-cc,x11)
116 $(call egl-cc,wayland)
119 $(call egl-cc,drm)
122 $(call egl-cc,fbdev)
125 $(call egl-cc,null)
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen6_cc.c 56 size, 64, &brw->cc.blend_state_offset);
214 struct gen6_color_calc_state *cc; local
216 cc = brw_state_batch(brw, AUB_TRACE_CC_STATE,
217 sizeof(*cc), 64, &brw->cc.state_offset);
218 memset(cc, 0, sizeof(*cc));
221 cc->cc0.alpha_test_format = BRW_ALPHATEST_FORMAT_UNORM8;
222 UNCLAMPED_FLOAT_TO_UBYTE(cc->cc1.alpha_ref_fi.ui, ctx->Color.AlphaRef);
225 cc->cc0.stencil_ref = ctx->Stencil.Ref[0]
    [all...]
  /external/chromium_org/third_party/re2/re2/
simplify.cc 382 CharClass* cc = re->cc(); local
385 if (cc->empty())
387 if (cc->full())
tostring.cc 6 // Tested by parse_test.cc
256 if (re->cc()->size() == 0) {
263 CharClass* cc = re->cc(); local
264 if (cc->Contains(0xFFFE)) {
265 cc = cc->Negate();
268 for (CharClass::iterator i = cc->begin(); i != cc->end(); ++i)
270 if (cc != re->cc()
    [all...]
  /external/chromium_org/third_party/re2/re2/testing/
charclass_test.cc 86 static void Broke(const char *desc, const CCTest* t, CharClass* cc) {
104 for (typename CharClass::iterator it = cc->begin(); it != cc->end(); ++it)
118 CharClass* Negate(CharClass *cc) {
119 return cc->Negate();
122 void Delete(CharClass* cc) {
123 cc->Delete();
126 CharClassBuilder* Negate(CharClassBuilder* cc) {
127 CharClassBuilder* ncc = cc->Copy();
132 void Delete(CharClassBuilder* cc) {
206 CharClass* cc = ccb.GetCharClass(); local
    [all...]
  /external/clang/test/CodeGen/
le32-arguments.c 17 int cc; member in struct:__anon18302
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
BlockCipherFactory.java 78 Class cc = Class.forName(ce.cipherClass); local
79 BlockCipher bc = (BlockCipher) cc.newInstance();
  /external/javassist/src/main/javassist/tools/reflect/
Compiler.java 147 CompiledClass cc = new CompiledClass(); local
148 cc.classname = a;
149 cc.metaobject = null;
150 cc.classobject = null;
151 result[++n] = cc;
  /external/libpcap/
pcap-enet.c 61 register int cc, caplen; local
70 if ((cc = read(if_fd, (char *)buf.p, sizeof(buf))) < 0)
78 while (cc > 0) {
91 cc -= inc;
95 caplen = cc > snaplen ? snaplen : cc ;
96 if (bpf_filter(fcode, buf.hdr.packet, cc, caplen)) {
99 (*printit)(buf.hdr.packet, &tv, cc, caplen);
pcap-nit.c 101 register int cc, n; local
107 cc = p->cc;
108 if (cc == 0) {
109 cc = read(p->fd, (char *)p->buffer, p->bufsize);
110 if (cc < 0) {
127 ep = bp + cc;
143 p->cc = ep - bp;
185 p->cc = ep - bp;
191 p->cc = 0
    [all...]
pcap-snoop.c 64 int cc; local
83 cc = read(p->fd, (char *)p->buffer, p->bufsize);
84 if (cc < 0) {
106 if (cc == (p->snapshot + sizeof(struct snoopheader)) &&
  /external/mesa3d/src/gallium/state_trackers/egl/
Makefile 105 define egl-cc
106 $(CC) -c $(common_INCLUDES) $($(1)_INCLUDES) $(DEFINES) $(CFLAGS) $< -o $@
110 $(CC) -c $(EGL_CPPFLAGS) $(DEFINES) $(CFLAGS) $< -o $@
113 $(call egl-cc,x11)
116 $(call egl-cc,wayland)
119 $(call egl-cc,drm)
122 $(call egl-cc,fbdev)
125 $(call egl-cc,null)
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_cc.c 56 size, 64, &brw->cc.blend_state_offset);
214 struct gen6_color_calc_state *cc; local
216 cc = brw_state_batch(brw, AUB_TRACE_CC_STATE,
217 sizeof(*cc), 64, &brw->cc.state_offset);
218 memset(cc, 0, sizeof(*cc));
221 cc->cc0.alpha_test_format = BRW_ALPHATEST_FORMAT_UNORM8;
222 UNCLAMPED_FLOAT_TO_UBYTE(cc->cc1.alpha_ref_fi.ui, ctx->Color.AlphaRef);
225 cc->cc0.stencil_ref = ctx->Stencil.Ref[0]
    [all...]
  /external/regex-re2/re2/
simplify.cc 382 CharClass* cc = re->cc(); local
385 if (cc->empty())
387 if (cc->full())
tostring.cc 6 // Tested by parse_test.cc
256 if (re->cc()->size() == 0) {
263 CharClass* cc = re->cc(); local
264 if (cc->Contains(0xFFFE)) {
265 cc = cc->Negate();
268 for (CharClass::iterator i = cc->begin(); i != cc->end(); ++i)
270 if (cc != re->cc()
    [all...]
  /external/regex-re2/re2/testing/
charclass_test.cc 86 static void Broke(const char *desc, const CCTest* t, CharClass* cc) {
104 for (typename CharClass::iterator it = cc->begin(); it != cc->end(); ++it)
118 CharClass* Negate(CharClass *cc) {
119 return cc->Negate();
122 void Delete(CharClass* cc) {
123 cc->Delete();
126 CharClassBuilder* Negate(CharClassBuilder* cc) {
127 CharClassBuilder* ncc = cc->Copy();
132 void Delete(CharClassBuilder* cc) {
206 CharClass* cc = ccb.GetCharClass(); local
    [all...]
  /external/valgrind/main/coregrind/
m_poolalloc.c 40 HChar* cc; /* pool allocator's cc */ member in struct:_PoolAlloc
54 HChar* cc,
62 vg_assert(cc);
64 pa = alloc(cc, sizeof(*pa));
72 pa->cc = cc;
74 pa->pools = VG_(newXA)( alloc, cc, free_fn, sizeof(void*) );
99 pool = pa->alloc( pa->cc, pa->elemSzB * pa->nPerPool );
  /external/valgrind/main/helgrind/tests/
annotate_hbefore.c 36 : /*trash*/ "memory","cc"
69 : /*trash*/ "memory","cc"
106 : /*trash*/"memory","cc","rdi","rax","rbx","rcx"
131 : /*trash*/"memory","cc","edi","eax","ecx"
176 int cc; local
182 : /* out */ "=r" (cc)
184 : "memory", "cc"
186 return cc == 0;
  /external/valgrind/main/none/tests/s390x/
cksm.c 13 char cc; member in struct:__anon30239
24 char cc; local
30 " xr 4,4\n\t" /* set cc to != 0 */
33 : "+d" (sum), "+d" (reg2), "+d" (reg3) : : "cc", "memory");
35 cc = get_cc();
46 if (cc != 0)
51 result.cc = cc;
112 result.cc = 0;
143 if (by_hand.cc != by_insn.cc)
    [all...]
clcl.c 15 uint32_t cc; member in struct:__anon30240
24 uint64_t cc; member in struct:__anon30241
37 register uint32_t cc asm ("7");
43 :"=d" (cc), "+d" (a1),"+d" (l1), "+d" (a2), "+d" (l2)
44 : : "memory", "cc");
50 regs.cc = cc;
65 result.cc = regs.cc;
134 if (result1.cc != result2.cc
    [all...]
cu21.c 18 uint32_t cc; member in struct:__anon30246
70 int cc = 42; local
83 : "+d"(dest), "+d"(source), "=d"(cc),
86 : "memory", "cc");
93 regs.cc = cc;
116 printf(" cc = %d\n", result.cc);
193 /* When both operands are exhausted, cc=0 takes precedence.

Completed in 1462 milliseconds

<<21222324252627282930>>