Home
last modified time | relevance | path

Searched full:region (Results 1 – 25 of 2482) sorted by relevance

12345678910>>...100

/freebsd-src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DRegionInfo.h1 //===- RegionInfo.h - SESE region analysis ----------------------*- C++ -*-===//
64 class Region; variable
88 using RegionT = Region;
104 /// Marker class to iterate over the elements of a Region in flat mode.
115 /// Region.
125 /// This is the entry basic block that starts this region node. If this is a
132 /// The node can hold either a Region or a BasicBlock.
137 /// The parent Region of this RegionNode.
158 /// Get the parent Region of this RegionNode.
160 /// The parent Region is the Region this RegionNode belongs to. If for
[all …]
/freebsd-src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRegions.def13 // REGION(Id, Parent) - for specific MemRegion sub-classes, reserving
16 // ABSTRACT_REGION(Id, Parent) - for abstract region classes,
19 // allowing to determine abstract class of a region
24 #ifndef REGION
25 #define REGION(Id, Parent)
37 REGION(CodeSpaceRegion, MemSpaceRegion)
40 REGION(GlobalImmutableSpaceRegion, NonStaticGlobalSpaceRegion)
41 REGION(GlobalInternalSpaceRegion, NonStaticGlobalSpaceRegion)
42 REGION(GlobalSystemSpaceRegion, NonStaticGlobalSpaceRegion)
45 REGION(StaticGlobalSpaceRegion, MemSpaceRegion)
[all …]
H A DMemRegion.h63 /// Represent a region's offset within the top level base region.
65 /// The base region.
68 /// The bit offset within the base region. Can be negative.
93 // Base region classes.
100 #define REGION(Id, Parent) Id ## Kind,
103 #undef REGION
126 /// Recursively retrieve the region of the most derived class instance of
131 /// Check if the region is a subregion of the given region
99 #define REGION( global() macro
1176 const MemRegion *Region; global() variable
1180 : Region(reg), Offset(offset) {} Region() function
1335 classof(const MemRegion * region) classof() argument
1377 classof(const MemRegion * region) classof() argument
[all...]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dprimary64.h33 // PrimaryEnableRandomOffset is set, each Region actually starts at a random
41 // The 1st Region (for size class 0) holds the TransferBatches. This is a
57 "Group size shouldn't be greater than the region size");
138 RegionInfo *Region = getRegionInfo(I); in init()
140 initRegion(Region, I, RegionMemMap, Config::getEnableRandomOffset()); in init()
145 // The binding should be done after region shuffling so that it won't bind in init()
146 // the FLLock from the wrong region. in init()
158 RegionInfo *Region = getRegionInfo(I); in init()
160 ScopedLock ML(Region->MMLock); in init()
161 MemMapT MemMap = Region in init()
134 RegionInfo *Region = getRegionInfo(I); init() local
167 RegionInfo *Region = getRegionInfo(I); unmapTestOnly() local
183 RegionInfo *Region = getRegionInfo(I); verifyAllBlocksAreReleasedTestOnly() local
200 RegionInfo *Region = getRegionInfo(SizeClassMap::BatchClassId); verifyAllBlocksAreReleasedTestOnly() local
245 RegionInfo *Region = getRegionInfo(ClassId); popBatch() local
297 RegionInfo *Region = getRegionInfo(ClassId); pushBlocks() local
361 RegionInfo *Region = getRegionInfo(I); iterateOverBlocks() local
381 RegionInfo *Region = getRegionInfo(I); getStats() local
398 RegionInfo *Region = getRegionInfo(I); getStats() local
411 RegionInfo *Region = getRegionInfo(I); getFragmentationInfo() local
430 RegionInfo *Region = getRegionInfo(ClassId); tryReleaseToOS() local
447 RegionInfo *Region = getRegionInfo(I); releaseToOS() local
621 pushBatchClassBlocks(RegionInfo * Region,CompactPtrT * Array,u32 Size) pushBatchClassBlocks() argument
858 popBatchWithCV(CacheT * C,uptr ClassId,RegionInfo * Region,bool & ReportRegionExhausted) popBatchWithCV() argument
932 popBatchImpl(CacheT * C,uptr ClassId,RegionInfo * Region) popBatchImpl() argument
980 populateFreeListAndPopBatch(CacheT * C,uptr ClassId,RegionInfo * Region) populateFreeListAndPopBatch() argument
1068 getStats(ScopedString * Str,uptr ClassId,RegionInfo * Region) getStats() argument
1097 getRegionFragmentationInfo(RegionInfo * Region,uptr ClassId,ScopedString * Str) getRegionFragmentationInfo() argument
1229 hasChanceToReleasePages(RegionInfo * Region,uptr BlockSize,uptr BytesInFreeList,ReleaseToOS ReleaseType) hasChanceToReleasePages() argument
1294 collectGroupsToRelease(RegionInfo * Region,const uptr BlockSize,const uptr AllocatedUserEnd,const uptr CompactPtrBase) collectGroupsToRelease() argument
1460 markFreeBlocks(RegionInfo * Region,const uptr BlockSize,const uptr AllocatedUserEnd,const uptr CompactPtrBase,SinglyLinkedList<BatchGroupT> & GroupsToRelease) markFreeBlocks() argument
1538 mergeGroupsToReleaseBack(RegionInfo * Region,SinglyLinkedList<BatchGroupT> & GroupsToRelease) mergeGroupsToReleaseBack() argument
[all...]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_primary64.h28 // Region: a part of Space dedicated to a single size class.
36 // A Region looks like this:
100 // When we know the size class (the region base) we can represent a pointer
101 // as a 4-byte integer (offset from the region start shifted right by 4).
126 "SizeClassAllocator: region info"));
145 "SizeClassAllocator: region info");
177 RegionInfo *region = GetRegionInfo(class_id); in ReturnToAllocator() local
181 Lock l(&region->mutex); in ReturnToAllocator()
182 uptr old_num_chunks = region->num_freed_chunks; in ReturnToAllocator()
186 if (UNLIKELY(!EnsureFreeArraySpace(region, region_be in ReturnToAllocator()
203 RegionInfo *region = GetRegionInfo(class_id); GetFromAllocator() local
268 const RegionInfo *region = AddressSpaceView::Load(GetRegionInfo(class_id)); GetBlockBegin() local
312 RegionInfo *region = GetRegionInfo(class_id); PrintStats() local
339 RegionInfo *region = GetRegionInfo(class_id); PrintStats() local
373 RegionInfo *region = GetRegionInfo(class_id); ForEachChunk() local
739 EnsureFreeArraySpace(RegionInfo * region,uptr region_beg,uptr num_freed_chunks) EnsureFreeArraySpace() argument
757 IsRegionExhausted(RegionInfo * region,uptr class_id,uptr additional_map_size) IsRegionExhausted() argument
772 PopulateFreeArray(AllocatorStats * stat,uptr class_id,RegionInfo * region,uptr requested_count) PopulateFreeArray() argument
863 RegionInfo *region = GetRegionInfo(class_id); MaybeReleaseToOS() local
[all...]
/freebsd-src/sys/contrib/device-tree/Bindings/fpga/
H A Dfpga-region.txt1 FPGA Region Device Tree Binding
9 - FPGA Region
39 Partial Reconfiguration Region (PRR)
46 into a PRR must fit and must use a subset of the region's connections.
47 * The busses within the FPGA are split such that each region gets its own
64 * During Partial Reconfiguration of a specific region, that region's bridge
100 region (PRR0-2) gets its own split of the busses that is independently gated by
108 When a DT overlay that targets an FPGA Region is applied, the FPGA Region will
117 When the overlay is removed, the child nodes will be removed and the FPGA Region
121 FPGA Region
[all …]
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DLinuxProcMaps.cpp29 MemoryRegionInfo region; in ParseMemoryRegionInfoFromProcMapsLine() local
54 region.GetRange().SetRangeBase(start_address); in ParseMemoryRegionInfoFromProcMapsLine()
55 region.GetRange().SetRangeEnd(end_address); in ParseMemoryRegionInfoFromProcMapsLine()
57 // Any memory region in /proc/{pid}/(maps|smaps) is by definition mapped in ParseMemoryRegionInfoFromProcMapsLine()
59 region.SetMapped(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine()
71 region.SetReadable(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine()
73 region.SetReadable(MemoryRegionInfo::OptionalBool::eNo); in ParseMemoryRegionInfoFromProcMapsLine()
81 region.SetWritable(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine()
83 region.SetWritable(MemoryRegionInfo::OptionalBool::eNo); in ParseMemoryRegionInfoFromProcMapsLine()
91 region.SetExecutable(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine()
[all …]
/freebsd-src/sys/contrib/dev/acpica/components/events/
H A Devregion.c3 * Module Name: evregion - Operation Region support
189 * an installed default region handler.
236 * PARAMETERS: RegionObj - Internal region object
239 * RegionOffset - Where in the region to read or write
246 * DESCRIPTION: Dispatch an address space or operation region access to
249 * NOTE: During early initialization, we always install the default region
251 * region address spaces are always available as per the ACPI specification.
287 /* Ensure that there is a handler associated with this region */ in AcpiEvAddressSpaceDispatch()
289 HandlerDesc = RegionObj->Region.Handler; in AcpiEvAddressSpaceDispatch()
293 "No handler for Region [ in AcpiEvAddressSpaceDispatch()
[all...]
/freebsd-src/contrib/ntp/libntp/lib/isc/include/isc/
H A Dbuffer.h29 * \brief A buffer is a region of memory, together with a set of related subregions.
32 * The 'used region' and the 'available' region are disjoint, and their
33 * union is the buffer's region. The used region extends from the beginning
34 * of the buffer region to the last used byte. The available region
36 * buffer's region. The size of the used region can be changed using various
37 * buffer commands. Initially, the used region is empty.
39 * The used region is further subdivided into two disjoint regions: the
40 * 'consumed region' and the 'remaining region'. The union of these two
41 * regions is the used region. The consumed region extends from the beginning
42 * of the used region to the byte before the 'current' offset (if any). The
[all …]
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPointerArithChecker.cpp51 const MemRegion *getArrayRegion(const MemRegion *Region, bool &Polymorphic,
53 const MemRegion *getPointedRegion(const MemRegion *Region,
105 PointerArithChecker::getPointedRegion(const MemRegion *Region, in getPointedRegion() argument
107 assert(Region); in getPointedRegion()
109 SVal S = State->getSVal(Region); in getPointedRegion()
113 /// Checks whether a region is the part of an array.
116 /// allocation kind of the inspected region.
117 const MemRegion *PointerArithChecker::getArrayRegion(const MemRegion *Region, in getArrayRegion() argument
121 assert(Region); in getArrayRegion()
122 while (const auto *BaseRegion = dyn_cast<CXXBaseObjectRegion>(Region)) { in getArrayRegion()
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DIROutliner.cpp77 /// replace the extracted function for each region.
101 /// extraction of the first region.
112 /// The number of branches in the region target a basic block that is outside
113 /// of the region.
138 /// we check whether it is the same in Region.
266 // region is the same as the recorded instruction following the last in splitCandidate()
281 // We iterate over the instructions in the region, if we find a PHINode, we in splitCandidate()
282 // check if there are predecessors outside of the region, if there are, in splitCandidate()
283 // we ignore this region since we are unable to handle the severing of the in splitCandidate()
318 // If the region start in splitCandidate()
549 collectRegionsConstants(OutlinableRegion & Region,DenseMap<unsigned,Constant * > & GVNToConstant,DenseSet<unsigned> & NotSame) collectRegionsConstants() argument
863 getCodeExtractorArguments(OutlinableRegion & Region,std::vector<unsigned> & InputGVNs,DenseSet<unsigned> & NotSame,DenseMap<Value *,Value * > & OutputMappings,SetVector<Value * > & ArgInputs,SetVector<Value * > & Outputs) getCodeExtractorArguments() argument
933 findExtractedInputToOverallInputMapping(OutlinableRegion & Region,std::vector<unsigned> & InputGVNs,SetVector<Value * > & ArgInputs) findExtractedInputToOverallInputMapping() argument
1173 getGVNForPHINode(OutlinableRegion & Region,PHINode * PN,DenseSet<BasicBlock * > & Blocks,unsigned AggArgIdx) getGVNForPHINode() argument
1275 findExtractedOutputToOverallOutputMapping(Module & M,OutlinableRegion & Region,SetVector<Value * > & Outputs) findExtractedOutputToOverallOutputMapping() argument
1400 findAddInputsOutputs(Module & M,OutlinableRegion & Region,DenseSet<unsigned> & NotSame) findAddInputsOutputs() argument
1429 replaceCalledFunction(Module & M,OutlinableRegion & Region) replaceCalledFunction() argument
1594 getPassedArgumentInAlreadyOutlinedFunction(const Argument * A,const OutlinableRegion & Region) getPassedArgumentInAlreadyOutlinedFunction() argument
1610 getPassedArgumentAndAdjustArgumentLocation(const Argument * A,const OutlinableRegion & Region) getPassedArgumentAndAdjustArgumentLocation() argument
1635 findCanonNumsForPHI(PHINode * PN,OutlinableRegion & Region,const DenseMap<Value *,Value * > & OutputMappings,SmallVector<std::pair<unsigned,BasicBlock * >> & CanonNums,bool ReplacedWithOutlinedCall=true) findCanonNumsForPHI() argument
1678 findOrCreatePHIInBlock(PHINode & PN,OutlinableRegion & Region,BasicBlock * OverallPhiBlock,const DenseMap<Value *,Value * > & OutputMappings,DenseSet<PHINode * > & UsedPHIs) findOrCreatePHIInBlock() argument
1800 replaceArgumentUses(OutlinableRegion & Region,DenseMap<Value *,BasicBlock * > & OutputBBs,const DenseMap<Value *,Value * > & OutputMappings,bool FirstFunction=false) replaceArgumentUses() argument
1934 replaceConstants(OutlinableRegion & Region) replaceConstants() argument
2023 analyzeAndPruneOutputBlocks(DenseMap<Value *,BasicBlock * > & BlocksToPrune,OutlinableRegion & Region) analyzeAndPruneOutputBlocks() argument
2070 alignOutputBlockWithAggFunc(OutlinableGroup & OG,OutlinableRegion & Region,DenseMap<Value *,BasicBlock * > & OutputBBs,DenseMap<Value *,BasicBlock * > & EndBBs,const DenseMap<Value *,Value * > & OutputMappings,std::vector<DenseMap<Value *,BasicBlock * >> & OutputStoreBBs) alignOutputBlockWithAggFunc() argument
2361 isCompatibleWithAlreadyOutlinedCode(const OutlinableRegion & Region) isCompatibleWithAlreadyOutlinedCode() argument
2504 findOutputValueInRegion(OutlinableRegion & Region,unsigned OutputCanon) findOutputValueInRegion() argument
2676 updateOutputMapping(OutlinableRegion & Region,ArrayRef<Value * > Outputs,LoadInst * LI) updateOutputMapping() argument
2708 extractSection(OutlinableRegion & Region) extractSection() argument
2889 __anonf40dab240c02(OutlinableRegion *Region) doOutline() argument
2995 __anonf40dab241002(OutlinableRegion *Region) doOutline() argument
[all...]
H A DHotColdSplitting.cpp15 /// grows a maximal cold region around that block. The maximal region contains
17 /// cold as the sink. Once a region is found, it's split out of the original
168 // requires unwind destinations to be within the extraction region. in mayExtractBlock()
284 /// Get the benefit score of outlining \p Region.
285 static InstructionCost getOutliningBenefit(ArrayRef<BasicBlock *> Region, in getOutliningPenalty() argument
290 for (BasicBlock *BB : Region) in getOutliningPenalty()
299 /// Get the penalty score for outlining \p Region. in getOutliningPenalty()
300 static int getOutliningPenalty(ArrayRef<BasicBlock *> Region, in getOutliningPenalty()
310 // Find the number of distinct exit blocks for the region in getOutliningPenalty()
270 getOutliningBenefit(ArrayRef<BasicBlock * > Region,TargetTransformInfo & TTI) getOutliningBenefit() argument
376 extractColdRegion(const BlockSequence & Region,const CodeExtractorAnalysisCache & CEAC,DominatorTree & DT,BlockFrequencyInfo * BFI,TargetTransformInfo & TTI,OptimizationRemarkEmitter & ORE,AssumptionCache * AC,unsigned Count) extractColdRegion() argument
708 OutliningRegion Region = OutliningWorklist.pop_back_val(); outlineColdRegions() local
[all...]
/freebsd-src/sys/contrib/device-tree/Bindings/cache/
H A Dqcom,llcc.yaml76 - description: LLCC0 base register region
77 - description: LLCC broadcast base register region
93 - description: LLCC0 base register region
94 - description: LLCC1 base register region
95 - description: LLCC2 base register region
96 - description: LLCC3 base register region
97 - description: LLCC4 base register region
98 - description: LLCC5 base register region
99 - description: LLCC broadcast base register region
120 - description: LLCC0 base register region
[all...]
/freebsd-src/share/man/man4/
H A Dprocfs.475 The starting address for the region (inclusive).
77 The ending address for the region (exclusive).
85 kernel data structure describing the memory region.
96 The number of references to the region.
98 The number of VM objects that this region is a shadow for.
105 Whether the region is copy-on-write.
109 A copy-on-write region.
111 A non-copy-on-write region.
114 Whether the region needs a copy.
118 The region needs a copy.
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DIROutliner.h14 // whether it will provide code size reduction. Each region is extracted using
59 /// The OutlinableRegion holds all the information for a specific region, or
61 /// arguments from the extracted function, inputs and outputs to the region, and
64 /// Describes the region of code.
67 /// If this region is outlined, the front and back IRInstructionData could
82 /// that are not the same in each region in a SimilarityGroup, or values that
83 /// cannot be sunk into the extracted section in every region, we must keep
89 /// finding corresponding values from one region to another, the found value
91 /// any replaced values for the region to the aggregate aggregate argument
100 /// Marks whether this region ends in a branch, there is special handling
[all …]
/freebsd-src/share/man/man9/
H A Dvm_map_find.931 .Nd find a free region within a map, and optionally map a vm_object
45 function attempts to find a free region in the target
49 If a free region is found,
64 when creating the mapping, if and only if a free region is found.
77 The mapping will only succeed if a free region can be found that resides
83 argument specifies the strategy to use when searching for a free region of
88 is called to locate a free region of the requested length with a starting
94 The mapping will only succeed if there is a free region of the requested
98 The mapping will succeed as long as there is a free region.
100 The mapping will succeed as long as there is a free region that begins on
[all …]
/freebsd-src/lib/libsys/
H A Dmmap.253 is not a multiple of the page size, the mapped region may extend past the
70 is wholly within the truncated region, the access is aborted and a
86 (As a convenience to the system, the actual address of the region may differ
91 The actual starting address of the region is returned.
96 The protections (region accessibility) are specified in the
115 provides the ability to set the maximum protection of a region allocated by
141 Request a region in the first 2GB of the current process's address space.
142 If a suitable region cannot be found,
146 Align the region on a requested boundary.
147 If a suitable region cannot be found,
[all …]
/freebsd-src/sys/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/
H A Dscrypt_platform.c41 alloc_region(escrypt_region_t *region, size_t size) in alloc_region() argument
65 region->base = base; in alloc_region()
66 region->aligned = aligned; in alloc_region()
67 region->size = base ? size : 0; in alloc_region()
73 init_region(escrypt_region_t *region) in init_region() argument
75 region->base = region->aligned = NULL; in init_region()
76 region->size = 0; in init_region()
80 free_region(escrypt_region_t *region) in free_region() argument
82 if (region->base) { in free_region()
84 if (munmap(region->base, region->size)) { in free_region()
[all …]
/freebsd-src/contrib/unbound/services/cache/
H A Ddns.h59 * Region allocated message reply
73 * this is allocated in a region, and will be copied to malloc area
76 * this is allocated in a region, and will be copied to malloc area
86 * @param region: region to allocate better entries from cache into.
97 struct regional* region, uint32_t flags, time_t qstarttime);
119 * @param region: to allocate into for qmsg.
123 struct reply_info* qrep, uint32_t flags, struct regional* region,
133 * @param region: where to allocate result delegation.
147 struct regional* region, struc
[all...]
/freebsd-src/contrib/unbound/util/data/
H A Dmsgreply.h125 * from the region allocation to the malloc allocation.
253 * @param region: where to allocate the results, pass NULL to use malloc.
270 construct_reply_info_base(struct regional* region, uint16_t flags, size_t qd,
296 * @param region: where to store temporary data (for parsing).
304 struct regional* region, struct edns_data* edns);
309 * @param msg: parsed message in scratch region.
311 * Not used if region!=NULL, it can be NULL in that case.
315 * @param region: if this parameter is NULL then malloc and the alloc is used.
316 * otherwise, everything is allocated in this region.
317 * In a region, n
560 EDNS_OPT_LIST_APPEND_EDE(LIST,REGION,CODE,TXT) global() argument
[all...]
H A Dmsgreply.c80 struct query_info* qinf, struct regional* region) in parse_create_qinfo()
83 if(region) in parse_create_qinfo()
84 qinf->qname = (uint8_t*)regional_alloc(region, in parse_create_qinfo()
99 construct_reply_info_base(struct regional* region, uint16_t flags, size_t qd, in construct_reply_info_base()
109 if(region) in construct_reply_info_base()
110 rep = (struct reply_info*)regional_alloc(region, s); in construct_reply_info_base()
131 if(region) in construct_reply_info_base()
136 if(!region)
144 struct regional* region) in parse_create_repinfo()
146 *rep = construct_reply_info_base(region, ms in parse_create_repinfo()
78 parse_create_qinfo(sldns_buffer * pkt,struct msg_parse * msg,struct query_info * qinf,struct regional * region) parse_create_qinfo() argument
97 construct_reply_info_base(struct regional * region,uint16_t flags,size_t qd,time_t ttl,time_t prettl,time_t expttl,size_t an,size_t ns,size_t ar,size_t total,enum sec_status sec,sldns_ede_code reason_bogus) construct_reply_info_base() argument
140 parse_create_repinfo(struct msg_parse * msg,struct reply_info ** rep,struct regional * region) parse_create_repinfo() argument
152 reply_info_alloc_rrset_keys(struct reply_info * rep,struct alloc_cache * alloc,struct regional * region) reply_info_alloc_rrset_keys() argument
175 make_new_reply_info(const struct reply_info * rep,struct regional * region,size_t an_numrrsets,size_t copy_rrsets) make_new_reply_info() argument
356 parse_create_rrset(sldns_buffer * pkt,struct rrset_parse * pset,struct packed_rrset_data ** data,struct regional * region) parse_create_rrset() argument
423 parse_copy_decompress_rrset(sldns_buffer * pkt,struct msg_parse * msg,struct rrset_parse * pset,struct regional * region,struct ub_packed_rrset_key * pk) parse_copy_decompress_rrset() argument
466 parse_copy_decompress(sldns_buffer * pkt,struct msg_parse * msg,struct reply_info * rep,struct regional * region) parse_copy_decompress() argument
495 parse_create_msg(sldns_buffer * pkt,struct msg_parse * msg,struct alloc_cache * alloc,struct query_info * qinf,struct reply_info ** rep,struct regional * region) parse_create_msg() argument
515 reply_info_parse(sldns_buffer * pkt,struct alloc_cache * alloc,struct query_info * qinf,struct reply_info ** rep,struct regional * region,struct edns_data * edns) reply_info_parse() argument
726 repinfo_copy_rrsets(struct reply_info * dest,struct reply_info * from,struct regional * region) repinfo_copy_rrsets() argument
761 reply_info_copy(struct reply_info * rep,struct alloc_cache * alloc,struct regional * region) reply_info_copy() argument
903 struct regional* region = regional_create(); log_dns_msg() local
1051 parse_reply_in_temp_region(sldns_buffer * pkt,struct regional * region,struct query_info * qi) parse_reply_in_temp_region() argument
1070 edns_opt_list_append_ede(struct edns_option ** list,struct regional * region,sldns_ede_code code,const char * txt) edns_opt_list_append_ede() argument
1101 edns_opt_list_append_keepalive(struct edns_option ** list,int msec,struct regional * region) edns_opt_list_append_keepalive() argument
1111 edns_opt_list_append(struct edns_option ** list,uint16_t code,size_t len,uint8_t * data,struct regional * region) edns_opt_list_append() argument
1174 inplace_cb_reply_call_generic(struct inplace_cb * callback_list,enum inplace_cb_list_type type,struct query_info * qinfo,struct module_qstate * qstate,struct reply_info * rep,int rcode,struct edns_data * edns,struct comm_reply * repinfo,struct regional * region,struct timeval * start_time) inplace_cb_reply_call_generic() argument
1196 inplace_cb_reply_call(struct module_env * env,struct query_info * qinfo,struct module_qstate * qstate,struct reply_info * rep,int rcode,struct edns_data * edns,struct comm_reply * repinfo,struct regional * region,struct timeval * start_time) inplace_cb_reply_call() argument
1207 inplace_cb_reply_cache_call(struct module_env * env,struct query_info * qinfo,struct module_qstate * qstate,struct reply_info * rep,int rcode,struct edns_data * edns,struct comm_reply * repinfo,struct regional * region,struct timeval * start_time) inplace_cb_reply_cache_call() argument
1218 inplace_cb_reply_local_call(struct module_env * env,struct query_info * qinfo,struct module_qstate * qstate,struct reply_info * rep,int rcode,struct edns_data * edns,struct comm_reply * repinfo,struct regional * region,struct timeval * start_time) inplace_cb_reply_local_call() argument
1229 inplace_cb_reply_servfail_call(struct module_env * env,struct query_info * qinfo,struct module_qstate * qstate,struct reply_info * rep,int rcode,struct edns_data * edns,struct comm_reply * repinfo,struct regional * region,struct timeval * start_time) inplace_cb_reply_servfail_call() argument
1244 inplace_cb_query_call(struct module_env * env,struct query_info * qinfo,uint16_t flags,struct sockaddr_storage * addr,socklen_t addrlen,uint8_t * zone,size_t zonelen,struct module_qstate * qstate,struct regional * region) inplace_cb_query_call() argument
1285 edns_opt_copy_region(struct edns_option * list,struct regional * region) edns_opt_copy_region() argument
1315 edns_opt_copy_filter_region(struct edns_option * list,uint16_t * filter_list,size_t filter_list_len,struct regional * region) edns_opt_copy_filter_region() argument
[all...]
/freebsd-src/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegion.cpp29 for (UniqueCodeRegion &Region : Regions) in addInstruction()
30 if (Region->isLocInRange(Loc)) in addInstruction()
31 Region->addInstruction(Instruction); in addInstruction()
35 // Create a default region for the input code sequence. in AnalysisRegions()
41 // Remove the default region if there is at least one user defined region. in beginRegion()
42 // By construction, only the default region has an invalid start location. in beginRegion()
57 "Previous anonymous region was defined here"); in beginRegion()
65 "region " + Description + " was previously defined here"); in beginRegion()
77 // Special case where there is only one user defined region, in endRegion()
78 // and this LLVM-MCA-END directive doesn't provide a region name. in endRegion()
[all …]
/freebsd-src/contrib/llvm-project/clang/lib/Headers/
H A Dfxsrintrin.h20 /// memory region pointed to by the input parameter \a __p.
27 /// A pointer to a 512-byte memory region. The beginning of this memory
28 /// region should be aligned on a 16-byte boundary.
36 /// memory region pointed to by the input parameter \a __p. The contents of
37 /// this memory region should have been written to by a previous \c _fxsave
45 /// A pointer to a 512-byte memory region. The beginning of this memory
46 /// region should be aligned on a 16-byte boundary.
55 /// memory region pointed to by the input parameter \a __p.
62 /// A pointer to a 512-byte memory region. The beginning of this memory
63 /// region should be aligned on a 16-byte boundary.
[all …]
/freebsd-src/sys/amd64/pci/
H A Dpci_cfgreg.c55 static int pciereg_cfgread(struct pcie_mcfg_region *region, int bus,
57 static void pciereg_cfgwrite(struct pcie_mcfg_region *region, int bus,
107 struct pcie_mcfg_region *region; in pci_docfgregread() local
109 region = pcie_lookup_region(domain, bus); in pci_docfgregread()
110 if (region != NULL) in pci_docfgregread()
111 return (pciereg_cfgread(region, bus, slot, func, reg, in pci_docfgregread()
160 struct pcie_mcfg_region *region; in pci_cfgregwrite() local
162 region = pcie_lookup_region(domain, bus); in pci_cfgregwrite()
163 if (region != NULL) { in pci_cfgregwrite()
164 pciereg_cfgwrite(region, bu in pci_cfgregwrite()
256 pcie_init_badslots(struct pcie_mcfg_region * region) pcie_init_badslots() argument
283 struct pcie_mcfg_region *region; pcie_cfgregopen() local
329 pciereg_cfgread(struct pcie_mcfg_region * region,int bus,unsigned slot,unsigned func,unsigned reg,unsigned bytes) pciereg_cfgread() argument
361 pciereg_cfgwrite(struct pcie_mcfg_region * region,int bus,unsigned slot,unsigned func,unsigned reg,int data,unsigned bytes) pciereg_cfgwrite() argument
[all...]
/freebsd-src/sys/dev/bhnd/cores/chipc/
H A Dchipc_subr.c173 * @param region The mapping region number (ignored if not SYS_RES_MEMORY).
215 * given port and region, to @p child's resource list.
217 * The specified @p region's address and size will be fetched from the bhnd(4)
218 * bus, and bus_set_resource() will be called with @p start added the region's
221 * To use the default region values for @p start and @p count, specify
228 * relative to @p region's base address).
231 * @param region The mapping region number (ignored if not SYS_RES_MEMORY).
235 rman_res_t start, rman_res_t count, u_int port, u_int region) in chipc_set_mem_resource() argument
245 /* Fetch region address and size */ in chipc_set_mem_resource()
247 region, &region_addr, &region_size); in chipc_set_mem_resource()
[all …]

12345678910>>...100