| /src/external/public-domain/tz/dist/ |
| checklinks.awk | 6 # Special marker indicating that the name is defined as a Zone. 9 Zone = "\n" 14 if (defined[$2] == Zone) { 15 printf "%s: Zone has duplicate definition\n", $2 17 printf "%s: Link with same name as Zone\n", $2 21 defined[$2] = Zone 26 if (defined[$3] == Zone) { 27 printf "%s: Link with same name as Zone\n", $3 48 if (defined[tz] != Zone) { 61 : defined[tz] == "\n" ? "zone" \ [all...] |
| checknow.awk | 5 function record_zone(zone, data) { 6 if (zone) { 7 zone_data[zone] = data 8 zones[data] = zones[data] " " zone 15 record_zone(zone, data) 16 zone = $0 17 sub(/.*\.ckd\//, "", zone) 18 sub(/\/\//, "/", zone) 19 sub(/"/, "", zone) 24 record_zone(zone, data [all...] |
| ziguard.awk | 15 # "Zone GMT 0 - GMT" which TZUpdater 2.3.2 mistakenly rejects. 90 /^Zone/ { zone = $2 } 98 if (zone == "Europe/Prague" && $0 ~ /^#?[\t ]+[01]:00[\t ]/ \ 111 = (zone == "Europe/Dublin" && $0 ~ /^#?[\t ]+[01]:00[\t ]/ \ 127 = (zone == "Africa/Windhoek" && $0 ~ /^#?[\t ]+[12]:00[\t ]/ \ 153 # In vanguard form, use the line "Zone GMT 0 - GMT" instead of 154 # "Zone Etc/GMT 0 - GMT" and adjust Link lines accordingly. 156 if (/^#?(Zone|Link)[\t ]+(Etc\/)?GMT[\t ]/) { 174 stdoff_column = 2 * ($0 ~ /^Zone/) + [all...] |
| zishrink.awk | 176 zoneline = sub(/^Zone /, "Z ", line)
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCMachineScheduler.cpp | 31 SchedBoundary &Zone) const { 35 SchedCandidate &FirstCand = Zone.isTop() ? TryCand : Cand; 36 SchedCandidate &SecondCand = Zone.isTop() ? Cand : TryCand; 51 SchedBoundary *Zone) const { 82 bool SameBoundary = Zone != nullptr; 87 if (Rem.IsAcyclicLatencyLimited && !Zone->getCurrMOps() && 88 tryLatency(TryCand, Cand, *Zone)) 92 if (tryLess(Zone->getLatencyStallCycles(TryCand.SU), 93 Zone->getLatencyStallCycles(Cand.SU), TryCand, Cand, Stall)) 138 !Rem.IsAcyclicLatencyLimited && tryLatency(TryCand, Cand, *Zone)) [all...] |
| PPCMachineScheduler.h | 27 SchedBoundary *Zone) const override; 31 SchedBoundary &Zone) const;
|
| /src/external/mpl/bind/dist/bin/tests/system/rollover/ |
| setup.py | 17 from isctest.template import Nameserver, TrustAnchor, Zone 22 def configure_tld(zonename: str, delegations: List[Zone]) -> Zone: 28 isctest.log.info(f"create {zonename} zone with delegations and sign") 30 for zone in delegations: 32 shutil.copy(f"{zone.ns.name}/dsset-{zone.name}.", "ns2/") 53 return Zone(zonename, f"{outfile}.signed", Nameserver("ns2", "10.53.0.2")) 56 def configure_root(delegations: List[Zone]) -> TrustAnchor: 63 isctest.log.info("create root zone with delegations and sign" [all...] |
| tests_rollover_manual.py | 17 from isctest.template import Nameserver, Zone 27 def setup_zone(zone, ksk_time, ksk_settime, zsk_time, zsk_settime) -> Zone: 34 isctest.log.info(f"setup {zone}") 36 outfile = f"{zone}.db" 39 isctest.log.info(f"setup {zone}") 41 outfile = f"{zone}.db" 44 f"-f KSK -P {ksk_time} -A {ksk_time} {zone}", cwd="ns3" 46 zsk_name = keygen(f"-P {zsk_time} -A {zsk_time} {zone}", cwd="ns3").out.strip() 54 private_type_record(zone, ksk) [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/isctest/ |
| util.py | 12 import dns.zone 17 zone: dns.zone.Zone, rrset: dns.rrset.RRset, compare_ttl=False 19 """Check if a zone contains RRset""" 29 for _, node in zone.nodes.items():
|
| template.py | 92 class Zone:
|
| check.py | 20 import dns.zone 173 first_zone: dns.zone.Zone, 174 second_zone: dns.zone.Zone, 180 "%s() first zone:\n%s", 185 "%s() second zone:\n%s",
|
| asyncserver.py | 56 import dns.zone 280 zone: Optional[dns.zone.Zone] = field(default=None, init=False) 588 The response prepared from zone data is passed to this method in 678 A node representing a zone with one origin. 681 zone: Optional[dns.zone.Zone] 689 This zone tree is used as a backing structure for the DNS server. Th [all...] |
| name.py | 15 import dns.zone 35 Categorize names in zone and provide list of ENTs: 40 - reachable - non-empty authoritative nodes in zone 45 - have NS RR on it, are not zone's apex, and are not occluded 52 - Zone must be constant. 58 zonedb = dns.zone.from_file(zf, origin, relativize=False) 61 def __init__(self, zone: dns.zone.Zone): 63 self.zone = zon [all...] |
| /src/tests/lib/libc/time/ |
| t_strptime.c | 416 ATF_TC(zone); variable 418 ATF_TC_HEAD(zone, tc) 426 ATF_TC_BODY(zone, tc) 431 ATF_TC(Zone); 433 ATF_TC_HEAD(Zone, tc) 441 ATF_TC_BODY(Zone, tc) 510 * which time zone your machine is configured for. 600 ATF_TP_ADD_TC(tp, zone); 601 ATF_TP_ADD_TC(tp, Zone);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| GCNSchedStrategy.h | 34 void pickNodeFromQueue(SchedBoundary &Zone, const CandPolicy &ZonePolicy,
|
| GCNSchedStrategy.cpp | 142 void GCNMaxOccupancySchedStrategy::pickNodeFromQueue(SchedBoundary &Zone, 150 ReadyQueue &Q = Zone.Available; 154 initCandidate(TryCand, SU, Zone.isTop(), RPTracker, SRI, 157 SchedBoundary *ZoneArg = Cand.AtTop == TryCand.AtTop ? &Zone : nullptr; 162 TryCand.initResourceDelta(Zone.DAG, SchedModel); 182 // Set the bottom-up policy based on the state of the current bottom zone and 183 // the instructions outside the zone, including the top zone. 186 // Set the top-down policy based on the state of the current top zone and 187 // the instructions outside the zone, including the bottom zone [all...] |
| /src/external/bsd/nsd/dist/contrib/bind2nsd/bind2nsd/ |
| Zone.py | 24 # class to represent a zone file 39 class Zone: 45 self.masters = [] # empty unless we're a slave zone 52 report_info('=> Zone:')
|
| NamedConf.py | 35 from Zone import * 40 from bind2nsd.Zone import * 205 report_info('=> NamedConf: zone info...') 222 def addZone(self, zone): 223 name = zone.getName() 224 self.zones[name] = zone
|
| Parser.py | 35 from Zone import * 41 from bind2nsd.Zone import * 330 bail('? expected string for zone name (%d: %s)' % (ttype, val)) 332 zone = Zone(zname) 346 zone.setType(' '.join(info)) 351 bail('? eh? no string for zone file name? (%d: %s)' % \ 354 zone.setFile(fname) 358 zone.setMasters(qlist) 362 zone.setAllowTransfers(qlist [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/chain/ans3/ |
| ans.py | 21 import dns.zone 40 zone: dns.zone.Zone, name: dns.name.Name 42 node = zone.get_node(name) 54 prepared from zone data. 62 assert qctx.zone 63 assert qctx.zone.origin 65 relative_qname = qctx.qname.relativize(qctx.zone.origin) 70 dname_rrset = get_dname_rrset_at_name(qctx.zone, dname_owner [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/optout/ |
| tests_optout.py | 51 def has_nsec3param(zone, response): 52 match = rf"{re.escape(zone)}\.\s+\d+\s+IN\s+NSEC3PARAM\s+1\s+0\s+0\s+-" 69 xfr = dns.zone.Zone(origin=f"{qname}.", relativize=False) 76 def verify_zone(zone, transfer): 80 filename = f"{zone}.out" 85 verify_cmd = [verify, "-z", "-o", zone, filename] 90 isctest.log.error(f"dnssec-verify {zone} failed") 96 zone = "test" 99 # Wait until the provided zone is signed and then verify its DNSSEC data [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| MachineScheduler.h | 275 /// The top of the unscheduled zone. 278 /// The bottom of the unscheduled zone. 415 /// The top of the unscheduled zone. 419 /// The bottom of the unscheduled zone. 632 /// zone. It is defined as: scheduled-micro-ops / issue-width + stalls. 642 // The expected latency of the critical path in this scheduled zone. 645 // The latency of dependence chains leading into this zone. 664 // Cache the critical resources ID in this scheduled zone. 706 /// Number of cycles to issue the instructions scheduled in this zone. 712 // The latency of dependence chains leading into this zone [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| MachineScheduler.cpp | 827 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone."); 1263 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone."); 2229 // Count resources in this zone and the remaining unscheduled 2231 // resource index, or zero if the zone is issue limited. 2337 /// Add the given processor resource to this scheduled zone. 2641 /// outside this zone are resource or latency limited. 2646 /// DLat = max (N.depth - (CurrCycle - N.ReadyCycle) for N in Zone 2685 /// Set the CandPolicy given a scheduling zone given the current resources and 2686 /// latencies inside and outside the zone. 2691 // inside and outside this zone. Potential stalls should be considered befor [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| HexagonMachineScheduler.h | 108 /// ConvergingVLIWScheduler shrinks the unscheduled zone using heuristics 261 CandResult pickNodeFromQueue(VLIWSchedBoundary &Zone,
|
| HexagonMachineScheduler.cpp | 241 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone."); 765 pickNodeFromQueue(VLIWSchedBoundary &Zone, const RegPressureTracker &RPTracker, 767 ReadyQueue &Q = Zone.Available; 833 if (CurrentCost == Candidate.SCost && Zone.isLatencyBound(*I)) {
|