/freebsd/contrib/sendmail/cf/siteconfig/ |
H A D | uucp.ucbvax.m4 | 1 SITE(Padova) 2 SITE(Shasta) 3 SITE(alice) 4 SITE(allegra) 5 SITE(amdcad) 6 SITE(att) 7 SITE(attunix) 8 SITE(avsd) 9 SITE(bellcore bellcor) 10 SITE(calma) [all …]
|
H A D | uucp.cogsci.m4 | 1 SITE(contessa) 2 SITE(emind) 3 SITE(hoptoad) 4 SITE(nkainc) 5 SITE(well) 6 SITE(ferdy)
|
H A D | uucp.old.arpa.m4 | 1 SITE(endotsew) 2 SITE(fateman) 3 SITE(interlan) 4 SITE(metron)
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
H A D | BreakpointSiteList.h |
|
H A D | BreakpointSite.h | 31 /// that share this physical site. When the breakpoint is hit, all the 32 /// locations are informed by the breakpoint site. Breakpoint sites are owned 42 eHardware, // Breakpoint site is set as a hardware breakpoint 43 eExternal // Breakpoint site is managed by an external debug nub or 80 /// Tells whether the current breakpoint site is enabled or not 83 /// breakpoint site has no enabled constituents, it should just get removed. 88 /// Sets whether the current breakpoint site is enabled or not 94 /// Enquires of the breakpoint locations that produced this breakpoint site 108 /// site. The method adds the \a constituent to this breakpoint site' [all...] |
H A D | BreakpointLocation.h | 30 /// breakpoint location also may have a breakpoint site if its address has 163 /// Try to resolve the breakpoint site for this location. 166 /// \b true if we were successful at setting a breakpoint site, 170 /// Clear this breakpoint location's breakpoint site - for instance when 174 /// \b true if there was a breakpoint site to be cleared, \b false 178 /// Return whether this breakpoint location has a breakpoint site. \return 179 /// \b true if there was a breakpoint site for this breakpoint 244 /// breakpoint site for this location. 247 /// \b true if the breakpoint SITE for this location should be set on the 253 /// Returns whether the address set in the breakpoint site for this location [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | EHStreamer.cpp | 51 /// pad site. 56 // The action table follows the call-site table in the LSDA. The individual in computeActionsTable() 137 // Record the first action of the landing pad site. in computeActionsTable() 141 // Information used when creating the call-site table. The action record in computeActionsTable() 142 // field of the call site record is the offset of the first associated in computeActionsTable() 210 /// Compute the call-site table. The entry for an invoke has a try-range 217 /// Call-sites are split into one or more call-site ranges associated with 221 /// call-site-range corresponding to the function section. 223 /// - With -basic-block-sections, one call-site range is created for each 227 // Later, one LSDA header will be emitted for each call-site range with its [all …]
|
H A D | EHStreamer.h | 60 /// Structure describing an entry in the call-site table. 74 /// be one call site range per basic block section. Otherwise, we will have 75 /// one call site range containing all the call sites in the function. 81 // LSDA symbol for this call-site range. 83 // Index of the first call-site entry in the call-site table which 86 // Index just after the last call-site entry in the call-site table which 89 // Whether this is the call-site range containing all the landing pads. 94 /// landing pad site. 103 /// Compute the call-site table and the call-site ranges. The entry for an 122 /// 1. The landing pad site information describes the range of code covered [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | AbstractCallSite.h | 30 /// An abstract call site is a wrapper that allows to treat direct, 31 /// indirect, and callback calls the same. If an abstract call site 32 /// represents a direct or indirect call site it behaves like a stripped 33 /// down version of a normal call site object. The abstract call site can 36 /// In this case, the abstract call site hides the middle man, hence the 45 /// The abstract call site will handle the mapping from parameters to arguments 57 /// the abstract call site represents a callback. In that case, the first 59 /// site CB is the callback callee. The remaining elements map parameters 61 /// through (also identified by position but in the call site instruction). 73 /// The underlying call site: [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | CallPromotionUtils.h | 27 /// Return true if the given indirect call site can be made to call \p Callee. 29 /// This function ensures that the number and type of the call site's arguments 37 /// Promote the given indirect call site to unconditionally call \p Callee. 39 /// This function promotes the given call site, returning the direct call or 40 /// invoke instruction. If the function type of the call site doesn't match that 47 /// Promote the given indirect call site to conditionally call \p Callee. The 52 /// site. The original call site is moved into the "else" block. A clone of the 53 /// indirect call site is promoted, placed in the "then" block, and returned. If 98 /// Predicate and clone the given call site. 101 /// call site. The "if" condition compares the call site's called value to [all …]
|
/freebsd/include/rpcsvc/ |
H A D | sm_inter.x | 42 /* if res_stat == stat_succ, state = state number of site sm_name */ 47 /* stat consists of state number of local site */ 50 /* stat consists of state number of local site */ 53 /* stat consists of state number of local site */ 69 string my_name<SM_MAXSTRLEN>; /* name of the site iniates the monitoring request*/ 76 string mon_name<SM_MAXSTRLEN>; /* name of the site to be monitored */ 87 string mon_name<SM_MAXSTRLEN>; /* name of the site that had the state change */ 93 * status of the site changes: 94 * an even number (>= 0) indicates the site is down and 95 * an odd number (> 0) indicates the site is up; [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | CallPromotionUtils.cpp | 128 /// When promoting a call site, the return type of the call site might not match 191 /// Predicate and clone the given call site. 194 /// site. The "if" condition is specified by `Cond`. 195 /// The original call site is moved into the "else" block, and a clone of the 196 /// call site is placed in the "then" block. The cloned instruction is returned. 260 /// 2. The return statement following the original call site is duplicated too 261 /// and placed immediately after the cloned call site per the IR convention. 302 // Place a clone of the optional bitcast after the new call site. in versionCallSiteWithCond() 315 // Place a clone of the return instruction after the new call site. in versionCallSiteWithCond() 348 // If the original call site is an invoke instruction, we have extra work to in versionCallSiteWithCond() [all …]
|
/freebsd/contrib/tcsh/nls/C/ |
H A D | set23 | 3 1 Bad cpu/site name 4 2 Site path too long 6 4 site: %s\n 7 5 %d: Site not found\n 9 7 Site not found
|
/freebsd/contrib/tcsh/nls/ukrainian/ |
H A D | set23 | 3 1 Bad cpu/site name 4 2 Site path too long 6 4 site: %s\n 7 5 %d: Site not found\n 9 7 Site not found
|
/freebsd/contrib/tcsh/nls/german/ |
H A D | set23 | 3 1 Falscher Cpu/Site-Name 4 2 Site-Pfad zu lang 6 4 Site: %s\n 7 5 %d: Site nicht gefunden\n 9 7 Site nicht gefunden
|
/freebsd/contrib/tcsh/nls/greek/ |
H A D | set23 | 3 1 Ακυρο όνομα cpu/site 4 2 Το site path είναι υπερβολικά μακρύ 6 4 site: %s\n 7 5 %d: το site δε βρέθηκε\n 9 7 Tο site δε βρέθηκε
|
/freebsd/contrib/tcsh/nls/russian/ |
H A D | set23 | 3 1 Bad cpu/site name 4 2 Site path too long 6 4 site: %s\n 7 5 %d: Site not found\n 9 7 Site not found
|
/freebsd/contrib/tcsh/nls/french/ |
H A D | set23 | 3 1 Mauvais nom de cpu/site 4 2 Chemin du site trop mong 6 4 site: %s\n 7 5 %d: Site pas trouvé\n 9 7 Site pas trouvé
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCCodeView.h | 94 /// Information describing a function or inlined call site introduced by 96 /// directives used with this function's id or the id of an inlined call site 97 /// within this function or inlined call site. 99 /// If this represents an inlined call site, then ParentFuncIdPlusOne will be 120 /// Map from inlined call site id to the inlined at location to use for that 121 /// call site. Call chains are collapsed, so for the call chain 'f -> g -> h', 123 /// list the line info for the 'g' call site. 130 /// Returns true if this represents an inlined call site, meaning 160 /// Records the function id of an inlined call site. Records the "inlined at" 161 /// location info of the call site, including what function or inlined call [all …]
|
H A D | MCPseudoProbe.h | 45 // INLINE SITE 217 uint64_t operator()(const InlineSite &Site) const { in operator() 218 return std::get<0>(Site) ^ std::get<1>(Site); in operator() 245 // Caller node of the inline site 248 DerivedProbeInlineTreeType *getOrAddNode(const InlineSite &Site) { in getOrAddNode() argument 250 Site, std::make_unique<DerivedProbeInlineTreeType>(Site)); in getOrAddNode() 267 MCPseudoProbeInlineTree(const InlineSite &Site) { in MCPseudoProbeInlineTree() argument 268 this->Guid = std::get<0>(Site); in MCPseudoProbeInlineTree() 287 MCDecodedPseudoProbeInlineTree(const InlineSite &Site) : ISite(Site){}; in MCDecodedPseudoProbeInlineTree() argument 289 // Return false if it's a dummy inline site
|
/freebsd/contrib/llvm-project/compiler-rt/lib/profile/ |
H A D | InstrProfilingValue.c | 99 /* This function will never be called when value site array is allocated in allocateValueProfileCounters() 133 " Consider using option -mllvm -vp-counters-per-site=<n> to " in allocateOneNode() 205 * number of tracked values per value site. Alternatively, a more in instrumentTargetValueImpl() 207 * the runtime to track the total number of evictions per-site. in instrumentTargetValueImpl() 325 /* Compute value count for each site. */ in initializeValueProfRuntimeRecord() 327 ValueProfNode *Site = in initializeValueProfRuntimeRecord() 329 while (Site) { in initializeValueProfRuntimeRecord() 331 Site = Site->Next; in initializeValueProfRuntimeRecord() 342 static ValueProfNode *getNextNValueData(uint32_t VK, uint32_t Site, in getNextNValueData() 322 ValueProfNode *Site = initializeValueProfRuntimeRecord() local 337 getNextNValueData(uint32_t VK,uint32_t Site,InstrProfValueData * Dst,ValueProfNode * StartNode,uint32_t N) getNextNValueData() argument [all...] |
/freebsd/crypto/heimdal/lib/roken/ |
H A D | missing | 66 any GNU archive site." 75 archive site." 84 from any GNU archive site." 103 Grab them from any GNU archive site." 114 \`Bison' from any GNU archive site." 144 \`Flex' from any GNU archive site." 169 the \`GNU make' package. Grab either from any GNU archive site." 184 this package. You may also peek at any GNU archive site, in case
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | CallSiteSplitting.cpp | 9 // This file implements a transformation that tries to split a call-site to pass 15 // 1) Try to a split call-site with constrained arguments, if any constraints 17 // all site's predecessors. Currently this pass only handles call-sites with 2 18 // predecessors. For example, in the code below, we try to split the call-site 30 // 2) We can also split a call-site based on constant incoming values of a PHI 75 STATISTIC(NumCallSiteSplit, "Number of call-site split"); 205 // Allow splitting a call-site only when the CodeSize cost of the in canSplitCallSite() 262 /// basic block containing the call site, hook it up to the predecessor and 265 /// For example, in the IR below with an OR condition, the call-site can 299 /// Note that in case any arguments at the call-site are constrained by its [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | DynamicAllocator.cpp | 97 auto &Site = It->second; in deallocate() local 98 assert(Site.size() > 0); in deallocate() 101 auto AllocIt = llvm::find_if(Site.Allocations, [&](const Allocation &A) { in deallocate() 106 assert(AllocIt != Site.Allocations.end()); in deallocate() 112 Site.Allocations.erase(AllocIt); in deallocate() 114 if (Site.size() == 0) in deallocate()
|
/freebsd/usr.sbin/route6d/ |
H A D | route6d.8 | 124 will not exchange site local routes for safety reasons. 125 This is because semantics of site local address space is rather vague 127 and there is no good way to define site local boundary. 132 will exchange site local routes as well. 133 It must not be used on site boundary routers, 136 option assumes that all interfaces are in the same site.
|