/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...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/ |
armCOMM_s.h | 439 ;// label {,cc} 440 ;// [base] {,,,cc} 441 ;// [base, offset]{!} {,,cc} 442 ;// [base, offset, shift]{!} {,cc} 443 ;// [base], offset {,,cc} 444 ;// [base], offset, shift {,cc} 575 M_ADR $a, $b, $cc 576 _M_OPC ADD$cc, $a, sp, (_Workspace + $b$_F) 581 M_ADR16 $a, $b, $cc 582 _M_OPC ADD$cc, $a, sp, (_Workspace + $b$_F$_16 [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/ |
armCOMM_s.h | 442 ;// label {,cc} 443 ;// [base] {,,,cc} 444 ;// [base, offset]{!} {,,cc} 445 ;// [base, offset, shift]{!} {,cc} 446 ;// [base], offset {,,cc} 447 ;// [base], offset, shift {,cc} 578 M_ADR $a, $b, $cc 579 _M_OPC ADD$cc, $a, sp, (_Workspace + $b$_F) 584 M_ADR16 $a, $b, $cc 585 _M_OPC ADD$cc, $a, sp, (_Workspace + $b$_F$_16 [all...] |
/frameworks/native/opengl/libagl/ |
array.cpp | 548 const uint32_t cc = v[0].flags; local 549 if (ggl_likely(!(cc & vertex_t::CLIP_ALL))) 586 const uint32_t cc = v0->flags & v1->flags; local 587 if (ggl_likely(!(cc & vertex_t::CLIP_ALL))) 608 const uint32_t cc = v0->flags & v1->flags; local 609 if (ggl_likely(!(cc & vertex_t::CLIP_ALL))) 634 const uint32_t cc = v[0].flags & v[1].flags; local 635 if (ggl_likely(!(cc & vertex_t::CLIP_ALL))) 680 const uint32_t cc = v0->flags & v1->flags & v2->flags; local 681 if (ggl_likely(!(cc & vertex_t::CLIP_ALL)) 730 const uint32_t cc = v[0].flags & v[1].flags & v[2].flags; local 792 const uint32_t cc = v0->flags & v1->flags; local 819 const uint32_t cc = v0->flags & v1->flags; local 829 const uint32_t cc = v0->flags & v1->flags; local 845 const uint32_t cc = v0->flags & v1->flags; local 880 const uint32_t cc = v0->flags & v1->flags & v2->flags; local 916 const uint32_t cc = v0->flags & v1->flags & v2->flags; local 930 const uint32_t cc = v0->flags & v1->flags & v2->flags; local [all...] |
primitives.cpp | 577 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) { 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...] |
/libcore/luni/src/main/java/java/util/prefs/ |
AbstractPreferences.java | 395 AbstractPreferences[] cc = cachedChildren(); local 397 for (i = 0; i < cc.length; i++) { 398 cc[i].flush();
|
/packages/apps/Email/tests/src/com/android/email/mail/store/ |
Pop3StoreUnitTests.java | 808 message.getRecipients(RecipientType.CC) 920 Address[] cc = message.getRecipients(RecipientType.CC); local [all...] |
/packages/apps/Music/src/com/android/music/ |
PlaylistBrowserActivity.java | 540 Cursor cc = new MergeCursor(new Cursor [] {autoplaylistscursor, c}); local 541 return cc;
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
SwipeableListView.java | 240 ConversationCursor cc = (ConversationCursor) adapter.getCursor(); local 261 cc.mostlyDestructiveUpdate(Conversation.listOf(conv), values); 263 cc.mostlyArchive(convList); 265 cc.mostlyDelete(convList);
|
/packages/services/Telephony/src/com/android/phone/sip/ |
SipEditor.java | 551 char[] cc = new char[s.length()]; local 552 Arrays.fill(cc, SCRAMBLED); 553 return new String(cc);
|
/system/core/libpixelflinger/codeflinger/ |
GGLAssembler.cpp | 707 int cc = NV; local 709 case GGL_NEVER: cc = NV; break; 710 case GGL_LESS: cc = LT; break; 711 case GGL_EQUAL: cc = EQ; break; 712 case GGL_LEQUAL: cc = LS; break; 713 case GGL_GREATER: cc = HI; break; 714 case GGL_NOTEQUAL: cc = NE; break; 715 case GGL_GEQUAL: cc = HS; break; 717 B(cc^1, "discard_after_textures"); 732 int cc=AL, ic=AL local [all...] |
/dalvik/vm/ |
Debugger.cpp | 140 int cc __attribute__ ((__unused__)) = pthread_cond_wait(pCond, pMutex); local 141 assert(cc == 0); 145 int cc __attribute__ ((__unused__)) = pthread_cond_signal(pCond); local 146 assert(cc == 0); 150 int cc __attribute__ ((__unused__)) = pthread_cond_broadcast(pCond); local 151 assert(cc == 0); [all...] |
/external/aac/libSBRdec/src/ |
env_calc.cpp | 675 int cc = 0; local 687 sinePresentFlag |= (i >= sineMapped[cc]); 688 cc++; [all...] |
/external/chromium_org/cc/trees/ |
layer_tree_host_common_unittest.cc | 5 #include "cc/trees/layer_tree_host_common.h" 7 #include "cc/animation/layer_animation_controller.h" 8 #include "cc/base/math_util.h" 9 #include "cc/layers/content_layer.h" 10 #include "cc/layers/content_layer_client.h" 11 #include "cc/layers/heads_up_display_layer_impl.h" 12 #include "cc/layers/layer.h" 13 #include "cc/layers/layer_impl.h" 14 #include "cc/layers/render_surface.h" 15 #include "cc/layers/render_surface_impl.h 32 namespace cc { namespace [all...] |
occlusion_tracker_unittest.cc | 5 #include "cc/trees/occlusion_tracker.h" 7 #include "cc/animation/layer_animation_controller.h" 8 #include "cc/base/math_util.h" 9 #include "cc/debug/overdraw_metrics.h" 10 #include "cc/layers/layer.h" 11 #include "cc/layers/layer_impl.h" 12 #include "cc/output/copy_output_request.h" 13 #include "cc/output/copy_output_result.h" 14 #include "cc/output/filter_operation.h" 15 #include "cc/output/filter_operations.h 28 namespace cc { namespace [all...] |
/external/chromium_org/net/cookies/ |
cookie_monster.cc | 1083 scoped_ptr<CanonicalCookie> cc; local 1189 CanonicalCookie* cc = curit->second; local 1223 const CanonicalCookie* const cc = curit->second; local 1367 CanonicalCookie* cc = curit->second; local 1681 CanonicalCookie* cc = curit->second; local 1716 CanonicalCookie* cc = curit->second; local 1849 CanonicalCookie* cc = it->second; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
webrtcsdp_unittest.cc | 871 const IceCandidateCollection* cc = jdesc_.candidates(i); local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_peephole.cpp | 764 CondCode cc, ccZ; local 769 cc = si->setCond; 774 case CC_LT: cc = CC_FL; break; 775 case CC_GE: cc = CC_TR; break; 776 case CC_EQ: cc = inverseCondCode(cc); break; 777 case CC_LE: cc = inverseCondCode(cc); break; 783 i->asCmp()->setCond = cc; 911 // SLCT(a, b, const) -> cc(const) ? a : [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d11/ |
d3d11_context.h | 1622 union pipe_color_union cc; local [all...] |
/external/chromium_org/v8/src/mips/ |
simulator-mips.cc | 56 uint32_t get_fcsr_condition_bit(uint32_t cc) { 57 if (cc == 0) { 60 return 24 + cc; 2129 uint32_t cc, fcsr_cc; local 2383 uint32_t cc = instr->FBccValue(); local 2464 uint32_t cc, cc_value, fcsr_cc; local [all...] |