/external/jdiff/src/jdiff/ |
HTMLStatistics.java | 264 List cc = new ArrayList(pkg.classesChanged); local 265 Iterator iter2 = cc.iterator(); 270 allChangedClasses.addAll(cc);
|
/external/libpcap/ |
pcap-bpf.c | 143 int cc; local 166 cc = p->cc; 167 if (p->cc == 0) { 168 cc = read(p->fd, (char *)p->buffer, p->bufsize); 169 if (cc < 0) { 231 ep = bp + cc; 253 p->cc = ep - bp; 305 p->cc = ep - bp; 316 p->cc = 0 [all...] |
pcap-win32.c | 106 int cc; local 110 cc = p->cc; 111 if (p->cc == 0) { 131 cc = p->Packet->ulBytesReceived; 142 ep = bp + cc; 161 p->cc = ep - bp; 178 p->cc = ep - bp; 183 p->cc = 0; 199 int cc; local [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_ratectrl.c | 71 CODING_CONTEXT *const cc = &cpi->coding_context; local 78 vp9_copy(cc->nmvjointcost, cpi->mb.nmvjointcost); 79 vp9_copy(cc->nmvcosts, cpi->mb.nmvcosts); 80 vp9_copy(cc->nmvcosts_hp, cpi->mb.nmvcosts_hp); 82 vp9_copy(cc->segment_pred_probs, cm->seg.pred_probs); 87 vp9_copy(cc->last_ref_lf_deltas, cm->lf.last_ref_deltas); 88 vp9_copy(cc->last_mode_lf_deltas, cm->lf.last_mode_deltas); 90 cc->fc = cm->fc; 94 CODING_CONTEXT *const cc = &cpi->coding_context; local 99 vp9_copy(cpi->mb.nmvjointcost, cc->nmvjointcost) [all...] |
/external/linux-tools-perf/config/ |
utilities.mak | 182 # try-cc 183 # Usage: option = $(call try-cc, source-to-build, cc-options) 184 try-cc = $(shell sh -c \ 187 $(CC) -x c - $(2) -o "$$TMP" > /dev/null 2>&1 && echo y; \
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_state_dump.c | 359 const char *name = "CC VP"; 388 const char *name = "CC"; 402 const char *name = "CC"; 403 struct gen6_color_calc_state *cc = brw->intel.batch.bo->virtual + offset; local 408 cc->cc0.alpha_test_format ? "FLOAT32" : "UNORM8", 409 cc->cc0.round_disable, 410 cc->cc0.stencil_ref, 411 cc->cc0.bf_stencil_ref); 413 batch_out(brw, name, offset, 2, "constant red %f\n", cc->constant_r); 414 batch_out(brw, name, offset, 3, "constant green %f\n", cc->constant_g) [all...] |
/external/mesa3d/src/mesa/tnl_dd/ |
t_dd_tritmp.h | 136 GLfloat cc = ex*fy - ey*fx; local 140 facing = AREA_IS_CCW( cc ) ^ ctx->Polygon._FrontBit; 230 if (cc * cc > 1e-16) { 231 GLfloat ic = 1.0 / cc; 361 GLfloat cc = ex*fy - ey*fx; local 365 facing = AREA_IS_CCW( cc ) ^ ctx->Polygon._FrontBit; 463 if (cc * cc > 1e-16) { 468 GLfloat ic = 1.0 / cc; [all...] |
/external/openssl/crypto/des/ |
des_opts.c | 431 long ca,cb,cc,cd,ce; local 465 cc=count*3*8/BUFSIZE+1;
|
/external/skia/src/core/ |
SkFloat.cpp | 308 int cc = c.getInt(); local 309 SkASSERT(cc == aa + bb); 312 cc = c.getInt(); 313 SkASSERT(cc == aa - bb); 320 cc = c.getInt(); 321 SkASSERT(cc == aa * bb); 326 cc = a.getFixed(); 327 SkASSERT(aa == cc); 331 cc = b.getFixed(); 332 SkASSERT(bb == cc); [all...] |
/external/smack/src/org/jivesoftware/smackx/ |
MultipleRecipientManager.java | 63 * @param cc the list of JIDs to include in the CC list or <tt>null</tt> if no CC 70 public static void send(Connection connection, Packet packet, List<String> to, List<String> cc, List<String> bcc) 72 send(connection, packet, to, cc, bcc, null, null, false); 86 * @param cc the list of JIDs to include in the CC list or <tt>null</tt> if no CC 98 public static void send(Connection connection, Packet packet, List<String> to, List<String> cc, List<String> bcc, 103 sendThroughService(connection, packet, to, cc, bcc, replyTo, replyRoom, noReply 155 List<String> cc = new ArrayList<String>(); local [all...] |
/external/srtp/include/ |
srtp_priv.h | 72 unsigned char cc:4; /* CSRC count */ member in struct:__anon28401 89 unsigned char cc:4; /* CSRC count */ member in struct:__anon28402
|
/external/tcpdump/ |
util.c | 477 register int i, fd, cc; local 492 cc = read(fd, cp, (u_int)buf.st_size); 493 if (cc < 0) 495 if (cc != buf.st_size) 496 error("short read %s (%d != %d)", fname, cc, (int)buf.st_size); 500 for (i = 0; i < cc; i++) { 502 while (i < cc && cp[i] != '\n') 505 cp[cc] = '\0';
|
/external/valgrind/main/coregrind/ |
m_sparsewa.c | 83 HChar* cc; member in struct:_SparseWA 151 LevelN* levelN = swa->alloc_nofail( swa->cc, sizeof(LevelN) ); 160 Level0* level0 = swa->alloc_nofail( swa->cc, sizeof(Level0) ); 234 SparseWA* VG_(newSWA) ( void*(*alloc_nofail)(HChar* cc, SizeT), 235 HChar* cc, 240 vg_assert(cc); 242 swa = alloc_nofail( cc, sizeof(SparseWA) ); 245 swa->cc = cc;
|
m_xarray.c | 42 HChar* cc; /* cost centre for alloc */ member in struct:_XArray 54 HChar* cc, 68 xa = alloc_fn( cc, sizeof(struct _XArray) ); 71 xa->cc = cc; 82 XArray* VG_(cloneXA)( HChar* cc, XArray* xao ) 91 nyu_cc = cc ? cc : xa->cc; 97 nyu->cc = nyu_cc [all...] |
/external/valgrind/main/none/tests/s390x/ |
cu12.c | 18 uint32_t cc; member in struct:__anon30242 79 int cc = 42; local 92 : "+d"(dest), "+d"(source), "=d"(cc), 95 : "memory", "cc"); 102 regs.cc = cc; 141 printf(" cc = %d\n", result.cc); 181 // In case of m3 == 0 we get cc=0 indicating exhaustion of source 250 invalidity of the character (cc=2) takes precedence over exhaustio [all...] |
cu12_1.c | 18 uint32_t cc; member in struct:__anon30243 79 int cc = 42; local 92 : "+d"(dest), "+d"(source), "=d"(cc), 95 : "memory", "cc"); 102 regs.cc = cc; 141 printf(" cc = %d\n", result.cc); 181 // In case of m3 == 0 we get cc=0 indicating exhaustion of source 250 invalidity of the character (cc=2) takes precedence over exhaustio [all...] |
cu14.c | 18 uint32_t cc; member in struct:__anon30244 79 int cc = 42; local 92 : "+d"(dest), "+d"(source), "=d"(cc), 95 : "memory", "cc"); 102 regs.cc = cc; 141 printf(" cc = %d\n", result.cc); 181 // In case of m3 == 0 we get cc=0 indicating exhaustion of source 250 invalidity of the character (cc=2) takes precedence over exhaustio [all...] |
cu14_1.c | 18 uint32_t cc; member in struct:__anon30245 79 int cc = 42; local 92 : "+d"(dest), "+d"(source), "=d"(cc), 95 : "memory", "cc"); 102 regs.cc = cc; 141 printf(" cc = %d\n", result.cc); 181 // In case of m3 == 0 we get cc=0 indicating exhaustion of source 250 invalidity of the character (cc=2) takes precedence over exhaustio [all...] |
/frameworks/av/camera/ |
ProCamera.cpp | 253 sp<CpuConsumer> cc = new CpuConsumer(bq, heapCount/*, synchronousMode*/); local 254 cc->setName(String8("ProCamera::mCpuConsumer")); 272 getStreamInfo(*streamId).cpuConsumer = cc; 278 cc->setFrameAvailableListener(frameAvailableListener); 280 *cpuConsumer = cc;
|
/frameworks/av/media/libstagefright/ |
MetaData.cpp | 349 char cc[5]; local 350 MakeFourCCString(key, cc); 352 ALOGI("%s: %s", cc, item.asString().string());
|
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/ |
BitmapTest.java | 227 int cc = Color.argb(a0, rr, gg, bb); local 230 " local " + Integer.toHexString(cc));
|
/packages/apps/Email/src/com/android/email/mail/transport/ |
SmtpSender.java | 177 Address[] cc = Address.unpack(message.mCc); local 185 for (Address address : cc) {
|
/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);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapbMessageMmsEmail.java | 100 private ArrayList<Rfc822Token> cc = null; // Can be empty field in class:BluetoothMapbMessageMmsEmail 183 return cc; 185 public void setCc(ArrayList<Rfc822Token> cc) { 186 this.cc = cc; 189 if(this.cc == null) 190 this.cc = new ArrayList<Rfc822Token>(1); 191 this.cc.add(new Rfc822Token(name, address, null)); 318 /* For MMS one recipient(to, cc or bcc) must exists, if none: 'To: undisclosed- 322 if(to == null && cc == null && bcc == null [all...] |