HomeSort by relevance Sort by last modified time
    Searched refs:domain (Results 51 - 75 of 827) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/perfetto/src/trace_processor/
clock_tracker.h 46 // given |clock_time_ns| in the given clock domain. This is typically called
50 // Converts the passed time in the given clock domain to the global trace
54 int64_t GetFirstTimestamp(ClockDomain domain) const {
55 PERFETTO_DCHECK(!clocks_[domain].empty());
56 return clocks_[domain].front().clock_time_ns;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ExecutionDepsFix.cpp 19 // This pass changes the variant instructions to minimize domain crossings.
39 /// execution domain. Multiple registers may refer to the same open
41 /// domain.
47 /// domain, but if we were forced to pay the penalty of a domain crossing, we
70 // Is domain available?
71 bool hasDomain(unsigned domain) const {
72 return AvailableDomains & (1u << domain);
75 // Mark domain as available.
76 void addDomain(unsigned domain) {
    [all...]
  /external/u-boot/arch/arm/dts/
keystone-k2hk-clocks.dtsi 62 reg-names = "control", "domain";
63 domain-id = <0>;
72 reg-names = "control", "domain";
73 domain-id = <4>;
82 reg-names = "control", "domain";
83 domain-id = <5>;
92 reg-names = "control", "domain";
93 domain-id = <9>;
102 reg-names = "control", "domain";
103 domain-id = <10>
    [all...]
keystone-k2l-clocks.dtsi 52 reg-names = "control", "domain";
54 domain-id = <0>;
63 reg-names = "control", "domain";
64 domain-id = <4>;
73 reg-names = "control", "domain";
74 domain-id = <9>;
83 reg-names = "control", "domain";
84 domain-id = <10>;
93 reg-names = "control", "domain";
94 domain-id = <11>
    [all...]
  /external/libxml2/python/tests/
tstLastError.py 23 def failUnlessXmlError(self,f,args,exc,domain,code,message,level,file,line):
36 print("domain = ",e.domain())
43 self.failUnlessEqual(domain,e.domain())
57 domain=libxml2.XML_FROM_IO,
70 domain=libxml2.XML_FROM_PARSER,
  /external/guava/guava/src/com/google/common/collect/
EmptyContiguousSet.java 33 EmptyContiguousSet(DiscreteDomain<C> domain) {
34 super(domain);
118 private final DiscreteDomain<C> domain; field in class:EmptyContiguousSet.SerializedForm
120 private SerializedForm(DiscreteDomain<C> domain) {
121 this.domain = domain;
125 return new EmptyContiguousSet<C>(domain);
134 return new SerializedForm<C>(domain);
  /external/iperf3/src/
net.h 31 int netdial(int domain, int proto, char *local, int local_port, char *server, int port, int timeout);
32 int netannounce(int domain, int proto, char *local, int port);
  /external/libdrm/nouveau/nvif/
if0002.h 20 __u8 domain; member in struct:nvif_perfmon_query_signal_v0
30 __u8 domain; member in struct:nvif_perfmon_query_source_v0
  /external/ltp/testcases/network/stress/dns/
dns-stress01-rmt 28 tst_brkm TBROK "Usage: $0 ip_ver srv_ipaddr port domain \
35 domain="$4"
51 dig @$srv_ipaddr -p $port node${min_id}.${domain} $record > ans.log 2>&1 || \
59 dig @$srv_ipaddr -p $port node${id}.${domain} $record \
67 dig @$srv_ipaddr -p $port node${id}.${domain} $record > ans.log 2>&1 || \
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_transfer.h 7 unsigned domain; member in struct:nv30_rect
31 struct nouveau_bo *, unsigned offset, unsigned domain,
  /external/curl/lib/
cookie.c 37 const char *domain, const char *path);
66 Set-cookie: PRODUCTINFO=webxpress; domain=.fidelity.com; path=/; secure
68 domain=.fidelity.com; path=/ftgw; secure
70 domain=.fidelity.com; path=/; secure
72 domain=.fidelity.com; path=/; secure
74 domain=.fidelity.com; path=/; secure
76 domain=.fidelity.com; path=/; secure
79 13-Jun-1988 03:04:55 GMT; domain=.fidelity.com; path=/; secure
107 free(co->domain);
129 RFC6265 4.1.2.3. The Domain Attribute says
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
SetCookie.java 77 * Sets the domain attribute.
79 * @param domain The value of the domain attribute
83 void setDomain(String domain);
  /external/curl/docs/cmdline-opts/
abstract-unix-socket.d 3 Help: Connect via abstract Unix domain socket
7 Connect through an abstract Unix domain socket, instead of using the network.
  /external/linux-kselftest/tools/testing/selftests/net/
socket.c 11 int domain; member in struct:socket_testcase
48 fd = socket(s->domain, s->type, s->protocol);
63 s->domain, s->type, s->protocol,
76 s->domain, s->type, s->protocol,
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_mm.h 17 nouveau_mm_create(struct nouveau_device *, uint32_t domain,
  /external/skia/src/gpu/effects/
GrTextureDomain.h 23 * Limits a texture's lookup coordinates to a domain. Samples outside the domain are either clamped
24 * the edge of the domain or result in a half4 of zeros (decal mode). The domain is clipped to
26 * domain to affect the read value unless the caller considers this when calculating the domain.
31 // Ignore the texture domain rectangle.
33 // Clamp texture coords to the domain rectangle.
35 // Treat the area outside the domain rectangle as fully transparent.
38 // read texels outside of the domain. We could perform additional texture reads and filte
60 const SkRect& domain() const { return fDomain; } function in class:GrTextureDomain
    [all...]
GrBicubicEffect.h 29 const GrTextureDomain& domain() const { return fDomain; } function in class:GrBicubicEffect
37 // Ignore the domain on x and y, since this factory relies solely on the wrap mode of the
45 * supports providing modes for the texture domain explicitly, in the event that it should
53 const SkRect* domain = nullptr) {
54 SkRect resolvedDomain = domain ? *domain : GrTextureDomain::MakeTexelDomain(
61 * Create a Mitchell filter effect with a texture matrix and a domain.
65 const SkRect& domain) {
69 GrTextureDomain::kClamp_Mode, &domain);
83 GrBicubicEffect(sk_sp<GrTextureProxy>, const SkMatrix& matrix, const SkRect& domain,
    [all...]
GrTextureDomain.cpp 24 GrTextureDomain::GrTextureDomain(GrTextureProxy* proxy, const SkRect& domain, Mode modeX,
38 // It is OK if the domain rect is a line or point, but it should not be inverted. We do not
40 SkASSERT(domain.fLeft <= domain.fRight);
41 SkASSERT(domain.fTop <= domain.fBottom);
42 fDomain.fLeft = SkScalarPin(domain.fLeft, 0.0f, kFullRect.fRight);
43 fDomain.fRight = SkScalarPin(domain.fRight, fDomain.fLeft, kFullRect.fRight);
44 fDomain.fTop = SkScalarPin(domain.fTop, 0.0f, kFullRect.fBottom);
45 fDomain.fBottom = SkScalarPin(domain.fBottom, fDomain.fTop, kFullRect.fBottom)
315 const GrTextureDomain& domain = tde.fTextureDomain; local
334 const GrTextureDomain& domain = tde.fTextureDomain; local
361 SkRect domain; local
    [all...]
  /external/skqp/src/gpu/effects/
GrTextureDomain.h 23 * Limits a texture's lookup coordinates to a domain. Samples outside the domain are either clamped
24 * the edge of the domain or result in a half4 of zeros (decal mode). The domain is clipped to
26 * domain to affect the read value unless the caller considers this when calculating the domain.
31 // Ignore the texture domain rectangle.
33 // Clamp texture coords to the domain rectangle.
35 // Treat the area outside the domain rectangle as fully transparent.
38 // read texels outside of the domain. We could perform additional texture reads and filte
60 const SkRect& domain() const { return fDomain; } function in class:GrTextureDomain
    [all...]
GrTextureDomain.cpp 24 GrTextureDomain::GrTextureDomain(GrTextureProxy* proxy, const SkRect& domain, Mode modeX,
38 // It is OK if the domain rect is a line or point, but it should not be inverted. We do not
40 SkASSERT(domain.fLeft <= domain.fRight);
41 SkASSERT(domain.fTop <= domain.fBottom);
42 fDomain.fLeft = SkScalarPin(domain.fLeft, 0.0f, kFullRect.fRight);
43 fDomain.fRight = SkScalarPin(domain.fRight, fDomain.fLeft, kFullRect.fRight);
44 fDomain.fTop = SkScalarPin(domain.fTop, 0.0f, kFullRect.fBottom);
45 fDomain.fBottom = SkScalarPin(domain.fBottom, fDomain.fTop, kFullRect.fBottom)
315 const GrTextureDomain& domain = tde.fTextureDomain; local
334 const GrTextureDomain& domain = tde.fTextureDomain; local
361 SkRect domain; local
    [all...]
  /external/u-boot/include/
power-domain-uclass.h 9 /* See power-domain.h for background documentation. */
11 #include <power-domain.h>
16 * struct power_domain_ops - The functions that a power domain controller driver
21 * of_xlate - Translate a client's device-tree (OF) power domain
24 * The power domain core calls this function as the first step in
27 * If this function pointer is set to NULL, the power domain core will
28 * use a default implementation, which assumes #power-domain-cells =
29 * <1>, and that the DT cell contains a simple integer power domain ID.
31 * At present, the power domain API solely supports device-tree. If
35 * @power_domain: The power domain struct to hold th
    [all...]
  /external/wayland/src/
wayland-os.h 30 wl_os_socket_cloexec(int domain, int type, int protocol);
  /external/python/cpython3/Lib/http/
cookiejar.py 467 known_attrs = ("expires", "domain", "path", "secure",
522 """Return True if text is a host domain name."""
537 """Return True if domain A domain-matches domain B, according to RFC 2965.
539 A and B may be host domain names or IP addresses.
545 be case-insensitive.) Host A's name domain-matches host B's if
551 x.y.com domain-matches .Y.com but not Y.com.)
553 Note that domain-match is not a commutative operation: a.b.c.com
554 domain-matches .c.com, but not the reverse
    [all...]
  /external/e2fsprogs/intl/
dcigettext.c 224 /* Domain in which to search. */
234 struct loaded_l10nfile *domain; member in struct:known_translation_t
288 /* Name of the default domain used for gettext(3) prior any call to
292 /* Value used as the default domain for gettext(3). */
309 static char *plural_lookup (struct loaded_l10nfile *domain,
434 struct loaded_l10nfile *domain; local
465 /* If DOMAINNAME is NULL, we are interested in the default domain. If
494 retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation,
610 domain. Return the MSGID. */
617 domain = _nl_find_domain (dirname, single_locale, xdomainname, binding)
728 struct loaded_domain *domain; local
    [all...]
  /external/selinux/mcstrans/src/
mcstrans.c 103 typedef struct domain { struct
113 struct domain *next;
361 destroy_domain(domain_t *domain) {
366 for (ptr = domain->trans_to_raw[i]; ptr;) {
372 domain->trans_to_raw[i] = NULL;
376 for (ptr = domain->raw_to_trans[i]; ptr;) {
385 domain->raw_to_trans[i] = NULL;
387 while (domain->base_classifications) {
388 base_classification_t *next = domain->base_classifications->next;
389 free(domain->base_classifications->trans)
406 domain_t *domain = calloc(1, sizeof(domain_t)); local
723 static domain_t *domain; local
1629 domain_t *domain = domains; local
    [all...]

Completed in 1353 milliseconds

1 23 4 5 6 7 8 91011>>