Home
last modified time | relevance | path

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

12345678910>>...120

/freebsd-14-stable/sys/dev/kbd/
HDkbdtables.h104 /*3b*/{{ F( 1), F(13), F(25), F(37), S( 1), S(11), S( 1), S(11),}, 0xFF,0x00 },
105 /*3c*/{{ F( 2), F(14), F(26), F(38), S( 2), S(12), S( 2), S(12),}, 0xFF,0x00 },
106 /*3d*/{{ F( 3), F(15), F(27), F(39), S( 3), S(13), S( 3), S(13),}, 0xFF,0x00 },
107 /*3e*/{{ F( 4), F(16), F(28), F(40), S( 4), S(14), S( 4), S(14),}, 0xFF,0x00 },
108 /*3f*/{{ F( 5), F(17), F(29), F(41), S( 5), S(15), S( 5), S(15),}, 0xFF,0x00 },
109 /*40*/{{ F( 6), F(18), F(30), F(42), S( 6), S(16), S( 6), S(16),}, 0xFF,0x00 },
110 /*41*/{{ F( 7), F(19), F(31), F(43), S( 7), S( 7), S( 7), S( 7),}, 0xFF,0x00 },
111 /*42*/{{ F( 8), F(20), F(32), F(44), S( 8), S( 8), S( 8), S( 8),}, 0xFF,0x00 },
112 /*43*/{{ F( 9), F(21), F(33), F(45), S( 9), S( 9), S( 9), S( 9),}, 0xFF,0x00 },
113 /*44*/{{ F(10), F(22), F(34), F(46), S(10), S(10), S(10), S(10),}, 0xFF,0x00 },
[all …]
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
HDBuildLibCalls.cpp52 static bool setDoesNotAccessMemory(Function &F) { in setDoesNotAccessMemory() argument
53 if (F.doesNotAccessMemory()) in setDoesNotAccessMemory()
55 F.setDoesNotAccessMemory(); in setDoesNotAccessMemory()
60 static bool setOnlyAccessesInaccessibleMemory(Function &F) { in setOnlyAccessesInaccessibleMemory() argument
61 if (F.onlyAccessesInaccessibleMemory()) in setOnlyAccessesInaccessibleMemory()
63 F.setOnlyAccessesInaccessibleMemory(); in setOnlyAccessesInaccessibleMemory()
68 static bool setOnlyReadsMemory(Function &F) { in setOnlyReadsMemory() argument
69 if (F.onlyReadsMemory()) in setOnlyReadsMemory()
71 F.setOnlyReadsMemory(); in setOnlyReadsMemory()
76 static bool setOnlyWritesMemory(Function &F) { in setOnlyWritesMemory() argument
[all …]
/freebsd-14-stable/contrib/kyua/utils/format/
HDformatter_test.cpp101 EQ("Plain string", F("Plain string")); in ATF_TEST_CASE_BODY()
108 EQ("foo", F("%sfoo") % ""); in ATF_TEST_CASE_BODY()
109 EQ(" foo", F("%sfoo") % " "); in ATF_TEST_CASE_BODY()
110 EQ("foo ", F("foo %s") % ""); in ATF_TEST_CASE_BODY()
111 EQ("foo bar", F("foo %s") % "bar"); in ATF_TEST_CASE_BODY()
112 EQ("foo bar baz", F("foo %s baz") % "bar"); in ATF_TEST_CASE_BODY()
113 EQ("foo %s %s", F("foo %s %s") % "%s" % "%s"); in ATF_TEST_CASE_BODY()
120 EQ("", F("%s%s") % "" % ""); in ATF_TEST_CASE_BODY()
121 EQ("foo", F("%s%s%s") % "" % "foo" % ""); in ATF_TEST_CASE_BODY()
122 EQ("some 5 text", F("%s %s %s") % "some" % 5 % "text"); in ATF_TEST_CASE_BODY()
[all …]
/freebsd-14-stable/contrib/bmake/filemon/
HDfilemon_ktrace.c198 struct filemon *F; in filemon_open() local
203 F = calloc(1, sizeof *F); in filemon_open()
204 if (F == NULL) in filemon_open()
214 if ((F->in = fdopen(ktrpipe[0], "r")) == NULL) { in filemon_open()
224 F->ktrfd = ktrpipe[1]; in filemon_open()
225 rb_tree_init(&F->active, &filemon_rb_ops); in filemon_open()
228 return F; in filemon_open()
232 fail0: free(F); in filemon_open()
246 filemon_closefd(struct filemon *F) in filemon_closefd() argument
251 if (F->out == NULL) in filemon_closefd()
[all …]
HDfilemon_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()
77 for (i = 0; (F->fd = open(_PATH_FILEMON, O_RDWR|O_CLOEXEC)) == -1; i++) { 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()
108 filemon_setpid_parent(struct filemon *F MAKE_ATTR_UNUSED, pid_t pid MAKE_ATTR_UNUSED) in filemon_setpid_parent()
114 filemon_setpid_child(const struct filemon *F, pid_t pid) in filemon_setpid_child() argument
[all …]
/freebsd-14-stable/contrib/llvm-project/clang/lib/AST/Interp/
HDFloating.h29 APFloat F;
33 Floating() : F(0.0f) {} in Floating()
34 Floating(const APFloat &F) : F(F) {} in Floating() argument
40 const APFloat &getAPFloat() const { return F; } in getAPFloat()
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; }
46 bool operator==(Floating RHS) const { return F == RHS.F; }
47 bool operator!=(Floating RHS) const { return F != RHS.F; }
[all …]
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
HDSCCP.cpp50 static void findReturnsToZap(Function &F, in findReturnsToZap() argument
54 if (!Solver.isArgumentTrackedFunction(&F)) in findReturnsToZap()
57 if (Solver.mustPreserveReturn(&F)) { in findReturnsToZap()
60 << "Can't zap returns of the function : " << F.getName() in findReturnsToZap()
67 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()
128 DominatorTree &DT = GetDT(F); in runIPSCCP()
129 AssumptionCache &AC = GetAC(F); in runIPSCCP()
[all …]
HDDeadArgumentElimination.cpp128 bool DeadArgumentEliminationPass::deleteDeadVarargs(Function &F) { in deleteDeadVarargs() argument
129 assert(F.getFunctionType()->isVarArg() && "Function isn't varargs!"); in deleteDeadVarargs()
130 if (F.isDeclaration() || !F.hasLocalLinkage()) in deleteDeadVarargs()
134 if (F.hasAddressTaken()) in deleteDeadVarargs()
140 if (F.hasFnAttribute(Attribute::Naked)) { in deleteDeadVarargs()
146 for (BasicBlock &BB : F) { in deleteDeadVarargs()
165 FunctionType *FTy = F.getFunctionType(); in deleteDeadVarargs()
172 Function *NF = Function::Create(NFTy, F.getLinkage(), F.getAddressSpace()); in deleteDeadVarargs()
173 NF->copyAttributesFrom(&F); in deleteDeadVarargs()
174 NF->setComdat(F.getComdat()); in deleteDeadVarargs()
[all …]
HDFunctionAttrs.cpp160 checkFunctionMemoryAccess(Function &F, bool ThisBody, AAResults &AAR, in checkFunctionMemoryAccess() argument
162 MemoryEffects OrigME = AAR.getMemoryEffects(&F); in checkFunctionMemoryAccess()
175 if (F.getAttributes().hasAttrSomewhere(Attribute::InAlloca) || in checkFunctionMemoryAccess()
176 F.getAttributes().hasAttrSomewhere(Attribute::Preallocated)) in checkFunctionMemoryAccess()
180 for (Instruction &I : instructions(F)) { in checkFunctionMemoryAccess()
252 MemoryEffects llvm::computeFunctionBodyMemoryAccess(Function &F, in computeFunctionBodyMemoryAccess() argument
254 return checkFunctionMemoryAccess(F, /*ThisBody=*/true, AAR, {}).first; in computeFunctionBodyMemoryAccess()
263 for (Function *F : SCCNodes) { in addMemoryAttrs()
265 AAResults &AAR = AARGetter(*F); in addMemoryAttrs()
270 checkFunctionMemoryAccess(*F, F->hasExactDefinition(), AAR, SCCNodes); in addMemoryAttrs()
[all …]
HDElimAvailExtern.cpp42 void deleteFunction(Function &F) { in deleteFunction() argument
44 F.deleteBody(); in deleteFunction()
56 static void convertToLocalCopy(Module &M, Function &F) { in convertToLocalCopy() argument
57 assert(F.hasAvailableExternallyLinkage()); in convertToLocalCopy()
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()
65 auto OrigName = F.getName().str(); in convertToLocalCopy()
72 F.setName(NewName); in convertToLocalCopy()
73 if (auto *SP = F.getSubprogram()) in convertToLocalCopy()
[all …]
HDAlwaysInliner.cpp42 for (Function &F : make_early_inc_range(M)) { in AlwaysInlineImpl()
43 if (F.isPresplitCoroutine()) in AlwaysInlineImpl()
46 if (F.isDeclaration() || !isInlineViable(F).isSuccess()) in AlwaysInlineImpl()
51 for (User *U : F.users()) in AlwaysInlineImpl()
53 if (CB->getCalledFunction() == &F && in AlwaysInlineImpl()
66 GetBFI ? &GetBFI(F) : nullptr); in AlwaysInlineImpl()
69 &GetAAR(F), InsertLifetime); in AlwaysInlineImpl()
73 << "'" << ore::NV("Callee", &F) << "' is not inlined into '" in AlwaysInlineImpl()
81 ORE, DLoc, Block, F, *Caller, in AlwaysInlineImpl()
88 F.removeDeadConstantUsers(); in AlwaysInlineImpl()
[all …]
HDMergeFunctions.cpp174 mutable AssertingVH<Function> F; member in __anon553868080111::FunctionNode
179 FunctionNode(Function *F) : F(F), Hash(StructuralHash(*F)) {} in FunctionNode() argument
181 Function *getFunc() const { return F; } in getFunc()
187 F = G; in replaceBy()
242 void remove(Function *F);
255 void mergeTwoFunctions(Function *F, Function *G);
279 void writeThunk(Function *F, Function *G);
282 void writeAlias(Function *F, Function *G);
286 bool writeThunkOrAlias(Function *F, Function *G);
388 static bool hasDistinctMetadataIntrinsic(const Function &F) { in hasDistinctMetadataIntrinsic() argument
[all …]
/freebsd-14-stable/sbin/growfs/
HDdebug.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
72 #define DBG_DUMP_CG(F,C,M) dbg_dump_cg((C),(M)) argument
73 #define DBG_DUMP_CSUM(F,C,M) dbg_dump_csum((C),(M)) argument
74 #define DBG_DUMP_INO(F,C,M) (F)->fs_magic == FS_UFS1_MAGIC \ argument
75 ? dbg_dump_ufs1_ino((F),(C),(struct ufs1_dinode *)(M)) \
76 : dbg_dump_ufs2_ino((F),(C),(struct ufs2_dinode *)(M))
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
[all …]
/freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
HDTargetLibraryInfo.h97 void setState(LibFunc F, AvailabilityState State) { in setState() argument
98 AvailableArray[F/4] &= ~(3 << 2*(F&3)); in setState()
99 AvailableArray[F/4] |= State << 2*(F&3); in setState()
101 AvailabilityState getState(LibFunc F) const { in getState() argument
102 return static_cast<AvailabilityState>((AvailableArray[F/4] >> 2*(F&3)) & 3); in getState()
113 bool isValidProtoForLibFunc(const FunctionType &FTy, LibFunc F,
149 bool getLibFunc(StringRef funcName, LibFunc &F) const;
158 bool getLibFunc(const Function &FDecl, LibFunc &F) const;
162 bool getLibFunc(unsigned int Opcode, Type *Ty, LibFunc &F) const;
165 void setUnavailable(LibFunc F) { in setUnavailable() argument
[all …]
/freebsd-14-stable/contrib/llvm-project/llvm/lib/CodeGen/
HDPreISelIntrinsicLowering.cpp63 bool expandMemIntrinsicUses(Function &F) const;
69 static bool lowerLoadRelative(Function &F) { in lowerLoadRelative() argument
70 if (F.use_empty()) in lowerLoadRelative()
74 Type *Int32Ty = Type::getInt32Ty(F.getContext()); in lowerLoadRelative()
76 for (Use &U : llvm::make_early_inc_range(F.uses())) { in lowerLoadRelative()
78 if (!CI || CI->getCalledOperand() != &F) in lowerLoadRelative()
98 static CallInst::TailCallKind getOverridingTailCallKind(const Function &F) { in getOverridingTailCallKind() argument
99 objcarc::ARCInstKind Kind = objcarc::GetFunctionClass(&F); in getOverridingTailCallKind()
107 static bool lowerObjCCall(Function &F, const char *NewFn, in lowerObjCCall() argument
109 assert(IntrinsicInst::mayLowerToFunctionCall(F.getIntrinsicID()) && in lowerObjCCall()
[all …]
HDGCMetadata.cpp30 for (const auto &F : M) { in invalidate() local
31 if (F.isDeclaration() || !F.hasGC()) in invalidate()
33 if (!StrategyMap.contains(F.getGC())) in invalidate()
45 for (auto &F : M) { in run() local
46 if (F.isDeclaration() || !F.hasGC()) in run()
48 if (auto GCName = F.getGC(); !Map.contains(GCName)) in run()
57 GCFunctionAnalysis::run(Function &F, FunctionAnalysisManager &FAM) { in run() argument
58 assert(!F.isDeclaration() && "Can only get GCFunctionInfo for a definition!"); in run()
59 assert(F.hasGC() && "Function doesn't have GC!"); in run()
61 auto &MAMProxy = FAM.getResult<ModuleAnalysisManagerFunctionProxy>(F); in run()
[all …]
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Analysis/
HDCFGPrinter.cpp60 static void writeCFGToDotFile(Function &F, BlockFrequencyInfo *BFI, in writeCFGToDotFile() argument
64 (CFGDotFilenamePrefix + "." + F.getName() + ".dot").str(); in writeCFGToDotFile()
70 DOTFuncInfo CFGInfo(&F, BFI, BPI, MaxFreq); in writeCFGToDotFile()
82 static void viewCFG(Function &F, const BlockFrequencyInfo *BFI, in viewCFG() argument
85 DOTFuncInfo CFGInfo(&F, BFI, BPI, MaxFreq); in viewCFG()
90 ViewGraph(&CFGInfo, "cfg." + F.getName(), CFGOnly); in viewCFG()
93 PreservedAnalyses CFGViewerPass::run(Function &F, FunctionAnalysisManager &AM) { in run() argument
94 if (!CFGFuncName.empty() && !F.getName().contains(CFGFuncName)) in run()
96 auto *BFI = &AM.getResult<BlockFrequencyAnalysis>(F); in run()
97 auto *BPI = &AM.getResult<BranchProbabilityAnalysis>(F); in run()
[all …]
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
HDAArch64MachineFunctionInfo.cpp40 static std::pair<bool, bool> GetSignReturnAddress(const Function &F) { in GetSignReturnAddress() argument
41 if (F.hasFnAttribute("ptrauth-returns")) in GetSignReturnAddress()
46 if (!F.hasFnAttribute("sign-return-address")) in GetSignReturnAddress()
49 StringRef Scope = F.getFnAttribute("sign-return-address").getValueAsString(); in GetSignReturnAddress()
60 static bool ShouldSignWithBKey(const Function &F, const AArch64Subtarget &STI) { in ShouldSignWithBKey() argument
61 if (F.hasFnAttribute("ptrauth-returns")) in ShouldSignWithBKey()
63 if (!F.hasFnAttribute("sign-return-address-key")) { in ShouldSignWithBKey()
70 F.getFnAttribute("sign-return-address-key").getValueAsString(); in ShouldSignWithBKey()
75 AArch64FunctionInfo::AArch64FunctionInfo(const Function &F, in AArch64FunctionInfo() argument
79 if (F.hasFnAttribute(Attribute::NoRedZone)) in AArch64FunctionInfo()
[all …]
/freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/IR/
HDInstIterator.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
133 inline inst_range instructions(Function *F) { in instructions() argument
134 return inst_range(inst_begin(F), inst_end(F)); in instructions()
136 inline const_inst_iterator inst_begin(const Function *F) { in inst_begin() argument
137 return const_inst_iterator(*F); in inst_begin()
139 inline const_inst_iterator inst_end(const Function *F) { in inst_end() argument
140 return const_inst_iterator(*F, true); in inst_end()
142 inline const_inst_range instructions(const Function *F) { in instructions() argument
143 return const_inst_range(inst_begin(F), inst_end(F)); in instructions()
[all …]
/freebsd-14-stable/contrib/bc/tests/bc/
HDlib2_results.txt257 F
271 7F
273 7F
287 FF 7F
301 7F FF
303 7F FF
317 FF FF 7F FF
331 7F FF FF FF
333 7F FF FF FF
350 FF FF FF FF 7F FF FF FF
[all …]
/freebsd-14-stable/crypto/openssl/crypto/sm3/
HDsm3.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-14-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
HDWebAssemblyFixFunctionBitcasts.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()
78 if (CB->getFunctionType() == F.getValueType()) in findUses()
81 Uses.push_back(std::make_pair(CB, &F)); in findUses()
109 static Function *createWrapper(Function *F, FunctionType *Ty) { in createWrapper() argument
110 Module *M = F->getParent(); in createWrapper()
113 F->getName() + "_bitcast", M); in createWrapper()
121 FunctionType::param_iterator PI = F->getFunctionType()->param_begin(); in createWrapper()
122 FunctionType::param_iterator PE = F->getFunctionType()->param_end(); in createWrapper()
[all …]
/freebsd-14-stable/crypto/openssl/crypto/sha/asm/
HDsha1-c64xplus.pl39 ($A,$B,$C,$D,$E, $Arot,$F,$F0,$T,$K) = map("A$_",(16..20, 21..25));
102 || AND $C,$B,$F
106 XOR $F0,$F,$F ; F_00_19(B,C,D)
112 ADD $F,$T,$T ; T+=F_00_19(B,C,D)
124 || AND $C,$B,$F
128 XOR $F0,$F,$F ; F_00_19(B,C,D)
134 ADD $F,$T,$T ; T+=F_00_19(B,C,D)
150 || AND $C,$B,$F
154 XOR $F0,$F,$F ; F_00_19(B,C,D)
159 ADD $F,$T,$T ; T+=F_00_19(B,C,D)
[all …]
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
HDValueEnumerator.cpp116 for (const Function &F : reverse(M)) in orderModule() local
117 orderValue(&F, OM); in orderModule()
125 for (const Function &F : M) { in orderModule() local
126 if (F.isDeclaration()) in orderModule()
131 for (const BasicBlock &BB : F) in orderModule()
136 for (const BasicBlock &BB : F) in orderModule()
159 for (const Argument &A : F.args()) in orderModule()
161 for (const BasicBlock &BB : F) in orderModule()
173 static void predictValueUseListOrderImpl(const Value *V, const Function *F, in predictValueUseListOrderImpl() argument
225 Stack.emplace_back(V, F, List.size()); in predictValueUseListOrderImpl()
[all …]
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
HDDXILValueEnumerator.cpp125 for (const Function &F : M) { in orderModule() local
126 for (const Use &U : F.operands()) in orderModule()
140 for (const Function &F : M) { in orderModule() local
141 if (F.isDeclaration()) in orderModule()
143 for (const BasicBlock &BB : F) in orderModule()
168 for (const Function &F : M) in orderModule() local
169 orderValue(&F, OM); in orderModule()
178 for (const Function &F : M) { in orderModule() local
179 if (F.isDeclaration()) in orderModule()
184 for (const BasicBlock &BB : F) in orderModule()
[all …]

12345678910>>...120