Home
last modified time | relevance | path

Searched refs:Functions (Results 1 – 25 of 368) sorted by relevance

12345678910>>...15

/openbsd-src/gnu/usr.bin/perl/ext/Pod-Functions/t/
H A DFunctions.t11 use_ok( 'Pod::Functions' );
15 my( $pkg_ref, $exp_ref ) = ( \%Pod::Functions::Kinds, \%Kinds );
16 is( $pkg_ref, $exp_ref, '%Pod::Functions::Kinds exported' );
18 ( $pkg_ref, $exp_ref ) = ( \%Pod::Functions::Type, \%Type );
19 is( $pkg_ref, $exp_ref, '%Pod::Functions::Type exported' );
21 ( $pkg_ref, $exp_ref ) = ( \%Pod::Functions::Flavor, \%Flavor );
22 is( $pkg_ref, $exp_ref, '%Pod::Functions::Flavor exported' );
24 ( $pkg_ref, $exp_ref ) = ( \%Pod::Functions::Type_Description,
26 is( $pkg_ref, $exp_ref, '%Pod::Functions::Type_Description exported' );
28 ( $pkg_ref, $exp_ref ) = ( \@Pod::Functions
[all...]
/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.h50 size_t NumCoveredFunctions() const { return Functions.size(); } in NumCoveredFunctions()
53 auto It = Functions.find(FunctionId); in GetCounter()
54 if (It == Functions.end()) in GetCounter()
63 auto It = Functions.find(FunctionId); in GetNumberOfBlocks()
64 if (It == Functions.end()) return 0; in GetNumberOfBlocks()
70 auto It = Functions.find(FunctionId); in GetNumberOfCoveredBlocks()
71 if (It == Functions.end()) return 0; in GetNumberOfCoveredBlocks()
81 void clear() { Functions.clear(); } in clear()
111 std::unordered_map<size_t, CoverageVector> Functions; variable
H A DFuzzerDataFlowTrace.cpp68 auto It = Functions.find(FunctionId); in AppendCoverage()
70 It == Functions.end() in AppendCoverage()
71 ? Functions.insert({FunctionId, std::vector<uint32_t>(NumBlocks)}) in AppendCoverage()
91 for (auto It : Functions) { in FunctionWeights()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DSVEIntrinsicOpts.cpp57 bool optimizePTrueIntrinsicCalls(SmallSetVector<Function *, 4> &Functions);
61 bool optimizeInstructions(SmallSetVector<Function *, 4> &Functions);
65 bool optimizeFunctions(SmallSetVector<Function *, 4> &Functions);
245 SmallSetVector<Function *, 4> &Functions) { in optimizePTrueIntrinsicCalls() argument
248 for (auto *F : Functions) { in optimizePTrueIntrinsicCalls()
404 SmallSetVector<Function *, 4> &Functions) { in optimizeInstructions() argument
407 for (auto *F : Functions) { in optimizeInstructions()
432 SmallSetVector<Function *, 4> &Functions) { in optimizeFunctions() argument
435 Changed |= optimizePTrueIntrinsicCalls(Functions); in optimizeFunctions()
436 Changed |= optimizeInstructions(Functions); in optimizeFunctions()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp336 SimpleBindingMemoryManager(const SimpleBindingMMFunctions& Functions,
351 SimpleBindingMMFunctions Functions; member in __anone9c9ed580111::SimpleBindingMemoryManager
356 const SimpleBindingMMFunctions& Functions, in SimpleBindingMemoryManager() argument
358 : Functions(Functions), Opaque(Opaque) { in SimpleBindingMemoryManager()
359 assert(Functions.AllocateCodeSection && in SimpleBindingMemoryManager()
361 assert(Functions.AllocateDataSection && in SimpleBindingMemoryManager()
363 assert(Functions.FinalizeMemory && in SimpleBindingMemoryManager()
365 assert(Functions.Destroy && in SimpleBindingMemoryManager()
370 Functions.Destroy(Opaque); in ~SimpleBindingMemoryManager()
376 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID, in allocateCodeSection()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DCalledValuePropagation.cpp75 CVPLatticeVal(std::vector<Function *> &&Functions) in CVPLatticeVal() argument
76 : LatticeState(FunctionSet), Functions(std::move(Functions)) { in CVPLatticeVal()
77 assert(llvm::is_sorted(this->Functions, Compare())); in CVPLatticeVal()
83 return Functions; in getFunctions()
90 return LatticeState == RHS.LatticeState && Functions == RHS.Functions; in operator ==()
94 return LatticeState != RHS.LatticeState || Functions != RHS.Functions; in operator !=()
108 std::vector<Function *> Functions; member in __anon2b7e60c20111::CVPLatticeVal
H A DAttributor.cpp1368 if (!Functions.count(IRP.getAnchorScope())) in isAssumedDead()
2043 if (IterationCounter > MaxIterations && !Functions.empty()) { in runTillFixpoint()
2048 Function *F = Functions.front(); in runTillFixpoint()
2187 : getInfoCache().getTargetLibraryInfoForFunction(*Functions.back()); in identifyDeadInternalFunctions()
2196 for (Function *F : Functions) in identifyDeadInternalFunctions()
2214 (Functions.count(Callee) && Callee->hasLocalLinkage() && in identifyDeadInternalFunctions()
2426 if (!ToBeDeletedFunctions.count(Fn) && Functions.count(Fn)) in cleanupIR()
2430 if (!Functions.count(Fn)) in cleanupIR()
2462 for (Function *F : Functions) { in cleanupIR()
2803 if (!Functions.count(OldFn) || ToBeDeletedFunctions.count(OldFn)) in rewriteFunctionSignatures()
[all …]
H A DLowerTypeTests.cpp491 ArrayRef<GlobalTypeMember *> Functions);
493 ArrayRef<GlobalTypeMember *> Functions);
495 ArrayRef<GlobalTypeMember *> Functions);
507 void createJumpTable(Function *F, ArrayRef<GlobalTypeMember *> Functions);
1262 ArrayRef<Metadata *> TypeIds, ArrayRef<GlobalTypeMember *> Functions) { in buildBitSetsFromFunctions() argument
1266 buildBitSetsFromFunctionsNative(TypeIds, Functions); in buildBitSetsFromFunctions()
1268 buildBitSetsFromFunctionsWASM(TypeIds, Functions); in buildBitSetsFromFunctions()
1356 selectJumpTableArmEncoding(ArrayRef<GlobalTypeMember *> Functions, in selectJumpTableArmEncoding() argument
1362 for (const auto GTM : Functions) { in selectJumpTableArmEncoding()
1378 Function *F, ArrayRef<GlobalTypeMember *> Functions) { in createJumpTable() argument
[all …]
H A DBlockExtractor.cpp132 SmallVector<Function *, 4> Functions; in runOnModule() local
135 Functions.push_back(&F); in runOnModule()
186 for (Function *F : Functions) { in runOnModule()
/openbsd-src/gnu/usr.bin/perl/ext/Pod-Functions/
H A DMakefile.PL5 use File::Spec::Functions;
28 all :: Functions.pm
31 Functions.pm :: Functions_pm.PL $pf
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DStackSafetyAnalysis.cpp557 FunctionMap Functions; member in __anonc76328400211::StackSafetyDataFlowAnalysis
567 updateOneNode(Callee, Functions.find(Callee)->second); in updateOneNode()
570 for (auto &F : Functions) in updateAllNodes()
579 StackSafetyDataFlowAnalysis(uint32_t PointerBitWidth, FunctionMap Functions) in StackSafetyDataFlowAnalysis() argument
580 : Functions(std::move(Functions)), in StackSafetyDataFlowAnalysis()
593 auto FnIt = Functions.find(Callee); in getArgumentAccessRange()
595 if (FnIt == Functions.end()) in getArgumentAccessRange()
653 for (auto &F : Functions) { in runDataFlow()
689 return Functions; in run()
806 std::map<const GlobalValue *, FunctionInfo<GlobalValue>> Functions, in createGlobalStackSafetyInfo() argument
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/dfsan/
H A Ddone_abilist.txt63 # Functions of memory allocators
81 # Functions that return a value that depends on the input, but the output might
93 # Functions that return a value that is data-dependent on the input.
139 # Functions that produce an output that does not depend on the input (shadow is
227 # Functions that produce output does not depend on the input (need to zero the
254 # Functions that produce an output that depend on the input (propagate the
272 # Functions that produce an output that is computed from the input, but is not
287 # Functions which take action based on global state, such as running a callback
291 # Functions that take a callback (wrap the callback manually).
369 # Functions that take a callback (wrap the callback manually).
[all …]
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCCodeView.cpp80 if (FuncId >= Functions.size()) in getCVFunctionInfo()
82 if (Functions[FuncId].isUnallocatedFunctionInfo()) in getCVFunctionInfo()
84 return &Functions[FuncId]; in getCVFunctionInfo()
88 if (FuncId >= Functions.size()) in recordFunctionId()
89 Functions.resize(FuncId + 1); in recordFunctionId()
92 if (!Functions[FuncId].isUnallocatedFunctionInfo()) in recordFunctionId()
96 Functions[FuncId].ParentFuncIdPlusOne = MCCVFunctionInfo::FunctionSentinel; in recordFunctionId()
103 if (FuncId >= Functions.size()) in recordInlinedCallSiteId()
104 Functions.resize(FuncId + 1); in recordInlinedCallSiteId()
107 if (!Functions[FuncId].isUnallocatedFunctionInfo()) in recordInlinedCallSiteId()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DVecFuncs.def28 // Accelerate framework's Vector Functions
30 // Floating-Point Arithmetic and Auxiliary Functions
38 // Exponential and Logarithmic Functions
49 // Trigonometric Functions
59 // Hyperbolic Functions
70 // Exponential and Logarithmic Functions
76 // Trigonometric Functions
97 // Floating-Point Arithmetic and Auxiliary Functions
107 // Hyperbolic Functions
122 // GLIBC Vector math Functions
[all …]
/openbsd-src/gnu/usr.bin/perl/
H A Dwrite_buildcustomize.pl61 require File::Spec::Functions;
75 (map {File::Spec::Functions::rel2abs($_, $cwd)} (
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp239 MethodAddressVector Functions; in notifyObjectLoaded() local
286 Functions.push_back((void *)Addr); in notifyObjectLoaded()
331 LoadedObjectMap[ObjData] = Functions; in notifyObjectLoaded()
362 MethodAddressVector &Functions = OI->second; in notifyFreeingObject() local
365 for (MethodAddressVector::iterator FI = Functions.begin(), in notifyFreeingObject()
366 FE = Functions.end(); in notifyFreeingObject()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DGCMetadata.h168 FuncInfoVec::iterator funcinfo_begin() { return Functions.begin(); } in funcinfo_begin()
169 FuncInfoVec::iterator funcinfo_end() { return Functions.end(); } in funcinfo_end()
173 FuncInfoVec Functions;
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DGCMetadata.cpp73 Functions.push_back(std::make_unique<GCFunctionInfo>(F, *S)); in getFunctionInfo()
74 GCFunctionInfo *GFI = Functions.back().get(); in getFunctionInfo()
80 Functions.clear(); in clear()
/openbsd-src/gnu/usr.bin/perl/dist/PathTools/t/
H A Dtaint.t22 my @Functions = qw(getcwd cwd fastcwd fastgetcwd
27 foreach my $func (@Functions) {
/openbsd-src/gnu/usr.bin/perl/dist/PathTools/
H A DMANIFEST8 lib/File/Spec/Functions.pm
23 t/Functions.t
/openbsd-src/gnu/lib/libiberty/src/
H A Dlibiberty.texi89 * Functions:: Available functions, macros, and global variables.
138 Functions contained in @libib{} can be divided into three general categories.
142 * Supplemental Functions:: Providing functions which don't exist
145 * Replacement Functions:: These functions are sometimes buggy or
148 * Extensions:: Functions which provide useful extensions
152 @node Supplemental Functions
153 @section Supplemental Functions
180 @node Replacement Functions
181 @section Replacement Functions
256 @node Functions
/openbsd-src/gnu/usr.bin/perl/cpan/File-Path/t/
H A DFilePathTest.pm8 use File::Spec::Functions;
125 my $tdir = File::Spec::Functions::tmpdir();
/openbsd-src/gnu/llvm/compiler-rt/lib/xray/
H A Dxray_init.cpp89 XRayInstrMap.Functions = __stop_xray_fn_idx - __start_xray_fn_idx; in __xray_init()
103 XRayInstrMap.Functions = CountFunctions; in __xray_init()
H A Dxray_interface.cpp227 if (InstrMap.Functions == 0) in patchFunction()
232 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) { in patchFunction()
353 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) { in mprotectAndPatchFunction()
503 if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.Functions) in __xray_function_address()
520 return XRayInstrMap.Functions; in __xray_max_function_id()
/openbsd-src/usr.bin/vi/docs/interp/
H A Dinterp25 2: Functions to execute both ex and vi commands. The return value of the
38 3: Functions to handle lines of text in the file.
95 6: Functions to manipulate marks.
119 8: Functions to get input from the user.
160 11: Functions to return pathnames.
162 12: Functions to return edit options.

12345678910>>...15