Searched defs:cc (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/cmds/system_server/
H A Dsystem_main.cpp36 int cc; local
41 cc = sigprocmask(SIG_BLOCK, &mask, NULL);
42 assert(cc == 0);
/frameworks/base/libs/utils/
H A DFileMap.cpp202 int cc, sysAdvice; local
215 cc = madvise(mBasePtr, mBaseLength, sysAdvice);
216 if (cc != 0)
218 return cc;
H A DZipUtils.cpp101 int cc = read(fd, readBuf, getSize); local
102 if (cc != (int) getSize) {
104 cc, getSize);
213 int cc = fread(readBuf, 1, getSize, fp); local
214 if (cc != (int) getSize) {
216 cc, getSize);
H A DZipFileRO.cpp697 int cc = write(fd, writeBuf, writeSize); local
698 if (cc != (int) writeSize) {
699 LOGW("write failed in inflate (%d vs %ld)\n", cc, writeSize);
/frameworks/base/awt/java/awt/image/
H A DColorConvertOp.java68 * The cc.
70 private final ColorConverter cc = new ColorConverter(); field in class:ColorConvertOp
439 cc.translateColor(t, src, dst);
532 cc.translateColor(t, src, res);
618 cc.translateColor(t, tmpData, srcCS, xyzCS, numPixels);
623 cc.loadScalingData(xyzCS); // prepare for scaling XYZ
629 cc.translateColor(t, tmpData, null, null, numPixels);
642 cc.translateColor(t, tmpData, xyzCS, dstCS, numPixels);
/frameworks/base/libs/ui/
H A DEventHub.cpp314 int cc; local
/frameworks/base/camera/tests/CameraServiceTest/
H A DCameraServiceTest.cpp404 sp<MCameraClient> cc = new MCameraClient(); local
405 sp<ICamera> c = cs->connect(cc);
414 sp<MCameraClient> cc = new MCameraClient(); local
415 sp<ICamera> c = cs->connect(cc);
418 ASSERT(cs->connect(cc) != 0);
435 sp<MCameraClient> cc = new MCameraClient(); local
436 ASSERT(c->connect(cc) == NO_ERROR);
505 sp<MCameraClient> cc = new MCameraClient(); local
506 sp<ICamera> c = cs->connect(cc);
509 ASSERT(c->connect(cc)
519 sp<MCameraClient> cc = new MCameraClient(); local
541 sp<MCameraClient> cc = new MCameraClient(); local
576 sp<MCameraClient> cc; member in class:AfterConnect
[all...]
/frameworks/base/opengl/libagl/
H A Darray.cpp551 const uint32_t cc = v[0].flags; local
552 if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
589 const uint32_t cc = v0->flags & v1->flags; local
590 if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
611 const uint32_t cc = v0->flags & v1->flags; local
612 if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
637 const uint32_t cc = v[0].flags & v[1].flags; local
638 if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
683 const uint32_t cc = v0->flags & v1->flags & v2->flags; local
684 if (ggl_likely(!(cc
739 const uint32_t cc = v[0].flags & v[1].flags & v[2].flags; local
801 const uint32_t cc = v0->flags & v1->flags; local
828 const uint32_t cc = v0->flags & v1->flags; local
838 const uint32_t cc = v0->flags & v1->flags; local
854 const uint32_t cc = v0->flags & v1->flags; local
889 const uint32_t cc = v0->flags & v1->flags & v2->flags; local
925 const uint32_t cc = v0->flags & v1->flags & v2->flags; local
939 const uint32_t cc = v0->flags & v1->flags & v2->flags; local
[all...]
H A Dprimitives.cpp577 uint32_t cc = (v0->flags | v1->flags | v2->flags) & vertex_t::CLIP_ALL; local
578 if (ggl_likely(!cc)) {
891 uint32_t cc = (all_cc & vertex_t::USER_CLIP_ALL) >> 8; local
893 if (cc & 1) {
948 cc >>= 1;
950 } while (cc);
957 uint32_t cc = all_cc & vertex_t::FRUSTUM_CLIP_ALL; local
959 if (cc & 1) {
1013 cc >>= 1;
1015 } while (cc);
1040 uint32_t cc = (all_cc & vertex_t::USER_CLIP_ALL) >> 8; local
1076 uint32_t cc = all_cc & vertex_t::FRUSTUM_CLIP_ALL; local
[all...]

Completed in 355 milliseconds