Home
last modified time | relevance | path

Searched refs:CF (Results 1 – 25 of 211) sorted by relevance

123456789

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAtomicRMW.cpp25 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 Dasf9 #>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 Dvt_termcolors.c166 #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/wpa/wpa_supplicant/vs2005/
H A Dwpa_supplicant.sln12 …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 DAMDGPULibCalls.cpp582 if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) in isKnownIntegral() local
583 return CF->getValueAPF().isInteger(); in isKnownIntegral()
875 if (ConstantFP *CF = dyn_cast<ConstantFP>(opr0)) { in TDOFold() local
877 if (CF->isExactlyValue(tr[i].input)) { in TDOFold()
878 Value *nval = ConstantFP::get(CF->getType(), tr[i].result); in TDOFold()
912 const APFloat *CF = nullptr; in fold_pow() local
914 if (!match(opr1, m_APFloatAllowPoison(CF))) in fold_pow()
920 if ((CF && CF->isZero()) || (CINT && ci_opr1 == 0)) { in fold_pow()
930 if ((CF && CF->isExactlyValue(1.0)) || (CINT && ci_opr1 == 1)) { in fold_pow()
936 if ((CF && CF->isExactlyValue(2.0)) || (CINT && ci_opr1 == 2)) { in fold_pow()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp446 NodeChildrenMap::iterator CF = NCM.find(N); in nodes_for_root() local
447 if (CF != NCM.end()) { in nodes_for_root()
448 llvm::append_range(Work, CF->second); in nodes_for_root()
449 Nodes.insert(CF->second.begin(), CF->second.end()); in nodes_for_root()
770 NodeChildrenMap::iterator CF = NCM.find(Node); in recalculatePlacement() local
771 if (CF != NCM.end()) { in recalculatePlacement()
772 NodeVect &Cs = CF->second; in recalculatePlacement()
810 NodeChildrenMap::iterator CF = NCM.find(Node); in recalculatePlacementRec() local
811 if (CF != NCM.end()) { in recalculatePlacementRec()
812 NodeVect &Cs = CF->second; in recalculatePlacementRec()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/ata/
H A Dcavium-compact-flash.txt12 - 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 Dpata-arasan.txt5 - reg: Address range of the CF registers
6 - interrupt: Should contain the CF interrupt number
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DZ3CrosscheckVisitor.cpp122 ConstraintMap::Factory &CF = N->getState()->get_context<ConstraintMap>(); in addConstraints() local
128 Constraints = CF.add(Constraints, Sym, Range); in addConstraints()
131 Constraints = CF.remove(Constraints, Sym); in addConstraints()
132 Constraints = CF.add(Constraints, Sym, Range); in addConstraints()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp125 if (auto CF = dyn_cast<CoroFreeInst>(U)) in replaceCoroFree() local
126 CoroFrees.push_back(CF); in replaceCoroFree()
136 for (CoroFreeInst *CF : CoroFrees) { in replaceCoroFree()
137 CF->replaceAllUsesWith(Replacement); in replaceCoroFree()
138 CF->eraseFromParent(); in replaceCoroFree()
349 for (CoroFrameInst *CF : CoroFrames) { in invalidateCoroutine()
350 CF->replaceAllUsesWith(Poison); in invalidateCoroutine()
351 CF->eraseFromParent(); in invalidateCoroutine()
476 for (CoroFrameInst *CF : CoroFrames) { in cleanCoroutine()
477 CF->replaceAllUsesWith(CoroBegin); in cleanCoroutine()
[all …]
/freebsd/contrib/sendmail/contrib/
H A Dsmcontrol.pl28 open(CF, "</etc/mail/sendmail.cf") or return $cn;
29 while (<CF>)
45 close(CF);
H A Detrn.pl62 open(CF, "</etc/mail/sendmail.cf") ||
64 while (<CF>){
92 close(CF);
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DRetainSummaryManager.cpp76 K = ObjKind::CF; in hasAnyEnabledAttrOf()
316 return getPersistentSummary(RetEffect::MakeOwned(ObjKind::CF), in getSummaryForObjCOrCFObject()
330 return getPersistentSummary(RetEffect::MakeOwned(ObjKind::CF), ScratchArgs, in getSummaryForObjCOrCFObject()
336 ScratchArgs = AF.add(ScratchArgs, 1, ArgEffect(DecRef, ObjKind::CF)); in getSummaryForObjCOrCFObject()
344 ScratchArgs = AF.add(ScratchArgs, 2, ArgEffect(DecRef, ObjKind::CF)); in getSummaryForObjCOrCFObject()
365 return getPersistentSummary(RetEffect::MakeOwned(ObjKind::CF), ScratchArgs, in getSummaryForObjCOrCFObject()
488 ArgEffect(DoNothing), ArgEffect(E, ObjKind::CF)); in getSummaryForObjCOrCFObject()
651 K = ObjKind::CF; in updateSummaryForArgumentTypes()
796 ArgEffect Effect(AE, ObjKind::CF); in getUnarySummary()
845 return getPersistentSummary(RetEffect::MakeOwned(ObjKind::CF), in getCFSummaryCreateRule()
[all …]
/freebsd/crypto/libecc/include/libecc/hash/
H A Dstreebog.h1267 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/sys/sys/
H A Dpmclog.h123 #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/lib/Target/SPIRV/
H A DSPIRVCallLowering.cpp555 const Function *CF = nullptr; in lowerCall() local
565 CF = dyn_cast_or_null<const Function>(Info.Callee.getGlobal()); in lowerCall()
567 if (CF == nullptr) in lowerCall()
569 if (FunctionType *FTy = getOriginalFunctionType(*CF)) { in lowerCall()
572 if (auto *DerivedRetTy = GR->findReturnType(CF)) in lowerCall()
583 bool isFunctionDecl = CF && CF->isDeclaration(); in lowerCall()
650 if (isFunctionDecl && !GR->find(CF, &MF).isValid()) { in lowerCall()
659 for (const Argument &Arg : CF->args()) { in lowerCall()
669 lowerFormalArguments(FirstBlockBuilder, *CF, VRegArgs, FuncInfo); in lowerCall()
/freebsd/bin/pax/
H A Doptions.h56 #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 DFloat2Int.cpp212 } else if (ConstantFP *CF = dyn_cast<ConstantFP>(O)) { in calcRange() local
222 const APFloat &F = CF->getValueAPF(); in calcRange()
240 CF->getValueAPF().convertToInteger(Int, in calcRange()
413 } else if (ConstantFP *CF = dyn_cast<ConstantFP>(V)) { in convert() local
416 CF->getValueAPF().convertToInteger(Val, in convert()
/freebsd/contrib/llvm-project/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp300 Function *CF = CB->getCalledFunction(); in main() local
301 if (!CF) in main()
303 if (CF->isDeclaration() || !GVs.insert(CF)) in main()
305 Workqueue.push_back(CF); in main()
/freebsd/usr.sbin/newsyslog/tests/
H A Dlegacy_test.sh229 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 DMemoryOpRemark.cpp47 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 Dkresults.expected19 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 DStatepoint.h68 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 Dipnat27 ${ipnat_program} -CF -f ${ipnat_rules} ${ipnat_flags}
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCFragment.cpp140 const auto *CF = cast<MCDwarfCallFrameFragment>(this); in dump() local
142 CF->getAddrDelta().print(OS, nullptr); in dump()

123456789