| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineAtomicRMW.cpp | 25 if (auto CF = dyn_cast<ConstantFP>(RMWI.getValOperand())) in isIdempotentRMW() local 28 return CF->isZero() && CF->isNegative(); in isIdempotentRMW() 30 return CF->isZero() && !CF->isNegative(); in isIdempotentRMW() 63 if (auto CF = dyn_cast<ConstantFP>(RMWI.getValOperand())) in isSaturating() local 67 return !CF->isNegative() && CF->isInfinity(); in isSaturating() 70 return CF->isNegative() && CF->isInfinity(); in isSaturating() 73 return CF->isNaN(); in isSaturating()
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | asf | 9 #>0 guid 75B22636-668E-11CF-A6D9-00AA0062CE6C 13 #>0 guid 33000890-E5B1-11CF-89F4-00A0C90349CB 19 #>0 guid 8CABDCA1-A947-11CF-8EE4-00C00C205365 22 >0 guid B7DC0791-A9B7-11CF-8EE6-00C00C205365 29 >>24 guid F8699E40-5B4D-11CF-A8FD-00805F5C442B \b, Audio Media ( 37 >>24 guid BC19EFC0-5B4D-11CF-A8FD-00805F5C442B \b, Video Media ( 55 #>0 guid 5FBF03B5-A92E-11CF-8EE3-00C00C205365 59 >0 guid F487CD01-A951-11CF-8EE6-00C00C205365 ASF_Marker_Object 61 >0 guid 75B22635-668E-11CF-A6D9-00AA0062CE6C ASF_Error_Correction_Object 63 #>0 guid 75B22633-668E-11CF-A6D9-00AA0062CE6C [all …]
|
| /freebsd/sys/dev/vt/colors/ |
| H A D | vt_termcolors.c | 166 #define CF(_f, _i) ((_f ## max * color_def[(_i)]._f / 100) << _f ## offset) in vt_generate_cons_palette() macro 168 palette[i] = CF(r, i) | CF(g, i) | CF(b, i); in vt_generate_cons_palette() 169 #undef CF in vt_generate_cons_palette()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| H A D | Coroutines.cpp | 131 if (auto CF = dyn_cast<CoroFreeInst>(U)) in replaceCoroFree() local 132 CoroFrees.push_back(CF); in replaceCoroFree() 142 for (CoroFreeInst *CF : CoroFrees) { in replaceCoroFree() 143 CF->replaceAllUsesWith(Replacement); in replaceCoroFree() 144 CF->eraseFromParent(); in replaceCoroFree() 274 for (CoroFrameInst *CF : CoroFrames) { in buildFrom() 275 CF->replaceAllUsesWith(Undef); in buildFrom() 276 CF->eraseFromParent(); in buildFrom() 430 for (CoroFrameInst *CF : CoroFrames) { in buildFrom() 431 CF->replaceAllUsesWith(CoroBegin); in buildFrom() [all …]
|
| /freebsd/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/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULibCalls.cpp | 586 if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) in isKnownIntegral() local 587 return CF->getValueAPF().isInteger(); in isKnownIntegral() 878 if (ConstantFP *CF = dyn_cast<ConstantFP>(opr0)) { in TDOFold() local 880 if (CF->isExactlyValue(tr[i].input)) { in TDOFold() 881 Value *nval = ConstantFP::get(CF->getType(), tr[i].result); in TDOFold() 915 const APFloat *CF = nullptr; in fold_pow() local 917 if (!match(opr1, m_APFloatAllowPoison(CF))) in fold_pow() 923 if ((CF && CF->isZero()) || (CINT && ci_opr1 == 0)) { in fold_pow() 933 if ((CF && CF->isExactlyValue(1.0)) || (CINT && ci_opr1 == 1)) { in fold_pow() 939 if ((CF && CF->isExactlyValue(2.0)) || (CINT && ci_opr1 == 2)) { in fold_pow() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonCommonGEP.cpp | 453 NodeChildrenMap::iterator CF = NCM.find(N); in nodes_for_root() local 454 if (CF != NCM.end()) { in nodes_for_root() 455 llvm::append_range(Work, CF->second); in nodes_for_root() 456 Nodes.insert(CF->second.begin(), CF->second.end()); in nodes_for_root() 775 NodeChildrenMap::iterator CF = NCM.find(Node); in recalculatePlacement() local 776 if (CF != NCM.end()) { in recalculatePlacement() 777 NodeVect &Cs = CF->second; in recalculatePlacement() 815 NodeChildrenMap::iterator CF = NCM.find(Node); in recalculatePlacementRec() local 816 if (CF != NCM.end()) { in recalculatePlacementRec() 817 NodeVect &Cs = CF->second; in recalculatePlacementRec() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | Z3CrosscheckVisitor.cpp | 96 ConstraintMap::Factory &CF = N->getState()->get_context<ConstraintMap>(); in addConstraints() local 102 Constraints = CF.add(Constraints, Sym, Range); in addConstraints() 105 Constraints = CF.remove(Constraints, Sym); in addConstraints() 106 Constraints = CF.add(Constraints, Sym, Range); in addConstraints()
|
| /freebsd/sys/contrib/device-tree/Bindings/ata/ |
| H A D | cavium-compact-flash.txt | 12 - reg: The base address of the CF chip select banks. Depending on 15 - cavium,bus-width: The width of the connection to the CF devices. Valid 18 - cavium,true-ide: Optional, if present the CF connection is in True IDE mode.
|
| H A D | pata-arasan.txt | 5 - reg: Address range of the CF registers 6 - interrupt: Should contain the CF interrupt number
|
| /freebsd/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/crypto/libecc/include/libecc/hash/ |
| H A D | streebog.h | 1267 u64 l, CF; in streebog_process() local 1287 CF = 0; in streebog_process() 1291 CF = (ctx->Sigma[j - 1] < M[j - 1]); in streebog_process() 1293 ctx->Sigma[j] += (M[j] + CF); in streebog_process()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVCallLowering.cpp | 496 const Function *CF = nullptr; in lowerCall() local 506 CF = dyn_cast_or_null<const Function>(Info.Callee.getGlobal()); in lowerCall() 508 if (CF == nullptr) in lowerCall() 510 if (FunctionType *FTy = getOriginalFunctionType(*CF)) { in lowerCall() 513 if (auto *DerivedRetTy = GR->findReturnType(CF)) in lowerCall() 524 bool isFunctionDecl = CF && CF->isDeclaration(); in lowerCall() 548 if (isFunctionDecl && !GR->find(CF, &MF).isValid()) { in lowerCall() 557 for (const Argument &Arg : CF->args()) { in lowerCall() 567 lowerFormalArguments(FirstBlockBuilder, *CF, VRegArgs, FuncInfo); in lowerCall()
|
| /freebsd/sys/sys/ |
| H A D | pmclog.h | 123 #define PMC_CALLCHAIN_CPUFLAGS_TO_CPU(CF) (((CF) >> 16) & 0xFFFF) argument 124 #define PMC_CALLCHAIN_CPUFLAGS_TO_USERMODE(CF) ((CF) & PMC_CC_F_USERSPACE) argument
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-extract/ |
| H A D | llvm-extract.cpp | 297 Function *CF = CB->getCalledFunction(); in main() local 298 if (!CF) in main() 300 if (CF->isDeclaration() || GVs.count(CF)) in main() 302 GVs.insert(CF); in main() 303 Workqueue.push_back(CF); in main()
|
| /freebsd/bin/pax/ |
| H A D | options.h | 56 #define CF 0x00000004 macro 107 #define BDARCH (CF|KF|LF|NF|PF|RF|CDF|CEF|CYF|CZF)
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | Float2Int.cpp | 216 } else if (ConstantFP *CF = dyn_cast<ConstantFP>(O)) { in calcRange() local 226 const APFloat &F = CF->getValueAPF(); in calcRange() 244 CF->getValueAPF().convertToInteger(Int, in calcRange() 417 } else if (ConstantFP *CF = dyn_cast<ConstantFP>(V)) { in convert() local 420 CF->getValueAPF().convertToInteger(Val, in convert()
|
| /freebsd/usr.sbin/newsyslog/tests/ |
| H A D | legacy_test.sh | 229 run_newsyslog -CF 307 run_newsyslog -CF 482 run_newsyslog -CF 514 run_newsyslog -CF 549 run_newsyslog -CF
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | MemoryOpRemark.cpp | 47 auto *CF = CI->getCalledFunction(); in canHandle() local 48 if (!CF) in canHandle() 51 if (!CF->hasName()) in canHandle() 55 bool KnownLibCall = TLI.getLibFunc(*CF, LF) && TLI.has(LF); in canHandle()
|
| /freebsd/crypto/krb5/src/lib/crypto/builtin/aes/ |
| H A D | kresults.expected | 19 E1 43 64 CB 16 D3 FF CF E8 FA 6A 2C EC A2 69 34 32 94 8F E9 20 1F 8D FB 3A 22 CF 22 E8 94 1D 42 7B 88 D4 3C 74 F5 5B 8B 3E CF 67 F8 F7 00 03 27 8A 91 101 94 8F E9 20 1F 8D FB 3A 22 CF 22 E8 94 1D 42 7B 157 D4 3C 74 F5 5B 8B 3E CF 67 F8 F7 00 03 27 8A 91 172 94 8F E9 20 1F 8D FB 3A 22 CF 22 E8 94 1D 42 7B
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Statepoint.h | 68 if (const Function *CF = I->getCalledFunction()) in classof() local 69 return CF->getIntrinsicID() == Intrinsic::experimental_gc_statepoint; in classof()
|
| /freebsd/libexec/rc/rc.d/ |
| H A D | ipnat | 27 ${ipnat_program} -CF -f ${ipnat_rules} ${ipnat_flags}
|
| /freebsd/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
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCFragment.cpp | 220 const auto *CF = cast<MCDwarfCallFrameFragment>(this); in dump() local 222 OS << " AddrDelta:" << CF->getAddrDelta(); in dump()
|