HomeSort by relevance Sort by last modified time
    Searched defs:cc (Results 151 - 175 of 327) sorted by null

1 2 3 4 5 67 8 91011>>

  /sdk/emulator/opengl/host/libs/Translator/GLES_V2/
ShaderParser.cpp 144 char *cc = (char *)c; local
145 for (int i=0; i<8; i++,cc++) *cc = ' ';
146 while (*cc < '0' || *cc > '9') { *cc = ' '; cc++; }
147 while (*cc >= '0' && *cc <= '9') { *cc = ' '; cc++;
    [all...]
  /system/core/cpio/
mkbootfs.c 299 struct fs_config_entry* cc = canned_config + used; local
302 cc->name = strdup("");
303 cc->uid = atoi(strtok(line, " \n"));
305 cc->name = strdup(strtok(line, " \n"));
306 cc->uid = atoi(strtok(NULL, " \n"));
308 cc->gid = atoi(strtok(NULL, " \n"));
309 cc->mode = strtol(strtok(NULL, " \n"), NULL, 8);
  /dalvik/vm/
Misc.cpp 36 01234567: 00 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff 0123456789abcdef\n
684 int cc = read(fd, lineBuf, sizeof(lineBuf)-1); local
685 if (cc <= 0) {
686 const char* msg = (cc == 0) ? "unexpected EOF" : strerror(errno);
692 lineBuf[cc] = '\0';
Thread.cpp 452 int cc; local
455 cc = dvmTryLockMutex(&gDvm._threadSuspendLock);
456 if (cc != 0) {
499 } while (cc != 0);
500 assert(cc == 0);
1016 int cc; local
1076 int cc = pthread_setspecific(gDvm.pthreadKeySelf, self); local
1304 int cc = pthread_create(&threadHandle, &threadAttr, interpThreadStart, newThread); local
1660 int cc = pthread_create(pHandle, &threadAttr, internalThreadStart, pArgs); local
    [all...]
Init.cpp 1331 int cc; local
1395 int cc = processOptions(argc, argv, ignoreUnrecognized); local
    [all...]
  /dalvik/vm/jdwp/
JdwpAdb.cpp 463 ssize_t cc = netState->writePacket(pReply); local
465 if (cc != (ssize_t) expandBufGetLength(pReply)) {
622 int cc; local
632 cc = TEMP_FAILURE_RETRY(write(netState->clientSock, netState->inputBuffer,
634 if (cc != kMagicHandshakeLen) {
636 strerror(errno), cc, (int) kMagicHandshakeLen);
676 ssize_t cc = netState->writePacket(pReq); local
678 if (cc != (ssize_t) expandBufGetLength(pReq)) {
680 strerror(errno), (int) cc, (int) expandBufGetLength(pReq));
JdwpSocket.cpp 328 int cc, on = 1; local
330 cc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
331 assert(cc == 0);
332 return cc;
414 int cc = gethostbyname_r(state->params.host, &he, auxBuf, sizeof(auxBuf), local
416 if (cc != 0) {
621 ssize_t cc = netState->writePacket(pReply); local
623 if (cc != (ssize_t) expandBufGetLength(pReply)) {
782 int cc; local
792 cc = TEMP_FAILURE_RETRY(write(netState->clientSock, netState->inputBuffer
836 ssize_t cc = netState->writePacket(pReq); local
    [all...]
  /external/ceres-solver/include/ceres/
rotation.h 398 T cc = c * c; local
402 R[0] = aa + bb - cc - dd; R[1] = T(2) * (bc - ad); R[2] = T(2) * (ac + bd); // NOLINT
403 R[3] = T(2) * (ad + bc); R[4] = aa - bb + cc - dd; R[5] = T(2) * (cd - ab); // NOLINT
404 R[6] = T(2) * (bd - ac); R[7] = T(2) * (ab + cd); R[8] = aa - bb - cc + dd; // NOLINT
  /external/clang/test/CXX/special/class.copy/
implicit-move.cpp 144 ContainsConst cc; local
145 cc = ContainsConst(); // expected-error {{no viable}}
  /external/clang/test/SemaCXX/
cstyle-cast.cpp 14 typedef const char cc; typedef
15 typedef cc *ccp;
  /external/iproute2/lib/
utils.c 708 ssize_t cc; local
711 if ((cc = getline(linep, lenp, in)) < 0)
712 return cc; /* eof or error */
743 cc += cc1 - 2;
747 return cc;
  /external/javassist/src/main/javassist/compiler/
MemberResolver.java 283 CtClass cc = null; local
285 cc = lookupClass(jvmToJavaName(jvmClassName), true);
293 return cc.getField(field);
297 jvmClassName = javaToJvmName(cc.getName());
317 CtClass cc = lookupClass(className, false); local
319 return cc.getField(fieldName.get());
425 CtClass cc = classPool.get(fqName); local
428 return cc;
434 CtClass cc = classPool.get(pac); local
437 return cc;
453 CtClass cc = null; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 226 CODING_CONTEXT *const cc = & cpi->coding_context; local
234 cc->frames_since_key = cpi->frames_since_key;
235 cc->filter_level = cpi->common.filter_level;
236 cc->frames_till_gf_update_due = cpi->frames_till_gf_update_due;
237 cc->frames_since_golden = cpi->common.frames_since_golden;
239 vp8_copy(cc->mvc, cpi->common.fc.mvc);
240 vp8_copy(cc->mvcosts, cpi->rd_costs.mvcosts);
242 vp8_copy(cc->ymode_prob, cpi->common.fc.ymode_prob);
243 vp8_copy(cc->uv_mode_prob, cpi->common.fc.uv_mode_prob);
245 vp8_copy(cc->ymode_count, cpi->mb.ymode_count)
265 CODING_CONTEXT *const cc = & cpi->coding_context; local
    [all...]
  /external/mksh/src/
shf.c 582 unsigned char cc = (unsigned char)c; local
591 while ((n = write(shf->fd, &cc, 1)) != 1)
  /external/openfst/src/include/fst/script/
info-impl.h 19 // Class to compute various information about FSTs, helper class for fstinfo.cc
40 // Compute various information about FSTs, helper class for fstinfo.cc.
112 vector<StateId> cc; local
113 CcVisitor<Arc> cc_visitor(&cc);
128 for (StateId s = 0; s < cc.size(); ++s) {
129 if (cc[s] >= ncc_)
130 ncc_ = cc[s] + 1;
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_surface.c 691 Uint32 cc = (Uint32)c << 16 | c; local
698 SDL_memset4(pixels, cc, n >> 1);
  /external/qemu/distrib/zlib-1.2.3/
gzio.c 682 unsigned char cc = (unsigned char) c; /* required for big endian systems */ local
684 return gzwrite(file, &cc, 1) == 1 ? (int)cc : -1;
  /external/v8/src/mips/
disasm-mips.cc 240 // Print the integer value of the cc field for the bc1t/f instructions.
242 int cc = instr->FBccValue(); local
243 out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_, "%d", cc);
247 // Print the integer value of the cc field for the FP compare instructions.
249 int cc = instr->FCccValue(); local
250 out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_, "cc(%d)", cc);
422 case 'b': { // 'bc - Special for bc1 cc field.
427 case 'C': { // 'Cc - Special for c.xx.d cc field
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_cryptoapi.c 662 PCCERT_CONTEXT cc; local
668 cc = CertCreateCertificateContext(X509_ASN_ENCODING |
670 if (!cc) {
680 CertFreeCertificateContext(cc);
686 &cc->pCertInfo->SubjectPublicKeyInfo,
691 CertFreeCertificateContext(cc);
695 CertFreeCertificateContext(cc);
  /frameworks/native/libs/utils/
ZipFileRO.cpp 901 int cc = TEMP_FAILURE_RETRY(write(fd, writeBuf, writeSize)); local
902 if (cc < 0) {
905 } else if (cc != (int) writeSize) {
906 ALOGW("write failed in inflate (%d vs %ld)", cc, writeSize);
  /packages/apps/Browser/src/com/android/browser/
DataController.java 88 CallbackContainer cc = (CallbackContainer) msg.obj;
91 OnQueryUrlIsBookmark cb = (OnQueryUrlIsBookmark) cc.replyTo;
92 String url = (String) cc.args[0];
93 boolean isBookmark = (Boolean) cc.args[1];
288 CallbackContainer cc = new CallbackContainer(); local
289 cc.replyTo = replyTo;
290 cc.args = new Object[] { url, isBookmark };
291 mCbHandler.obtainMessage(QUERY_URL_IS_BOOKMARK, cc).sendToTarget();
  /dalvik/tools/hprof-conv/
HprofConv.c 678 int cc; local
717 cc = filterData(in, out);
723 return (cc != 0);
  /dalvik/vm/analysis/
DexPrepare.cpp 132 int fd, cc; local
169 cc = flock(fd, LOCK_EX | LOCK_NB);
170 if (cc != 0) {
172 cc = flock(fd, LOCK_EX);
175 if (cc != 0) {
176 ALOGE("Can't lock dex cache '%s': %d", cacheFileName, cc);
189 cc = fstat(fd, &fdStat);
190 if (cc != 0) {
195 cc = stat(cacheFileName, &fileStat);
196 if (cc != 0 |
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KeyStore_Impl1Test.java 483 Certificate[] cc; local
503 cc = ((KeyStore.PrivateKeyEntry) en).getCertificateChain();
504 assertEquals("Incorrect CertificateChain", cc.length,
506 for (int t = 0; t < cc.length; t++) {
507 assertEquals("Incorrect CertificateChain", cc[t], certs[t]);
520 cc = kss[i].getCertificateChain(aliases[j]);
521 assertEquals("Incorrect CertificateChain", cc.length,
523 for (int t = 0; t < cc.length; t++) {
524 assertEquals("Incorrect CertificateChain", cc[t], certs[t]);
803 Certificate [] cc = kss[i].getCertificateChain(aliases[j]); local
    [all...]
  /external/bluetooth/bluedroid/stack/smp/
aes.c 500 uint_8t cc, rc, hi; local
523 for( cc = keylen, rc = 1; cc < hi; cc += 4 )
526 t0 = ctx->ksch[cc - 4];
527 t1 = ctx->ksch[cc - 3];
528 t2 = ctx->ksch[cc - 2];
529 t3 = ctx->ksch[cc - 1];
530 if( cc % keylen == 0 )
539 else if( keylen > 24 && cc % keylen == 16
665 { uint_8t cc; local
719 { uint_8t cc; local
772 { uint_8t cc; local
852 { uint_8t cc; local
    [all...]

Completed in 1026 milliseconds

1 2 3 4 5 67 8 91011>>