| /freebsd-12.1/contrib/llvm/lib/Transforms/Coroutines/ |
| H A D | Coroutines.cpp | 156 if (auto CF = dyn_cast<CoroFreeInst>(U)) in replaceCoroFree() local 157 CoroFrees.push_back(CF); in replaceCoroFree() 166 for (CoroFreeInst *CF : CoroFrees) { in replaceCoroFree() 167 CF->replaceAllUsesWith(Replacement); in replaceCoroFree() 168 CF->eraseFromParent(); in replaceCoroFree() 307 for (CoroFrameInst *CF : CoroFrames) { in buildFrom() 308 CF->replaceAllUsesWith(Undef); in buildFrom() 309 CF->eraseFromParent(); in buildFrom() 329 for (CoroFrameInst *CF : CoroFrames) { in buildFrom() 330 CF->replaceAllUsesWith(CoroBegin); in buildFrom() [all …]
|
| H A D | CoroEarly.cpp | 213 for (CoroFreeInst *CF : CoroFrees) in lowerEarlyIntrinsics() 214 CF->setArgOperand(0, CoroId); in lowerEarlyIntrinsics()
|
| H A D | CoroElide.cpp | 205 else if (auto *CF = dyn_cast<CoroFreeInst>(U)) in processCoroId() local 206 CoroFrees.push_back(CF); in processCoroId()
|
| /freebsd-12.1/sys/dev/vt/colors/ |
| H A D | vt_termcolors.c | 169 #define CF(_f, _i) ((_f ## max * color_def[(_i)]._f / 100) << _f ## offset) in vt_generate_cons_palette() macro 171 palette[i] = CF(r, i) | CF(g, i) | CF(b, i); in vt_generate_cons_palette() 172 #undef CF in vt_generate_cons_palette()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULibCalls.cpp | 867 ConstantFP *CF; in fold_pow() local 877 CF = dyn_cast<ConstantFP>(opr1); in fold_pow() 897 if ((CF && CF->isZero()) || (CINT && ci_opr1 == 0) || CZero) { in fold_pow() 907 if ((CF && CF->isExactlyValue(1.0)) || (CINT && ci_opr1 == 1)) { in fold_pow() 913 if ((CF && CF->isExactlyValue(2.0)) || (CINT && ci_opr1 == 2)) { in fold_pow() 921 if ((CF && CF->isExactlyValue(-1.0)) || (CINT && ci_opr1 == -1)) { in fold_pow() 934 if (CF && (CF->isExactlyValue(0.5) || CF->isExactlyValue(-0.5))) { in fold_pow() 955 if (CF) { in fold_pow() 1018 if (CF) { in fold_pow() 1030 (!CF || CF->isNegative()); in fold_pow() [all …]
|
| /freebsd-12.1/contrib/wpa/wpa_supplicant/vs2005/ |
| H A D | wpa_supplicant.sln | 12 …C942}") = "win_if_list", "win_if_list\win_if_list.vcproj", "{9E87CD9C-60CE-4533-85CF-85CA3A9BF26A}" 41 {9E87CD9C-60CE-4533-85CF-85CA3A9BF26A}.Debug|Win32.ActiveCfg = Debug|Win32 42 {9E87CD9C-60CE-4533-85CF-85CA3A9BF26A}.Debug|Win32.Build.0 = Debug|Win32 43 {9E87CD9C-60CE-4533-85CF-85CA3A9BF26A}.Release|Win32.ActiveCfg = Release|Win32 44 {9E87CD9C-60CE-4533-85CF-85CA3A9BF26A}.Release|Win32.Build.0 = Release|Win32
|
| /freebsd-12.1/contrib/llvm/tools/llvm-extract/ |
| H A D | llvm-extract.cpp | 277 Function *CF = CI->getCalledFunction(); in main() local 278 if (!CF) in main() 280 if (CF->isDeclaration() || GVs.count(CF)) in main() 282 GVs.insert(CF); in main() 283 Workqueue.push_back(CF); in main()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Hexagon/ |
| H A D | HexagonCommonGEP.cpp | 458 if (CF != NCM.end()) { in nodes_for_root() 459 Work.insert(Work.end(), CF->second.begin(), CF->second.end()); in nodes_for_root() 460 Nodes.insert(CF->second.begin(), CF->second.end()); in nodes_for_root() 786 if (CF != NCM.end()) { in recalculatePlacement() 787 NodeVect &Cs = CF->second; in recalculatePlacement() 827 if (CF != NCM.end()) { in recalculatePlacementRec() 828 NodeVect &Cs = CF->second; in recalculatePlacementRec() 917 if (CF != NCM.end()) { in adjustForInvariance() 918 NodeVect &Cs = CF->second; in adjustForInvariance() 1157 if (CF != NCM.end()) { in getAllUsersForNode() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | RetainSummaryManager.cpp | 77 K = ObjKind::CF; in hasAnyEnabledAttrOf() 267 return getPersistentSummary(RetEffect::MakeOwned(ObjKind::CF), in getSummaryForObjCOrCFObject() 288 ScratchArgs = AF.add(ScratchArgs, 1, ArgEffect(DecRef, ObjKind::CF)); in getSummaryForObjCOrCFObject() 296 ScratchArgs = AF.add(ScratchArgs, 2, ArgEffect(DecRef, ObjKind::CF)); in getSummaryForObjCOrCFObject() 727 ArgEffect Effect(AE, ObjKind::CF); in getUnarySummary() 776 return getPersistentSummary(RetEffect::MakeOwned(ObjKind::CF), in getCFSummaryCreateRule() 782 return getPersistentSummary(RetEffect::MakeNotOwned(ObjKind::CF), in getCFSummaryGetRule() 979 ResultEff = RetEffect::MakeOwned(ObjKind::CF); in getStandardMethodSummary() 982 ResultEff = RetEffect::MakeNotOwned(ObjKind::CF); in getStandardMethodSummary() 986 ResultEff = RetEffect::MakeNotOwned(ObjKind::CF); in getStandardMethodSummary() [all …]
|
| /freebsd-12.1/contrib/sendmail/contrib/ |
| H A D | smcontrol.pl | 28 open(CF, "</etc/mail/sendmail.cf") or return $cn; 29 while (<CF>) 45 close(CF);
|
| H A D | etrn.pl | 62 open(CF, "</etc/mail/sendmail.cf") || 64 while (<CF>){ 92 close(CF);
|
| /freebsd-12.1/sys/sys/ |
| H A D | pmclog.h | 125 #define PMC_CALLCHAIN_CPUFLAGS_TO_CPU(CF) (((CF) >> 16) & 0xFFFF) argument 126 #define PMC_CALLCHAIN_CPUFLAGS_TO_USERMODE(CF) ((CF) & PMC_CC_F_USERSPACE) argument
|
| /freebsd-12.1/bin/pax/ |
| H A D | options.h | 59 #define CF 0x00000004 macro 110 #define BDARCH (CF|KF|LF|NF|PF|RF|CDF|CEF|CYF|CZF)
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | Float2Int.cpp | 284 } else if (ConstantFP *CF = dyn_cast<ConstantFP>(O)) { in walkForwards() local 294 const APFloat &F = CF->getValueAPF(); in walkForwards() 317 CF->getValueAPF().convertToInteger(Int, in walkForwards() 429 } else if (ConstantFP *CF = dyn_cast<ConstantFP>(V)) { in convert() local 432 CF->getValueAPF().convertToInteger(Val, in convert()
|
| /freebsd-12.1/libexec/rc/rc.d/ |
| H A D | ipnat | 26 ${ipnat_program} -CF -f ${ipnat_rules} ${ipnat_flags}
|
| /freebsd-12.1/contrib/sendmail/cf/cf/ |
| H A D | Makefile | 15 CF= sendmail macro 82 install-sendmail-cf: $(CF).cf 83 $(INSTALL) -c -o $(CFOWN) -g $(CFGRP) -m $(CFMODE) $(CF).cf ${DESTDIR}$(MAILDIR)/sendmail.cf
|
| H A D | README | 18 make install-cf CF=config
|
| H A D | huginn.cs.mc | 36 CF CS
|
| /freebsd-12.1/contrib/sendmail/cf/m4/ |
| H A D | cf.m4 | 19 # figure out where the CF files live
|
| /freebsd-12.1/sys/dev/pccard/ |
| H A D | pccarddevs | 218 product 3COM 3C1 0x0cf1 3Com Megahertz 3C1 10Mbps LAN CF+ Card 243 product ANYCOM LSE039 0x0008 Anycom Bluetooth CF Card LSE039 244 product ANYCOM LSE139 0x000b Anycom Bluetooth CF Card LSE139 273 product BROMAX WCF11 0x3301 Instant Wireless Network CF Card 280 product BUFFALO LPC_CF_CLT 0x0307 BUFFALO LPC-CF-CLT 283 product BUFFALO WLI_CF_S11G 0x030b BUFFALO AirStation 11Mbps CF WLAN 321 product ELSA XI800_IEEE 0x0004 XI800 CF Wireless LAN 387 product IODATA2 WCF12 0x0673 Wireless CF Card 594 product SOCKET LP_ETHER_CF 0x0075 Socket Communications LP-E CF 709 product BILLIONTON CFLT10N { "CF", "10Base-Ethernet", "1.0", NULL } Billionton CFLT10N [all …]
|
| /freebsd-12.1/contrib/tcsh/ |
| H A D | Makefile.vms | 22 CF=-c 349 @echo ${CC} ${CF} ${CFLAGS} ${DFLAGS} ${EXTRAFLAGS} $*.c 350 @${CC} ${CF} ${CFLAGS} ${DFLAGS} ${EXTRAFLAGS} $*..c 414 ${CC} ${CF} ${CFLAGS} -DPROF sh.prof.c
|
| /freebsd-12.1/sys/gnu/dts/mips/ |
| H A D | CF-WR800N.dts | 7 model = "Comfast CF-WR800N";
|
| /freebsd-12.1/contrib/llvm/include/llvm/Analysis/ |
| H A D | TargetFolder.h | 37 if (Constant *CF = ConstantFoldConstant(C, DL)) in Fold() local 38 return CF; in Fold()
|
| /freebsd-12.1/sys/mips/conf/ |
| H A D | DIR-825B1 | 59 # options MSDOSFS # Read MSDOS filesystems; useful for USB/CF
|
| H A D | AR71XX_BASE | 51 # options MSDOSFS # Read MSDOS filesystems; useful for USB/CF
|