Searched defs:domain (Results 51 - 75 of 313) sorted by relevance

1234567891011>>

/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
H A Dalias_analysis.cc96 // so that when functions get inlined, we continue using the one domain,
101 // same LLVM module, they'll have the same alias scope domain. This isn't a
104 metadata_builder.createAliasScopeDomain("XLA global AA domain");
110 const BufferAllocation::Slice& buffer_slice, llvm::MDNode* domain) {
117 llvm::MDBuilder metadata_builder(domain->getContext());
119 AsStringRef("buffer: " + buffer_slice.ToString()), domain);
120 llvm::MDNode* scope_list = llvm::MDNode::get(domain->getContext(), scope);
125 const BufferAllocation::Slice& buffer_slice, llvm::MDNode* domain,
197 llvm::MDBuilder metadata_builder(domain->getContext());
201 AsStringRef("buffer: " + noalias_slice.ToString()), domain);
109 GetAliasScopeMetadataForBuffer( const BufferAllocation::Slice& buffer_slice, llvm::MDNode* domain) argument
124 GetNoaliasMetadataForBuffer( const BufferAllocation::Slice& buffer_slice, llvm::MDNode* domain, const BufferAssignment& assignment, const HloInstruction& hlo) argument
[all...]
/external/wayland/src/
H A Dwayland-os.c61 wl_os_socket_cloexec(int domain, int type, int protocol) argument
65 fd = socket(domain, type | SOCK_CLOEXEC, protocol);
71 fd = socket(domain, type, protocol);
/external/autotest/client/cros/netprotos/
H A Dzeroconf.py59 def __init__(self, host, hostname, domain='local'):
63 hostname and a domain that defaults to 'local'. The ZeroconfDaemon will
72 self._domain = domain
109 """The hostname part within a domain."""
114 def domain(self): member in class:ZeroconfDaemon
115 """The domain where the given hostname is running."""
121 """The full hostname designation including host and domain name."""
235 "service.proto.domain". The target host, this is, the host where the
237 daemon is running, "hostname.domain".
309 ### RFC 1035 - 3.3.12, Domain names - PTR (domain nam
[all...]
/external/autotest/client/cros/power/
H A Dpower_rapl.py65 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 no
191 def domain(self): member in class:Rapl
[all...]
/external/curl/lib/
H A Dcookie.h34 char *domain; /* domain = <this> */ member in struct:Cookie
37 bool tailmatch; /* weather we do tail-matchning of the domain name */
78 * Add a cookie to the internal list of cookies. The domain and path arguments
84 const char *domain, const char *path);
H A Dcurl_ntlm_wb.c120 char *slash, *domain = NULL; local
160 domain = strdup(username);
161 if(!domain)
163 slash = domain + (slash - username);
165 username = username + (slash - domain) + 1;
219 if(domain)
224 "--domain", domain,
242 free(domain);
247 free(domain);
[all...]
H A Dsmtp.h69 char *domain; /* Client address/name to send in the EHLO */ member in struct:smtp_conn
/external/guava/guava/src/com/google/common/collect/
H A DCut.java49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain); argument
50 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain); argument
55 abstract C leastValueAbove(DiscreteDomain<C> domain); argument
56 abstract C greatestValueBelow(DiscreteDomain<C> domain); argument
62 Cut<C> canonical(DiscreteDomain<C> domain) { argument
132 DiscreteDomain<Comparable<?>> domain) {
136 DiscreteDomain<Comparable<?>> domain) {
146 DiscreteDomain<Comparable<?>> domain) {
147 return domain.minValue();
150 DiscreteDomain<Comparable<?>> domain) {
131 withLowerBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
135 withUpperBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
145 leastValueAbove( DiscreteDomain<Comparable<?>> domain) argument
149 greatestValueBelow( DiscreteDomain<Comparable<?>> domain) argument
153 canonical( DiscreteDomain<Comparable<?>> domain) argument
200 withLowerBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
204 withUpperBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
214 leastValueAbove( DiscreteDomain<Comparable<?>> domain) argument
218 greatestValueBelow( DiscreteDomain<Comparable<?>> domain) argument
252 withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
263 withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
280 leastValueAbove(DiscreteDomain<C> domain) argument
283 greatestValueBelow(DiscreteDomain<C> domain) argument
313 withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
324 withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
341 leastValueAbove(DiscreteDomain<C> domain) argument
344 greatestValueBelow(DiscreteDomain<C> domain) argument
347 canonical(DiscreteDomain<C> domain) argument
[all...]
H A DEmptyContiguousSet.java33 EmptyContiguousSet(DiscreteDomain<C> domain) { argument
34 super(domain);
118 private final DiscreteDomain<C> domain; field in class:EmptyContiguousSet.SerializedForm
120 private SerializedForm(DiscreteDomain<C> domain) { argument
121 this.domain = domain;
125 return new EmptyContiguousSet<C>(domain);
134 return new SerializedForm<C>(domain);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DEmptyContiguousSet.java31 EmptyContiguousSet(DiscreteDomain<C> domain) { argument
32 super(domain);
H A DRegularContiguousSet.java37 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) { argument
38 super(domain);
44 ? ContiguousSet.create(range.intersection(other), domain)
45 : new EmptyContiguousSet<C>(domain);
56 return new EmptyContiguousSet<C>(domain);
73 return equalsOrThrow(previous, last) ? null : domain.next(previous);
87 return range.lowerBound.leastValueAbove(domain);
91 return range.upperBound.greatestValueBelow(domain);
95 long distance = domain.distance(first(), last());
120 checkArgument(this.domain
[all...]
/external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
H A DInternetDomainNameTest.java46 * A domain part which is valid under lenient validation, but invalid under
213 final InternetDomainName domain = InternetDomainName.from(name);
214 assertTrue(name, domain.isPublicSuffix());
215 assertTrue(name, domain.hasPublicSuffix());
216 assertFalse(name, domain.isUnderPublicSuffix());
217 assertFalse(name, domain.isTopPrivateDomain());
218 assertEquals(domain, domain.publicSuffix());
222 final InternetDomainName domain = InternetDomainName.from(name);
223 assertFalse(name, domain
396 idn(String domain) argument
[all...]
/external/guava/guava-tests/test/com/google/common/net/
H A DInternetDomainNameTest.java48 * A domain part which is valid under lenient validation, but invalid under
215 final InternetDomainName domain = InternetDomainName.from(name);
216 assertTrue(name, domain.isPublicSuffix());
217 assertTrue(name, domain.hasPublicSuffix());
218 assertFalse(name, domain.isUnderPublicSuffix());
219 assertFalse(name, domain.isTopPrivateDomain());
220 assertEquals(domain, domain.publicSuffix());
224 final InternetDomainName domain = InternetDomainName.from(name);
225 assertFalse(name, domain
398 idn(String domain) argument
[all...]
/external/javassist/src/main/javassist/
H A DLoader.java140 private ProtectionDomain domain; field in class:Loader
188 domain = null;
208 * Sets the protection domain for the classes handled by this class
209 * loader. Without registering an appropriate protection domain,
214 domain = d;
378 if (domain == null)
381 return defineClass(name, classfile, 0, classfile.length, domain);
/external/javassist/src/main/javassist/scopedpool/
H A DScopedClassPool.java291 public Class toClass(CtClass ct, ClassLoader loader, ProtectionDomain domain) argument
306 return super.toClass(ct, getClassLoader0(), domain);
/external/libdrm/radeon/
H A Dradeon_bo.c93 int radeon_bo_is_busy(struct radeon_bo *bo, uint32_t *domain) argument
96 return boi->bom->funcs->bo_is_busy(boi, domain);
/external/ltp/testcases/kernel/syscalls/accept/
H A Daccept01.c57 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t
159 s = SAFE_SOCKET(cleanup, tdat[testno].domain, tdat[testno].type,
/external/ltp/testcases/kernel/syscalls/getsockopt/
H A Dgetsockopt01.c70 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t
197 s = SAFE_SOCKET(cleanup, tdat[testno].domain, tdat[testno].type,
/external/ltp/testcases/kernel/syscalls/setsockopt/
H A Dsetsockopt01.c70 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t
204 s = SAFE_SOCKET(cleanup, tdat[testno].domain, tdat[testno].type,
/external/ltp/testcases/kernel/syscalls/sockioctl/
H A Dsockioctl01.c68 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t
208 s = SAFE_SOCKET(cleanup, tdat[testno].domain, tdat[testno].type,
221 s = SAFE_SOCKET(cleanup, tdat[testno].domain, tdat[testno].type,
/external/mdnsresponder/mDNSPosix/
H A DClient.c46 domainname domain; local
57 DeconstructServiceName(&answer->rdata->u.name, &name, &type, &domain);
61 ConvertDomainNameToCString(&domain, domainC);
69 fprintf(stderr, "*** %s name = '%s', type = '%s', domain = '%s'\n", state, nameC, typeC, domainC);
105 "Usage: %s [-v level] [-t type] [-d domain]\n",
112 fprintf(stderr, " -d uses 'domain' as the domain to browse (default is '%s')\n", kDefaultDomain);
176 // mDNS query, looking for all AFP servers in the local domain.
182 domainname domain; local
197 MakeDomainNameFromDNSNameString(&domain, gServiceDomai
[all...]
/external/mdnsresponder/mDNSShared/
H A DPlatformCommon.c106 mDNSexport void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled) argument
113 if (domain) domain->c[0] = 0;
120 if (domain && GetConfigOption(buf, "zone", f) && !MakeDomainNameFromDNSNameString(domain, buf)) goto badf;
132 if (domain && domain->c[0] && buf[0])
135 // for now we assume keyname = service reg domain and we use same key for service and hostname registration
136 err = mDNS_SetSecretForDomain(m, info, domain, domain, bu
[all...]
/external/mdnsresponder/mDNSWindows/ControlPanel/
H A DRegistrationPage.cpp359 CString domain; local
364 domain = domainUTF8;
366 err = RegCreateKeyEx( m_registrationSetupKey, domain, 0,
/external/mdnsresponder/mDNSWindows/
H A DSecret.c163 char domain[ 1024 ]; local
181 ZeroMemory( domain, sizeof( domain ) );
184 err = strcpy_s( domain, sizeof( domain ) - 2, inDomain );
187 if ( domain[ inDomainLength - 1 ] != '.' )
189 domain[ inDomainLength++ ] = '.';
190 domain[ inDomainLength ] = '\0';
225 err = MakeLsaStringFromUTF8String( &lucZoneName, domain );
/external/skia/src/gpu/
H A DGrTextureAdjuster.cpp107 SkRect domain; local
126 proxy.get(), filterOrNullForBicubic, &domain);
138 proxy.get(), &kBilerp, &domain);
142 (domain.fLeft <= domain.fRight && domain.fTop <= domain.fBottom));
145 domainMode, domain, filterOrNullForBicubic);

Completed in 673 milliseconds

1234567891011>>