Home
last modified time | relevance | path

Searched refs:F (Results 1 – 25 of 2914) sorted by relevance

12345678910>>...117

/freebsd/sys/dev/kbd/
H A Dkbdtables.h139 /*5e*/{{ F(49), F(49), F(49), F(49), F(49), F(49), F(49), F(49),}, 0xFF,0x00 },
140 /*5f*/{{ F(50), F(50), F(50), F(50), F(50), F(50), F(50), F(50),}, 0xFF,0x00 },
141 /*60*/{{ F(51), F(51), F(51), F(51), F(51), F(51), F(51), F(51),}, 0xFF,0x00 },
142 /*61*/{{ F(53), F(53), F(53), F(53), F(53), F(53), F(53), F(53),}, 0xFF,0x00 },
143 /*62*/{{ F(55), F(55), F(55), F(55), F(55), F(55), F(55), F(55),}, 0xFF,0x00 },
144 /*63*/{{ F(57), F(57), F(57), F(57), F(57), F(57), F(57), F(57),}, 0xFF,0x00 },
145 /*64*/{{ F(58), F(58), F(58), F(58), F(58), F(58), F(58), F(58),}, 0xFF,0x00 },
146 /*65*/{{ F(59), F(59), F(59), F(59), F(59), F(59), F(59), F(59),}, 0xFF,0x00 },
150 /*69*/{{ F(62), F(62), F(62), F(62), F(62), F(62), F(62), F(62),}, 0xFF,0x00 },
151 /*6a*/{{ F(63), F(63), F(63), F(63), F(63), F(63), F(63), F(63),}, 0xFF,0x00 },
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp69 if (F.onlyReadsMemory()) in setOnlyReadsMemory()
71 F.setOnlyReadsMemory(); in setOnlyReadsMemory()
101 if (F.doesNotThrow()) in setDoesNotThrow()
103 F.setDoesNotThrow(); in setDoesNotThrow()
233 F.addFnAttr(Attribute::getWithAllocSizeArgs(F.getContext(), ElemSizeArg, in setAllocSize()
248 F.addFnAttr( in setAllocKind()
256 if (!F) in inferNonMandatoryLibFuncAttrs()
269 if (F.getParent() != nullptr && F.getParent()->getRtLibUseGOT()) in inferNonMandatoryLibFuncAttrs()
1235 if (!isLibFreeFunction(&F, TheLibFunc) && !isReallocLikeFn(&F)) in inferNonMandatoryLibFuncAttrs()
1256 if (!F->arg_size() || F->isVarArg()) in markRegisterParameterAttributes()
[all …]
/freebsd/contrib/kyua/utils/format/
H A Dformatter_test.cpp108 EQ("foo", F("%sfoo") % ""); in ATF_TEST_CASE_BODY()
130 EQ("%", F("%%")); in ATF_TEST_CASE_BODY()
131 EQ("% %", F("%% %%")); in ATF_TEST_CASE_BODY()
134 EQ("foo %", F("foo %%")); in ATF_TEST_CASE_BODY()
186 EQ("true", F("%s") % true); in ATF_TEST_CASE_BODY()
194 EQ("Z", F("%s") % 'Z'); in ATF_TEST_CASE_BODY()
201 EQ("3", F("%s") % 3.0); in ATF_TEST_CASE_BODY()
202 EQ("3.0", F("%.1s") % 3.0); in ATF_TEST_CASE_BODY()
212 EQ("3", F("%s") % 3); in ATF_TEST_CASE_BODY()
213 EQ("3", F("%0s") % 3); in ATF_TEST_CASE_BODY()
[all …]
/freebsd/contrib/bmake/filemon/
H A Dfilemon_ktrace.c203 F = calloc(1, sizeof *F); in filemon_open()
228 return F; in filemon_open()
373 free(F); in filemon_close()
522 nread = fread(F->p, 1, F->resid, F->in); in filemon_process()
549 F->p = (void *)&F->hdr; in filemon_process()
550 F->resid = sizeof F->hdr; in filemon_process()
555 (size_t)F->hdr.ktr_len > sizeof F->payload) { in filemon_process()
563 F->p = (void *)&F->payload; in filemon_process()
564 F->resid = (size_t)F->hdr.ktr_len; in filemon_process()
570 F->p = (void *)&F->hdr; in filemon_process()
[all …]
H A Dfilemon_dev.c67 struct filemon *F; in filemon_open() local
72 F = calloc(1, sizeof *F); in filemon_open()
73 if (F == NULL) in filemon_open()
85 return F; in filemon_open()
87 fail0: free(F); in filemon_open()
93 filemon_setfd(struct filemon *F, int fd) in filemon_setfd() argument
97 if (ioctl(F->fd, FILEMON_SET_FD, &fd) == -1) in filemon_setfd()
118 return ioctl(F->fd, FILEMON_SET_PID, &pid); in filemon_setpid_child()
122 filemon_close(struct filemon *F) in filemon_close() argument
127 if (close(F->fd) == -1 && error == 0) in filemon_close()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DFloating.h29 APFloat F;
34 Floating(const APFloat &F) : F(F) {} in Floating() argument
42 bool operator<(Floating RHS) const { return F < RHS.F; }
43 bool operator>(Floating RHS) const { return F > RHS.F; }
44 bool operator<=(Floating RHS) const { return F <= RHS.F; }
45 bool operator>=(Floating RHS) const { return F >= RHS.F; }
160 APFloat V = F.F; in abs()
171 return R->F.add(B.F, RM); in add()
184 return R->F.subtract(B.F, RM); in sub()
197 return R->F.multiply(B.F, RM); in mul()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp130 if (F.isDeclaration() || !F.hasLocalLinkage()) in deleteDeadVarargs()
175 F.getParent()->getFunctionList().insert(F.getIterator(), NF); in deleteDeadVarargs()
176 NF->takeName(&F); in deleteDeadVarargs()
237 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(), in deleteDeadVarargs()
282 if ((F.hasLocalLinkage() && !LiveFunctions.count(&F)) && in removeDeadArgumentsFromCallers()
439 if (F) { in surveyUse()
500 markLive(F); in surveyFunction()
508 markLive(F); in surveyFunction()
548 markLive(F); in surveyFunction()
568 markLive(F); in surveyFunction()
[all …]
H A DSCCP.cpp67 all_of(F.users(), in findReturnsToZap()
96 for (BasicBlock &BB : F) { in findReturnsToZap()
124 for (Function &F : M) { in runIPSCCP()
125 if (F.isDeclaration()) in runIPSCCP()
172 for (Function &F : M) { in runIPSCCP()
173 if (F.isDeclaration()) in runIPSCCP()
198 F.getContext(), in runIPSCCP()
202 F.setAttributes(UpdateAttrs(F.getAttributes())); in runIPSCCP()
215 for (BasicBlock &BB : F) { in runIPSCCP()
247 for (BasicBlock &BB : F) in runIPSCCP()
[all …]
H A DFunctionAttrs.cpp545 if (!F || !F->hasExactDefinition() || !SCCNodes.count(F)) { in captured()
888 if (F->onlyReadsMemory() && F->doesNotThrow() && in addArgumentAttrs()
1570 [](const Function &F) { return !F.isConvergent(); }, in inferConvergent() argument
1641 [](const Function &F) { return F.hasNoSync(); }, in inferAttrsFromFunctionBodies() argument
1667 if (!F || !F->hasExactDefinition() || F->doesNotRecurse()) in addNoRecurseAttrs()
1731 if (!F || !F->hasExactDefinition() || F->hasFnAttribute(Attribute::Naked) || in addNoReturnAttrs()
1750 if (F.mustProgress() && F.onlyReadsMemory()) in functionWillReturn()
1775 if (!F || F->willReturn() || !functionWillReturn(*F)) in addWillReturn()
1788 if (!F || F->hasOptNone() || F->hasFnAttribute(Attribute::Naked) || in createSCCNodeSet()
1852 if (F) in deriveAttrsInPostOrder()
[all …]
H A DElimAvailExtern.cpp42 void deleteFunction(Function &F) { in deleteFunction() argument
44 F.deleteBody(); in deleteFunction()
58 assert(!F.isDeclaration()); in convertToLocalCopy()
60 if (F.uses().end() == llvm::find_if(F.uses(), [&](Use &U) { in convertToLocalCopy()
63 return deleteFunction(F); in convertToLocalCopy()
72 F.setName(NewName); in convertToLocalCopy()
85 F.getAddressSpace(), OrigName, F.getParent()); in convertToLocalCopy()
86 F.replaceUsesWithIf(Decl, in convertToLocalCopy()
112 if (F.isDeclaration() || !F.hasAvailableExternallyLinkage()) in eliminateAvailableExternally()
116 convertToLocalCopy(M, F); in eliminateAvailableExternally()
[all …]
H A DAlwaysInliner.cpp41 for (Function &F : M) { in AlwaysInlineImpl()
46 if (F.isPresplitCoroutine()) in AlwaysInlineImpl()
49 if (!F.isDeclaration() && isInlineViable(F).isSuccess()) { in AlwaysInlineImpl()
52 for (User *U : F.users()) in AlwaysInlineImpl()
94 InlinedFunctions.push_back(&F); in AlwaysInlineImpl()
101 F->removeDeadConstantUsers(); in AlwaysInlineImpl()
102 return !F->isDefTriviallyDead(); in AlwaysInlineImpl()
107 InlinedFunctions, [&](Function *F) { return F->hasComdat(); }); in AlwaysInlineImpl() argument
109 M.getFunctionList().erase(F); in AlwaysInlineImpl()
120 M.getFunctionList().erase(F); in AlwaysInlineImpl()
[all …]
H A DMergeFunctions.cpp179 FunctionNode(Function *F) : F(F), Hash(StructuralHash(*F)) {} in FunctionNode() argument
187 F = G; in replaceBy()
402 return !F.isDeclaration() && !F.hasAvailableExternallyLinkage() && in isEligibleForMerging()
449 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage()) { in runOnModule()
650 if (F->isVarArg()) in canCreateThunkFor()
768 assert(F->hasLocalLinkage() || F->hasExternalLinkage() in canCreateAliasFor()
769 || F->hasWeakLinkage() || F->hasLinkOnceLinkage()); in canCreateAliasFor()
801 writeAlias(F, G); in writeThunkOrAlias()
805 writeThunk(F, G); in writeThunkOrAlias()
831 removeUsers(F); in mergeTwoFunctions()
[all …]
/freebsd/sbin/growfs/
H A Ddebug.h70 #define DBG_DUMP_HEX(F,C,M) dbg_dump_hex((F),(C),(M)) argument
71 #define DBG_DUMP_FS(F,C) dbg_dump_fs((F),(C)) argument
74 #define DBG_DUMP_INO(F,C,M) (F)->fs_magic == FS_UFS1_MAGIC \ argument
77 #define DBG_DUMP_IBLK(F,C,M,L) dbg_dump_iblk((F),(C),(M),(L)) argument
78 #define DBG_DUMP_INMAP(F,C,M) dbg_dump_inmap((F),(C),(M)) argument
79 #define DBG_DUMP_FRMAP(F,C,M) dbg_dump_frmap((F),(C),(M)) argument
80 #define DBG_DUMP_CLMAP(F,C,M) dbg_dump_clmap((F),(C),(M)) argument
81 #define DBG_DUMP_CLSUM(F,C,M) dbg_dump_clsum((F),(C),(M)) argument
83 #define DBG_DUMP_SPTBL(F,C,M) dbg_dump_sptbl((F),(C),(M)) argument
124 #define DBG_DUMP_FS(F,C) argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h98 AvailableArray[F/4] &= ~(3 << 2*(F&3)); in setState()
99 AvailableArray[F/4] |= State << 2*(F&3); in setState()
102 return static_cast<AvailabilityState>((AvailableArray[F/4] >> 2*(F&3)) & 3); in getState()
165 setState(F, Unavailable); in setUnavailable()
170 setState(F, StandardName); in setAvailable()
177 setState(F, CustomName); in setAvailableWithName()
295 if (!F)
388 return Impl->getState(F); in getState()
392 bool has(LibFunc F) const { in has() argument
415 switch (F) { in hasOptimizedCodeGen()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DPreISelIntrinsicLowering.cpp69 static bool lowerLoadRelative(Function &F) { in lowerLoadRelative() argument
70 if (F.use_empty()) in lowerLoadRelative()
78 if (!CI || CI->getCalledOperand() != &F) in lowerLoadRelative()
111 if (F.use_empty()) in lowerObjCCall()
116 Module *M = F.getParent(); in lowerObjCCall()
120 Fn->setLinkage(F.getLinkage()); in lowerObjCCall()
133 if (CB->getCalledFunction() != &F) { in lowerObjCCall()
209 Intrinsic::ID ID = F.getIntrinsicID(); in expandMemIntrinsicUses()
276 for (Function &F : M) { in lowerIntrinsics()
277 switch (F.getIntrinsicID()) { in lowerIntrinsics()
[all …]
H A DGCMetadata.cpp29 for (const auto &F : M) { in invalidate() local
30 if (F.isDeclaration() || !F.hasGC()) in invalidate()
32 if (!StrategyMap.contains(F.getGC())) in invalidate()
44 for (auto &F : M) { in run() local
45 if (F.isDeclaration() || !F.hasGC()) in run()
67 GCFunctionInfo Info(F, *Map[F.getGC()]); in run()
77 : F(F), S(S), FrameSize(~0LL) {} in GCFunctionInfo()
97 assert(F.hasGC()); in getFunctionInfo()
99 finfo_map_type::iterator I = FInfoMap.find(&F); in getFunctionInfo()
103 GCStrategy *S = getGCStrategy(F.getGC()); in getFunctionInfo()
[all …]
/freebsd/contrib/arm-optimized-routines/math/test/
H A Dmathbench_funcs.h21 F (expf, -9.9, 9.9)
22 F (exp2f, -9.9, 9.9)
23 F (logf, 0.01, 11.1)
27 F (ypowf, -9.9, 9.9)
34 F (sinf, 0.1, 0.7)
35 F (sinf, 0.8, 3.1)
36 F (sinf, -3.1, 3.1)
37 F (sinf, 3.3, 33.3)
38 F (sinf, 100, 1000)
40 F (cosf, 0.1, 0.7)
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVPrepareFunctions.cpp82 if (F && F->getFunctionType() == FT) in getOrCreateFunction()
83 return F; in getOrCreateFunction()
85 if (F) in getOrCreateFunction()
106 if (F) { in lowerIntrinsicToFunction()
324 std::any_of(F->arg_begin(), F->arg_end(), [](Argument &Arg) { in removeAggregateTypesFromSignature()
329 return F; in removeAggregateTypesFromSignature()
346 Function::Create(NewFTy, F->getLinkage(), F->getName(), *F->getParent()); in removeAggregateTypesFromSignature()
359 NewF->takeName(F); in removeAggregateTypesFromSignature()
383 for (Function &F : M) in runOnModule()
387 for (auto &F : M) in runOnModule() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCFGPrinter.cpp70 DOTFuncInfo CFGInfo(&F, BFI, BPI, MaxFreq); in writeCFGToDotFile()
85 DOTFuncInfo CFGInfo(&F, BFI, BPI, MaxFreq); in viewCFG()
90 ViewGraph(&CFGInfo, "cfg." + F.getName(), CFGOnly); in viewCFG()
98 viewCFG(F, BFI, BPI, getMaxFreq(F, BFI)); in run()
102 PreservedAnalyses CFGOnlyViewerPass::run(Function &F, in run() argument
108 viewCFG(F, BFI, BPI, getMaxFreq(F, BFI), /*CFGOnly=*/true); in run()
112 PreservedAnalyses CFGPrinterPass::run(Function &F, in run() argument
118 writeCFGToDotFile(F, BFI, BPI, getMaxFreq(F, BFI)); in run()
122 PreservedAnalyses CFGOnlyPrinterPass::run(Function &F, in run() argument
128 writeCFGToDotFile(F, BFI, BPI, getMaxFreq(F, BFI), /*CFGOnly=*/true); in run()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstIterator.h131 inline inst_iterator inst_begin(Function *F) { return inst_iterator(*F); } in inst_begin() argument
132 inline inst_iterator inst_end(Function *F) { return inst_iterator(*F, true); } in inst_end() argument
134 return inst_range(inst_begin(F), inst_end(F)); in instructions()
137 return const_inst_iterator(*F); in inst_begin()
143 return const_inst_range(inst_begin(F), inst_end(F)); in instructions()
145 inline inst_iterator inst_begin(Function &F) { return inst_iterator(F); } in inst_begin() argument
146 inline inst_iterator inst_end(Function &F) { return inst_iterator(F, true); } in inst_end() argument
148 return inst_range(inst_begin(F), inst_end(F)); in instructions()
151 return const_inst_iterator(F); in inst_begin()
154 return const_inst_iterator(F, true); in inst_end()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64MachineFunctionInfo.cpp44 if (!F.hasFnAttribute("sign-return-address")) { in GetSignReturnAddress()
45 const Module &M = *F.getParent(); in GetSignReturnAddress()
70 if (!F.hasFnAttribute("sign-return-address-key")) { in ShouldSignWithBKey()
89 if (F.hasFnAttribute(Attribute::NoRedZone)) in AArch64FunctionInfo()
92 SignWithBKey = ShouldSignWithBKey(F, *STI); in AArch64FunctionInfo()
102 if (F.hasFnAttribute(AttrName)) { in AArch64FunctionInfo()
119 if (F.hasFnAttribute("stack-probe-size")) in AArch64FunctionInfo()
127 if (!F.hasFnAttribute("no-stack-arg-probe")) in AArch64FunctionInfo()
135 if (F.hasFnAttribute("probe-stack")) in AArch64FunctionInfo()
198 const Function &F = MF.getFunction(); in needsAsyncDwarfUnwindInfo() local
[all …]
/freebsd/contrib/bc/tests/bc/
H A Dlib2_results.txt257 F
271 7F
273 7F
287 FF 7F
301 7F FF
303 7F FF
414 7F
416 7F
420 00 7F
422 00 7F
[all …]
/freebsd/crypto/openssl/crypto/sm3/
H A Dsm3.c23 c->F = SM3_F; in ossl_sm3_init()
32 register unsigned MD32_REG_T A, B, C, D, E, F, G, H; in ossl_sm3_block_data_order() local
44 F = ctx->F; in ossl_sm3_block_data_order()
69 R1(A, B, C, D, E, F, G, H, 0x79CC4519, W00, W00 ^ W04); in ossl_sm3_block_data_order()
71 R1(D, A, B, C, H, E, F, G, 0xF3988A32, W01, W01 ^ W05); in ossl_sm3_block_data_order()
73 R1(C, D, A, B, G, H, E, F, 0xE7311465, W02, W02 ^ W06); in ossl_sm3_block_data_order()
75 R1(B, C, D, A, F, G, H, E, 0xCE6228CB, W03, W03 ^ W07); in ossl_sm3_block_data_order()
77 R1(A, B, C, D, E, F, G, H, 0x9CC45197, W04, W04 ^ W08); in ossl_sm3_block_data_order()
79 R1(D, A, B, C, H, E, F, G, 0x3988A32F, W05, W05 ^ W09); in ossl_sm3_block_data_order()
81 R1(C, D, A, B, G, H, E, F, 0x7311465E, W06, W06 ^ W10); in ossl_sm3_block_data_order()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixFunctionBitcasts.cpp66 static void findUses(Value *V, Function &F, in findUses() argument
70 findUses(BC, F, Uses); in findUses()
72 findUses(A, F, Uses); in findUses()
81 Uses.push_back(std::make_pair(CB, &F)); in findUses()
110 Module *M = F->getParent(); in createWrapper()
164 if (F->isVarArg()) in createWrapper()
236 for (Function &F : M) { in runOnModule()
241 findUses(&F, F, Uses); in runOnModule()
247 if (F.getName() == "main") { in runOnModule()
248 Main = &F; in runOnModule()
[all …]
/freebsd/crypto/openssl/crypto/sha/asm/
H A Dsha1-c64xplus.pl102 || AND $C,$B,$F
106 XOR $F0,$F,$F ; F_00_19(B,C,D)
124 || AND $C,$B,$F
128 XOR $F0,$F,$F ; F_00_19(B,C,D)
150 || AND $C,$B,$F
154 XOR $F0,$F,$F ; F_00_19(B,C,D)
187 XOR $F0,$F,$F ; F_00_19(B,C,D)
224 XOR $D,$F,$F ; F_20_39(B,C,D)
259 || XOR $F0,$F,$F
264 XOR $F0,$F,$F ; F_40_59(B,C,D)
[all …]

12345678910>>...117