/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
FatLfnDirectory.java | 199 final ClusterChain cc = local 201 cc.setChainLength(0); 357 final ClusterChain cc = new ClusterChain( local 360 cc.setChainLength(0);
|
/bootable/recovery/minzip/ |
Zip.c | 608 int cc = read(pArchive->fd, readBuf, getSize); local 609 if (cc != (int) getSize) { 610 LOGW("inflate read failed (%d vs %ld)\n", cc, getSize); [all...] |
/dalvik/vm/ |
Thread.h | 420 int cc; local 423 cc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP); 424 assert(cc == 0); 437 int cc __attribute__ ((__unused__)) = pthread_mutex_lock(pMutex); local 438 assert(cc == 0); 446 int cc = pthread_mutex_trylock(pMutex); local 447 assert(cc == 0 || cc == EBUSY); 448 return cc; 456 int cc __attribute__ ((__unused__)) = pthread_mutex_unlock(pMutex) local 465 int cc __attribute__ ((__unused__)) = pthread_mutex_destroy(pMutex); local 471 int cc __attribute__ ((__unused__)) = pthread_cond_broadcast(pCond); local 477 int cc __attribute__ ((__unused__)) = pthread_cond_signal(pCond); local 483 int cc __attribute__ ((__unused__)) = pthread_cond_wait(pCond, pMutex); local [all...] |
/external/bluetooth/bluedroid/bta/jv/ |
bta_jv_act.c | 2075 tBTA_JV_API_RFCOMM_CONNECT *cc = &(p_data->rfcomm_connect); local 2176 tBTA_JV_API_RFCOMM_CLOSE *cc = &(p_data->rfcomm_close); local [all...] |
/external/clang/test/SemaCXX/ |
functional-cast.cpp | 43 typedef const char cc; typedef 44 typedef cc *ccp;
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_interface_atomic.cc | 1 //===-- tsan_interface_atomic.cc ------------------------------------------===// 361 T cc = *c; local 362 T pr = func_cas(a, cc, v); 364 if (pr == cc)
|
/external/icu4c/common/ |
normalizer2impl.cpp | 54 // Set reorderStart after the last code point with cc<=1 if there is one. 70 UBool ReorderingBuffer::appendSupplementary(UChar32 c, uint8_t cc, UErrorCode &errorCode) { 74 if(lastCC<=cc || cc==0) { 78 lastCC=cc; 79 if(cc<=1) { 83 insert(c, cc); 230 // Requires 0<cc<lastCC which implies reorderStart<limit. 231 void ReorderingBuffer::insert(UChar32 c, uint8_t cc) { 232 for(setIterator(), skipPrevious(); previousCC()>cc;) {} 498 uint8_t cc=getCCFromYesOrMaybe(norm16); local 651 uint8_t firstCC, prevCC, cc; local 820 uint8_t cc, prevCC; local 1205 uint8_t cc=(uint8_t)norm16; \/\/ cc!=0 local 1361 uint8_t cc=getCCFromYesOrMaybe(norm16); local [all...] |
/external/icu4c/test/intltest/ |
tstnorm.cpp | 1217 uint8_t cc, trailCC, foldCC, foldTrailCC; local 1509 uint8_t cc=fn2.getCombiningClass(c); local [all...] |
/external/icu4c/tools/gennorm2/ |
n2builder.cpp | 130 uint8_t cc; member in struct:Norm 272 void Normalizer2DataBuilder::setCC(UChar32 c, uint8_t cc) { 273 createNorm(c)->cc=cc; 277 return getNormRef(c).cc; 355 if(norms[value].cc!=0) { 556 void append(UChar32 c, uint8_t cc) { 557 if(cc==0 || fLength==0 || ccAt(fLength-1)<=cc) { 558 if(cc==0) 652 uint8_t cc=buffer.ccAt(combMarkIndex); \/\/ !=0 because after last starter local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/input/ |
ChaseCamera.java | 519 ChaseCamera cc = new ChaseCamera(cam, spatial, inputManager);
local 520 cc.setMaxDistance(getMaxDistance());
521 cc.setMinDistance(getMinDistance());
522 return cc;
|
/external/jpeg/ |
jdmarker.c | 305 int i, ci, n, c, cc; local 326 INPUT_BYTE(cinfo, cc, return FALSE); 331 if (cc == compptr->component_id) 335 ERREXIT1(cinfo, JERR_BAD_COMPONENT_ID, cc); 343 TRACEMS3(cinfo, 1, JTRC_SOS_COMPONENT, cc, [all...] |
/external/llvm/lib/IR/ |
AsmWriter.cpp | 69 static void PrintCallingConv(unsigned cc, raw_ostream &Out) { 70 switch (cc) { 71 default: Out << "cc" << cc; break; local [all...] |
/external/llvm/lib/Target/CppBackend/ |
CPPBackend.cpp | 134 void printCallingConv(CallingConv::ID cc); 267 void CppWriter::printCallingConv(CallingConv::ID cc){ 269 switch (cc) { 274 default: Out << cc; break; local [all...] |
/external/opencv/cvaux/src/ |
cvlmeds.cpp | 944 cc - reduces requirements to number stitch (cc>1) 948 double cc = 100; local 1079 anorm *= cc; [all...] |
/external/openssh/ |
mux.c | 194 Channel *cc, *c = channel_by_id(cid); local 200 if ((cc = channel_by_id(c->ctl_chan)) == NULL) 204 cc->remote_id = -1; 205 chan_rcvd_oclose(cc); 1184 Channel *c, *cc; local 1192 if ((cc = channel_by_id(c->ctl_chan)) == NULL [all...] |
/external/qemu/android/ |
main-common.c | 1191 CoreConsole* cc = opaque; local [all...] |
/external/qemu/android/skin/ |
trackball.c | 284 int cc; local 285 for (cc = 0; cc < DOT_CELLS; cc++) {
|
/external/qemu/distrib/jpeg-6b/ |
jdmarker.c | 305 int i, ci, n, c, cc; local 326 INPUT_BYTE(cinfo, cc, return FALSE); 331 if (cc == compptr->component_id) 335 ERREXIT1(cinfo, JERR_BAD_COMPONENT_ID, cc); 343 TRACEMS3(cinfo, 1, JTRC_SOS_COMPONENT, cc, [all...] |
/external/qemu/hw/ |
bt-hci.c | 1249 read_country_code_rp cc ={ local [all...] |
/external/qemu/tcg/sparc/ |
tcg-target.c | 547 int cc, label_next = gen_new_label(); local 554 cc = INSN_COND(tcg_cond_to_bcond[TCG_COND_NE], 0); 555 tcg_out_branch_i32(s, cc, label_next); 557 cc = INSN_COND(tcg_cond_to_bcond[TCG_COND_EQ], 0); 558 tcg_out_branch_i32(s, cc, label_dest); 562 cc = INSN_COND(tcg_cond_to_bcond[TCG_COND_NE], 0); 563 tcg_out_branch_i32(s, cc, label_dest); 565 tcg_out_branch_i32(s, cc, label_dest); 574 cc = INSN_COND(tcg_cond_to_bcond[cond], 0); 575 tcg_out_branch_i32(s, cc, label_dest) [all...] |
/external/regex-re2/re2/ |
parse.cc | 316 static void AddFoldedRange(CharClassBuilder* cc, Rune lo, Rune hi, int depth) { 326 if (!cc->AddRange(lo, hi)) // lo-hi was already there? we're done 360 AddFoldedRange(cc, lo1, hi1, depth+1); 518 // Adds r to cc, along with r's upper case if foldascii is set. 519 static void AddLiteral(CharClassBuilder* cc, Rune r, bool foldascii) { 520 cc->AddRange(r, r); 522 cc->AddRange(r + 'A' - 'a', r + 'A' - 'a'); 956 CharClass* cc = re->cc(); local 957 for (CharClass::iterator it = cc->begin(); it != cc->end(); ++it [all...] |
regexp.h | 94 // Keep in sync with string list kOpcodeNames[] in testing/dump.cc 159 // Keep in sync with string list in regexp.cc 329 CharClass* cc() { DCHECK_EQ(op_, kRegexpCharClass); return cc_; } function in class:re2::Regexp 394 static Regexp* NewCharClass(CharClass* cc, ParseFlags flags); 420 // on the Regexp. See mimics_pcre.cc for the exact conditions. 593 void AddCharClass(CharClassBuilder* cc);
|
/external/v8/src/ia32/ |
ic-ia32.cc | 1769 Condition cc = *jmp_address == Assembler::kJncShortOpcode local [all...] |
/external/v8/src/x64/ |
ic-x64.cc | 1774 Condition cc = *jmp_address == Assembler::kJncShortOpcode local [all...] |
/external/valgrind/main/none/tests/ppc32/ |
testVMX.c | 152 size_t nbytes, cc, rr; local 180 cc = ((size_t)realadd)/16; 185 retadd = (char *)((cc+1)*16); [all...] |