HomeSort by relevance Sort by last modified time
    Searched defs:cc (Results 51 - 75 of 215) sorted by null

1 23 4 5 6 7 8 9

  /external/openssl/crypto/rc4/
rc4speed.c 185 long ca,cb,cc; local
208 cc=count*8/BUFSIZE+1;
236 printf("Doing RC4 %ld times on %ld byte blocks\n",cc,BUFSIZE);
239 for (count=0,run=1; COND(cc); count++)
244 c=((double)COUNT(cc)*BUFSIZE)/d;
  /external/pcre/
pcre_study.c 85 register uschar *cc = (uschar *)code + 1 + LINK_SIZE; local
87 if (*code == OP_CBRA || *code == OP_SCBRA) cc += 2;
96 register int op = *cc;
107 cs = cc + GET(cc, 1);
110 cc = cs + 1 + LINK_SIZE;
122 d = find_minlength(cc, startcode, options);
125 do cc += GET(cc, 1); while (*cc == OP_ALT)
    [all...]
  /external/ppp/pppd/include/
pcap-int.h 84 int cc; member in struct:pcap
  /external/ppp/pppd/plugins/pppoatm/
ans.c 201 int cc; local
215 if (sscanf(buffer,"%d",&cc) == 1) {
216 if (cc < 10) cc_table[cc] = 1;
217 else if (cc < 100) cc_table[cc] = 2;
218 else cc_table[cc/10] = 3;
  /external/qemu/
qemu-timer.h 235 asm volatile("stck 0(%1)" : "=m" (val) : "a" (&val) : "cc");
295 uint64_t cc; local
298 asm volatile("rpcc %0" : "=r"(cc));
299 cur = cc;
300 ofs = cc >> 32;
  /external/skia/src/images/
SkScaledBitmapSampler.cpp 214 SkPMColor cc = A32_MASK_IN_PLACE; local
217 cc &= c;
221 return cc != A32_MASK_IN_PLACE;
257 SkPMColor cc = A32_MASK_IN_PLACE; local
260 cc &= c;
264 return cc != A32_MASK_IN_PLACE;
272 SkPMColor cc = A32_MASK_IN_PLACE; local
277 cc &= c;
281 return cc != A32_MASK_IN_PLACE;
  /external/v8/src/
regexp-macro-assembler.h 37 RegExpCharacterClass cc; member in struct:v8::internal::DisjunctDecisionRow
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
options.py 35 cc = make_option("--cc", action="store", type="string", dest="cc", help="Comma-separated list of email addresses to carbon-copy.") variable in class:Options
57 suggest_reviewers = make_option("--suggest-reviewers", action="store_true", default=False, help="Offer to CC appropriate reviewers.")
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
dct_inline.h 274 register int32 cc = (int32)op3; local
280 "r"(cc));
290 register int32 cc = (int32)round; local
296 "r"(cc));
306 register int32 cc = (int32)k1; local
312 "r"(cc));
322 register int32 cc = (int32)k1; local
328 "r"(cc));
337 register int32 cc = (int32)k1; local
343 "r"(cc));
354 register int32 cc = (int32)k2; local
    [all...]
fastquant_inline.h 453 register int32 cc = coeff; local
462 : "r"(cc),
515 register int32 cc = (int32)round; local
521 "r"(cc));
541 register int32 cc = coeff; local
548 : "r"(cc),
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactorySpiTest.java 78 Certificate cc = certFactorySpi.engineGenerateCertificate(bais); local
79 assertNull("Not null Cerificate", cc);
  /external/javassist/src/main/javassist/
CtBehavior.java 394 CtClass cc = declaringClass; local
395 cc.checkModify();
397 Javac jv = new Javac(cc);
405 methodInfo.rebuildStackMapIf6(cc.getClassPool(), cc.getClassFile2());
497 CtClass cc = declaringClass; local
498 cc.checkModify();
499 ClassPool pool = cc.getClassPool();
505 cc.getDeclaredField(fname);
515 CtField field = new CtField(type, fname, cc);
691 CtClass cc = declaringClass; local
761 CtClass cc = declaringClass; local
1006 CtClass cc = declaringClass; local
    [all...]
  /bionic/libm/src/
e_j0.c 88 double z, s,c,ss,cc,r,u,v; local
99 cc = s+c;
102 if ((s*c)<zero) cc = z/ss;
103 else ss = z/cc;
106 * j0(x) = 1/sqrt(pi) * (P(0,x)*cc - Q(0,x)*ss) / sqrt(x)
107 * y0(x) = 1/sqrt(pi) * (P(0,x)*ss + Q(0,x)*cc) / sqrt(x)
109 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(x);
112 z = invsqrtpi*(u*cc-v*ss)/sqrt(x);
149 double z, s,c,ss,cc,u,v; local
173 cc = s+c
    [all...]
e_j0f.c 46 float z, s,c,ss,cc,r,u,v; local
57 cc = s+c;
60 if ((s*c)<zero) cc = z/ss;
61 else ss = z/cc;
64 * j0(x) = 1/sqrt(pi) * (P(0,x)*cc - Q(0,x)*ss) / sqrt(x)
65 * y0(x) = 1/sqrt(pi) * (P(0,x)*ss + Q(0,x)*cc) / sqrt(x)
67 if(((uint32_t)hx)>0x80000000) z = (invsqrtpi*cc)/sqrtf(x);
70 z = invsqrtpi*(u*cc-v*ss)/sqrtf(x);
107 float z, s,c,ss,cc,u,v; local
131 cc = s+c
    [all...]
e_j1.c 89 double z, s,c,ss,cc,r,u,v,y; local
100 cc = s-c;
103 if ((s*c)>zero) cc = z/ss;
104 else ss = z/cc;
107 * j1(x) = 1/sqrt(pi) * (P(1,x)*cc - Q(1,x)*ss) / sqrt(x)
108 * y1(x) = 1/sqrt(pi) * (P(1,x)*ss + Q(1,x)*cc) / sqrt(x)
110 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(y);
113 z = invsqrtpi*(u*cc-v*ss)/sqrt(y);
146 double z, s,c,ss,cc,u,v; local
159 cc = s-c
    [all...]
e_j1f.c 47 float z, s,c,ss,cc,r,u,v,y; local
58 cc = s-c;
61 if ((s*c)>zero) cc = z/ss;
62 else ss = z/cc;
65 * j1(x) = 1/sqrt(pi) * (P(1,x)*cc - Q(1,x)*ss) / sqrt(x)
66 * y1(x) = 1/sqrt(pi) * (P(1,x)*ss + Q(1,x)*cc) / sqrt(x)
68 if(((uint32_t)hx)>0x80000000) z = (invsqrtpi*cc)/sqrtf(y);
71 z = invsqrtpi*(u*cc-v*ss)/sqrtf(y);
104 float z, s,c,ss,cc,u,v; local
117 cc = s-c
    [all...]
  /build/libs/host/
CopyFile.c 92 /* its winsup/cygwin/fhandler_disk_file.cc to emulate this, too complex for us) */
436 int cc, statResult; local
459 cc = mkdir(dst, 0755);
460 if (cc != 0) {
  /dalvik/vm/
LinearAlloc.cpp 348 int cc, start, len; local
355 cc = mprotect(pHdr->mapAddr + start, len, PROT_READ | PROT_WRITE);
356 if (cc != 0) {
469 int i, cc; local
496 cc = mprotect(pHdr->mapAddr + SYSTEM_PAGE_SIZE * i,
498 assert(cc == 0);
510 cc = mprotect(pHdr->mapAddr + SYSTEM_PAGE_SIZE * i,
512 assert(cc == 0);
  /dalvik/vm/compiler/
Compiler.cpp 93 int cc; local
139 cc = pthread_cond_signal(&gDvmJit.compilerQueueActivity);
140 assert(cc == 0);
641 int cc; local
642 cc = pthread_cond_signal(&gDvmJit.compilerQueueEmpty);
643 assert(cc == 0);
  /development/tools/emulator/opengl/host/libs/Translator/GLES_V2/
ShaderParser.cpp 128 char *cc = (char *)c; local
129 for (int i=0; i<8; i++,cc++) *cc = ' ';
130 while (*cc < '0' || *cc > '9') { *cc = ' '; cc++; }
131 while (*cc >= '0' && *cc <= '9') { *cc = ' '; cc++;
    [all...]
  /development/tools/jdwpspy/
Net.cpp 352 int cc, on = 1; local
354 cc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
355 assert(cc == 0);
356 return cc;
527 int cc; local
536 cc = write(pDst->sock, buf, length);
537 if (cc != (int) length) {
542 cc, pSrc->label[0], pDst->label[0]);*/
588 int cc; local
605 cc = select(highFd, &readfds, NULL, NULL, NULL)
    [all...]
  /external/bluetooth/glib/glib/
gunidecomp.c 397 int cc; local
422 cc = COMBINING_CLASS (wc_buffer[old_n_wc]);
424 if (cc == 0)
452 int cc = COMBINING_CLASS (wc_buffer[i]); local
455 (last_cc == 0 || last_cc < cc) &&
472 if (cc == 0)
475 last_cc = cc;
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store.cc 87 void AddCookie(const net::CookieMonster::CanonicalCookie& cc);
90 void UpdateCookieAccessTime(const net::CookieMonster::CanonicalCookie& cc);
93 void DeleteCookie(const net::CookieMonster::CanonicalCookie& cc);
130 const net::CookieMonster::CanonicalCookie& cc)
131 : op_(op), cc_(cc) { }
134 const net::CookieMonster::CanonicalCookie& cc() const { return cc_; } function in class:SQLitePersistentCookieStore::Backend::PendingOperation
144 const net::CookieMonster::CanonicalCookie& cc);
271 scoped_ptr<net::CookieMonster::CanonicalCookie> cc(
290 cc->CreationDate() > Time::Now()) << L"CreationDate too recent";
291 cookies->push_back(cc.release())
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_custom_menu_item.cc 24 register GCClosure *cc = (GCClosure*)closure; local
49 cc->callback);
  /external/clang/test/CXX/special/class.copy/
implicit-move.cpp 144 ContainsConst cc; local
145 cc = ContainsConst(); // expected-error {{no viable}}

Completed in 4122 milliseconds

1 23 4 5 6 7 8 9