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

1 2 3 45 6 7 8 91011>>

  /external/u-boot/arch/arm/dts/
keystone-k2e-clocks.dtsi 44 reg-names = "control", "domain";
45 domain-id = <0>;
54 reg-names = "control", "domain";
55 domain-id = <5>;
64 reg-names = "control", "domain";
65 domain-id = <18>;
74 reg-names = "control", "domain";
75 domain-id = <29>;
  /external/u-boot/drivers/power/domain/
sandbox-power-domain-test.c 8 #include <power-domain.h>
10 #include <asm/power-domain.h>
45 { .compatible = "sandbox,power-domain-test" },
  /external/libdrm/nouveau/nvif/
if0003.h 6 __u8 domain; member in struct:nvif_perfdom_v0
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_transfer.h 10 unsigned domain; member in struct:nv50_m2mf_rect
  /external/skqp/src/gpu/effects/
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
58 * Create a Mitchell filter effect with a texture matrix and a domain.
62 const SkRect& domain) {
64 domain));
81 GrBicubicEffect(sk_sp<GrTextureProxy>, const SkMatrix &matrix, const SkRect& domain);
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_domain_verifier.h 30 // Verifies that the domain instructions are consistent, and the each domain is
50 // Returns the DomainMetadata pointer which surrounds the domain, and
51 // represents the common metadata within such domain. If the returned
52 // DomainMetadata pointer is nullptr, the input domain had no kDomain
55 const DomainMetadata::Domain& domain);
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
alias_analysis_test.cc 73 ![[aa_md_root]] = !{!"XLA global AA domain"}
  /external/u-boot/arch/arm/mach-davinci/include/mach/
da850_lowlevel.h 29 unsigned char domain, unsigned char state);
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 19 // This pass changes the variant instructions to minimize domain crossings.
43 /// execution domain. Multiple registers may refer to the same open
45 /// domain.
51 /// domain, but if we were forced to pay the penalty of a domain crossing, we
76 // Is domain available?
77 bool hasDomain(unsigned domain) const {
78 assert(domain <
81 return AvailableDomains & (1u << domain);
84 // Mark domain as available
647 unsigned domain = countTrailingZeros(available); local
    [all...]
  /external/guava/guava/src/com/google/common/net/
HostSpecifier.java 30 * domain name.
33 * reasonably be used in a URI, the domain name case is further restricted to
34 * include only those domain names which end in a recognized public suffix; see
45 * Similarly, if you know that a given string represents a domain name, use
67 * <li>A domain name, like {@code google.com}
97 // It is not any kind of IP address; must be a domain name or invalid.
100 final InternetDomainName domain = InternetDomainName.from(host); local
102 if (domain.hasPublicSuffix()) {
103 return new HostSpecifier(domain.toString());
107 "Domain name does not have a recognized public suffix: " + host)
    [all...]
  /external/libexif/libexif/
exif-log.h 77 typedef void (* ExifLogFunc) (ExifLog *log, ExifLogCode, const char *domain,
90 void exif_log (ExifLog *log, ExifLogCode, const char *domain,
106 void exif_logv (ExifLog *log, ExifLogCode, const char *domain,
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_buffer.h 37 uint8_t *data; /* resource's contents, if domain == 0, or cached */
42 uint8_t domain; member in struct:nv04_resource
65 struct nv04_resource *, unsigned domain);
87 return nv04_resource(resource)->domain != 0;
  /external/parameter-framework/upstream/tools/xmlGenerator/
lightRoutingUpdate.sh 91 for domain in $(parameterExecute listDomains |grep -io '^Routing.[^ ]*')
93 log "Will delete domain $domain"
94 echo "deleteDomain $domain" >> "${tmpfile}"
101 log "Generate domain commands from file(s): $*"
  /external/skia/include/private/
GrResourceKey.h 73 bool isValid() const { return kInvalidDomain != this->domain(); }
75 uint32_t domain() const { return fKey[kDomainAndSize_MetaDataIdx] & 0xffff; } function in class:GrResourceKey
77 /** size of the key data, excluding meta-data (hash, domain, etc). */
80 /** ptr to the key data, excluding meta-data (hash, domain, etc). */
92 SkDebugf("domain: %d ", this->domain());
105 Builder(GrResourceKey* key, uint32_t domain, int data32Count) : fKey(key) {
107 SkASSERT(domain != kInvalidDomain);
111 SkASSERT(SkToU16(domain) == domain);
    [all...]
  /external/skqp/include/private/
GrResourceKey.h 73 bool isValid() const { return kInvalidDomain != this->domain(); }
75 uint32_t domain() const { return fKey[kDomainAndSize_MetaDataIdx] & 0xffff; } function in class:GrResourceKey
77 /** size of the key data, excluding meta-data (hash, domain, etc). */
80 /** ptr to the key data, excluding meta-data (hash, domain, etc). */
92 SkDebugf("domain: %d ", this->domain());
105 Builder(GrResourceKey* key, uint32_t domain, int data32Count) : fKey(key) {
107 SkASSERT(domain != kInvalidDomain);
111 SkASSERT(SkToU16(domain) == domain);
    [all...]
  /external/u-boot/arch/arm/include/asm/proc-armv/
processor.h 16 * 31-07-1999 RMK Added 'domain' stuff
21 #include <asm/proc-armv/domain.h>
41 unsigned int domain;
44 domain: domain_val(DOMAIN_USER, DOMAIN_CLIENT) | \
  /external/webrtc/webrtc/libjingle/xmpp/
jid.h 21 // consists of three parts: the node, the domain and the resource, e.g.:
23 // node@domain/resource
26 // a domain. A bare jid is defined to not have a resource and a full jid
38 const std::string & domain() const { return domain_name_; } function in class:buzz::Jid
66 static std::string PrepDomain(const std::string& domain, bool* valid);
67 static void PrepDomain(const std::string& domain,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_MozillaCookieJar.py 30 domain as set in the HTTP header started with a dot (yes, I'm aware some
70 domain, domain_specified, path, secure, expires, name, value = \
81 initial_dot = domain.startswith(".")
92 domain, domain_specified, initial_dot,
129 if cookie.domain.startswith("."): initial_dot = "TRUE"
145 "\t".join([cookie.domain, initial_dot, cookie.path,
  /external/python/cpython2/Lib/
_MozillaCookieJar.py 30 domain as set in the HTTP header started with a dot (yes, I'm aware some
70 domain, domain_specified, path, secure, expires, name, value = \
81 initial_dot = domain.startswith(".")
92 domain, domain_specified, initial_dot,
129 if cookie.domain.startswith("."): initial_dot = "TRUE"
145 "\t".join([cookie.domain, initial_dot, cookie.path,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
ExecutionDomainFix.cpp 1 //===- ExecutionDomainFix.cpp - Fix execution domain issues ----*- C++ -*--===//
25 DomainValue *ExecutionDomainFix::alloc(int domain) {
28 if (domain >= 0)
29 dv->addDomain(domain);
91 void ExecutionDomainFix::force(int rx, unsigned domain) {
96 dv->addDomain(domain);
97 else if (dv->hasDomain(domain))
98 collapse(dv, domain);
101 // force the new value into domain. This costs a domain crossing
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
res_query.c 120 const char *name, /* domain name */
198 const char *name, /* domain name */
205 const char *cp, * const *domain; local
251 for (domain = (const char * const *)_res.dnsrch;
252 *domain && !done;
253 domain++) {
255 ret = res_querydomain(name, *domain, class, type,
262 * If name isn't found in this domain,
267 * from finding this entry higher in the domain.
333 * Perform a call on res_query on the concatenation of name and domain,
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
HypergeometricDistributionImpl.java 86 int[] domain = getDomain(populationSize, numberOfSuccesses, sampleSize); local
87 if (x < domain[0]) {
89 } else if (x >= domain[1]) {
92 ret = innerCumulativeProbability(domain[0], x, 1, populationSize,
100 * Return the domain for the given hypergeometric distribution parameters.
113 * Access the domain value lower bound, based on <code>p</code>, used to
117 * @return domain value lower bound, i.e. P(X &lt; <i>lower bound</i>) &lt;
126 * Access the domain value upper bound, based on <code>p</code>, used to
130 * @return domain value upper bound, i.e. P(X &lt; <i>upper bound</i>) &gt;
139 * Return the lowest domain value for the given hypergeometric distributio
199 int[] domain = getDomain(populationSize, numberOfSuccesses, sampleSize); local
321 final int[] domain = getDomain(populationSize, numberOfSuccesses, sampleSize); local
    [all...]
  /external/autotest/client/cros/power/
power_rapl.py 65 error.TestFail: If domain is invalid.
70 for domain in set(domains):
71 rapl_list.append(Rapl(domain))
79 domain: string, name of power rail domain.
121 def __init__(self, domain):
125 domain: string, name of power rail domain
128 error.TestError: If domain is invalid
130 if domain not in VALID_DOMAINS
191 def domain(self): member in class:Rapl
    [all...]
  /external/v8/tools/
callstats.py 161 def run_site(site, domain, args, timeout=None):
163 print "RUNNING DOMAIN %s" % domain
165 result_template = "{domain}#{count}.txt" if args.repeat else "{domain}.txt"
174 result = result_template.format(domain=domain, count=count)
268 domain = None
269 if args.domain:
270 domain = args.domai
    [all...]
  /external/apache-http/android/src/android/net/http/
CertificateChainValidator.java 106 * @param domain The website domain
110 HttpsConnection connection, SSLSocket sslSocket, String domain)
135 return verifyServerDomainAndCertificates((X509Certificate[]) peerCertificates, domain, "RSA");
142 * @param domain The full website hostname and domain
147 byte[][] certChain, String domain, String authType)
166 return verifyServerDomainAndCertificates(serverCertificates, domain, authType);
203 * Calls DomainNamevalidator to verify the domain, and TrustManager to verify the certs.
205 * @param domain The full website hostname and domai
    [all...]

Completed in 1219 milliseconds

1 2 3 45 6 7 8 91011>>