Searched refs:CC (Results 251 - 275 of 406) sorted by relevance

<<11121314151617

/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp315 int CC = StringSwitch<unsigned>(Name) local
351 if (CC != -1) {
354 CC++;
355 return CC;
739 int CC = StringSwitch<unsigned>(CondString) local
758 return CC;
/external/quake/quake/src/QW/
H A DMakefile.Linux39 CC=gcc
58 DO_CC=$(CC) $(CFLAGS) -o $@ -c $<
59 DO_O_CC=$(CC) -O $(CFLAGS) -o $@ -c $<
60 DO_GL_CC=$(CC) $(CFLAGS) $(GLCFLAGS) -o $@ -c $<
61 DO_SERVER_CC=$(CC) -DSERVERONLY $(CFLAGS) -o $@ -c $<
63 DO_AS=$(CC) $(CFLAGS) -DELF -x assembler-with-cpp -o $@ -c $<
64 DO_GL_AS=$(CC) $(CFLAGS) $(GLCFLAGS) -DELF -x assembler-with-cpp -o $@ -c $<
128 $(CC) $(CFLAGS) -o $@ $(QWSV_OBJS) $(LDFLAGS)
304 $(CC) $(CFLAGS) -o $@ $(QWCL_OBJS) $(QWCL_AS_OBJS) $(QWCL_SVGA_OBJS) \
308 $(CC)
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp1778 static bool IsTailCallConvention(CallingConv::ID CC) { argument
1779 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1796 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC, argument
1798 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
7764 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8); local
7765 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7766 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8600 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC, argument
8661 unsigned Cond = CC
8677 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get(); local
8734 SDValue CC = Op.getOperand(2); local
8759 SDValue CC = Op.getOperand(2); local
8940 SDValue CC; local
9141 SDValue CC; local
9683 ISD::CondCode CC; local
9941 SDValue CC = DAG.getConstant(X86CC, MVT::i8); local
10364 CallingConv::ID CC = Func->getCallingConv(); local
13827 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get(); local
14074 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get(); local
14129 checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) argument
14213 checkFlaggedOrCombine(SDValue Or, X86::CondCode &CC, SelectionDAG &DAG, const X86Subtarget *Subtarget) argument
14300 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2); local
15817 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get(); local
15845 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0)); local
15883 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2)); local
[all...]
/external/wpa_supplicant_6/wpa_supplicant/
H A DMakefile1 ifndef CC
2 CC=gcc macro
1082 LDO=$(CC)
1132 $(CC) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $^ \
1136 $(CC) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $^ \
1140 $(CC) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $^ \
1144 $(CC) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $^ \
1148 $(CC) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $^ \
1152 $(CC) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $< \
1163 $(Q)$(CC)
[all...]
/external/e2fsprogs/e2fsck/
H A DMakefile.in36 $(E) " CC $<"
37 $(Q) $(CC) -c $(ALL_CFLAGS) $< -o $@
38 @PROFILE_CMT@ $(Q) $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
130 $(E) " CC $@"
140 $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) -o tst_problem \
144 $(Q) $(CC) $(BUILD_LDFLAGS) $(ALL_CFLAGS) -o tst_crc32 $(srcdir)/crc32.c \
149 $(Q) $(CC) -o tst_refcount $(srcdir)/ea_refcount.c \
154 $(Q) $(CC) -o tst_region $(srcdir)/region.c \
178 $(Q) $(CC) -o test_profile -DDEBUG_PROGRAM $(srcdir)/profile.c prof_err.o \
/external/wpa_supplicant_8/hostapd/
H A DMakefile1 ifndef CC
2 CC=gcc macro
846 $(Q)$(CC) -c -o $@ $(CFLAGS) $<
847 @$(E) " CC " $<
871 $(Q)$(CC) $(LDFLAGS) -o hostapd $(OBJS) $(LIBS)
878 $(Q)$(CC) $(LDFLAGS) -o hostapd_cli $(OBJS_c) $(LIBS_c)
909 $(Q)$(CC) $(LDFLAGS) -o nt_password_hash $(NOBJS) $(LIBS_n)
913 $(Q)$(CC) $(LDFLAGS) -o hlr_auc_gw $(HOBJS) $(LIBS_h)
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp407 ConstantInt *CC; local
429 // Turn (Y + ((X >> C) & CC)) << C -> ((X & (CC << C)) + (Y << C))
434 m_ConstantInt(CC))) &&
439 // X & (CC << C)
440 Value *XM = Builder->CreateAnd(V1, ConstantExpr::getShl(CC, Op1),
462 // Turn (((X >> C)&CC) + Y) << C -> (X + (Y << C)) & (CC << C)
466 m_ConstantInt(CC))) && V2 == Op1 &&
471 // X & (CC <<
[all...]
/external/qemu-pc-bios/bochs/
H A Dconfigure820 CC
952 CC
1471 To assign environment variables (e.g., CC, CFLAGS...), specify them as
1641 CC C compiler command
2073 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2074 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2340 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2341 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2351 if test -n "$CC"; then
2352 ac_cv_prog_CC="$CC" # Le
[all...]
/external/bison/src/
H A DMakefile100 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
102 CCLD = $(CC)
125 CC = gcc macro
/external/llvm/lib/Target/ARM/
H A DThumb2InstrInfo.cpp61 ARMCC::CondCodes CC = getInstrPredicate(Tail, PredReg); local
63 if (CC != ARMCC::AL)
71 if (CC != ARMCC::AL) {
H A DARMISelLowering.h418 CCAssignFn *CCAssignFnForNode(CallingConv::ID CC, bool Return,
505 SDValue getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
/external/llvm/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp746 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm(); local
747 // Handle the undefined 15 CC value here for printing so we don't abort().
748 if ((unsigned)CC == 15)
750 else if (CC != ARMCC::AL)
751 O << ARMCondCodeToString(CC);
757 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm(); local
758 O << ARMCondCodeToString(CC);
/external/compiler-rt/make/
H A DAppleBI.mk56 $(call GetCNAVar,CC,Platform.darwin_bni,Release,$*) \
/external/compiler-rt/make/platform/
H A Ddarwin_bni.mk12 override CC := $(shell xcrun -sdk $(SDKROOT) -find clang)
/external/expat/
H A DMakefile107 CC = gcc -std=gnu99 macro
121 COMPILE = $(CC) $(INCLUDES) $(CFLAGS) $(DEFS) $(CPPFLAGS)
/external/icu4c/config/
H A Dmh-cygwin-msvc55 COMPILE.c= $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) /c
/external/libpng/scripts/
H A Dmakevms.com39 $ CC :== GCC
/external/libvpx/build/make/
H A DMakefile101 $(qexec)$(CC) $(CFLAGS) -M $< | $(fmt_deps) > $@
104 $(if $(quiet),@echo " [CC] $@")
105 $(qexec)$(CC) $(CFLAGS) -c -o $@ $<
/external/libvpx/
H A Dconfigure430 if [ -z "$CC" ]; then
455 check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp664 ISD::CondCode CC,
671 switch (CC) {
748 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get(); local
755 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
780 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get(); local
782 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
847 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get(); local
851 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
663 EmitCMP(SDValue &LHS, SDValue &RHS, SDValue &TargetCC, ISD::CondCode CC, DebugLoc dl, SelectionDAG &DAG) argument
/external/llvm/utils/release/
H A Dtest-release.sh257 env CC="$c_compiler" CXX="$cxx_compiler" \
353 c_compiler="$CC"
/external/webkit/Tools/wx/
H A Dinstall-unix-extras91 export CC="gcc-4.0"
/external/liblzf/
H A Dconfigure638 CC
658 CC
1169 To assign environment variables (e.g., CC, CFLAGS...), specify them as
1234 CC C compiler command
1659 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1660 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1677 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1678 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1688 if test -n "$CC"; then
1689 ac_cv_prog_CC="$CC" # Le
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A DMakefile1 ifndef CC
2 CC=gcc macro
1492 LDO=$(CC)
1555 $(CC) $(LDFLAGS) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $^ \
1559 $(CC) $(LDFLAGS) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $^ \
1563 $(CC) $(LDFLAGS) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $^ \
1567 $(CC) $(LDFLAGS) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $^ \
1571 $(CC) $(LDFLAGS) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $^ \
1575 $(CC) $(LDFLAGS) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $< \
1579 $(Q)$(CC)
[all...]
/external/dropbear/
H A Dconfigure312 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT SET_MAKE LD build build_cpu build_vendor build_os host host_cpu host_vendor host_os AR ac_ct_AR RANLIB ac_ct_RANLIB STRIP ac_ct_STRIP INSTALL ac_ct_INSTALL CPP EGREP LIBOBJS LTLIBOBJS'
753 ac_env_CC_set=${CC+set}
754 ac_env_CC_value=$CC
755 ac_cv_env_CC_set=${CC+set}
756 ac_cv_env_CC_value=$CC
785 To assign environment variables (e.g., CC, CFLAGS...), specify them as
870 CC C compiler command
1294 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1295 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1321 ac_compile='$CC
[all...]

Completed in 576 milliseconds

<<11121314151617