Searched defs:domain (Results 76 - 100 of 313) sorted by relevance

1234567891011>>

/external/skia/src/gpu/effects/
H A DGrTextureDomain.h23 * 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
60 const SkRect& domain() const { return fDomain; } function in class:GrTextureDomain
128 DomainKey(const GrTextureDomain& domain) argument
[all...]
/external/skqp/src/gpu/
H A DGrTextureAdjuster.cpp96 SkRect domain; local
115 proxy.get(), filterOrNullForBicubic, &domain);
127 proxy.get(), &kBilerp, &domain);
131 (domain.fLeft <= domain.fRight && domain.fTop <= domain.fBottom));
134 domainMode, domain, filterOrNullForBicubic);
H A DGrTextureProducer.cpp47 const SkRect domain = localRect.makeInset(0.5f, 0.5f); local
52 GrTextureDomainEffect::Make(std::move(inputProxy), SkMatrix::I(), domain, local
65 /** Determines whether a texture domain is necessary and if so what domain to use. There are two
73 * We want to avoid using a domain if possible. We consider the above rectangles, the filter type,
90 // If the constraint rectangle contains the whole proxy then no need for a domain.
99 // don't need a domain.
104 // Get the domain inset based on sampling mode (or bail if mipped)
120 // No domain can save us here.
136 // the domain
180 CreateFragmentProcessorForDomainAndFilter( sk_sp<GrTextureProxy> proxy, const SkMatrix& textureMatrix, DomainMode domainMode, const SkRect& domain, const GrSamplerState::Filter* filterOrNullForBicubic) argument
[all...]
/external/skqp/src/gpu/effects/
H A DGrTextureDomain.h23 * 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
60 const SkRect& domain() const { return fDomain; } function in class:GrTextureDomain
128 DomainKey(const GrTextureDomain& domain) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DExecutionDepsFix.cpp19 // 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) { argument
81 setSingleDomain(unsigned domain) argument
[all...]
/external/tensorflow/tensorflow/core/platform/default/gpu/
H A Dcupti_wrapper.cc107 CUpti_CallbackDomain domain,
109 return dynload::cuptiEnableCallback(enable, subscriber, domain, cbid);
114 CUpti_CallbackDomain domain) {
115 return dynload::cuptiEnableDomain(enable, subscriber, domain);
105 EnableCallback(uint32_t enable, CUpti_SubscriberHandle subscriber, CUpti_CallbackDomain domain, CUpti_CallbackId cbid) argument
112 EnableDomain(uint32_t enable, CUpti_SubscriberHandle subscriber, CUpti_CallbackDomain domain) argument
/external/toybox/lib/
H A Dnet.c3 int xsocket(int domain, int type, int protocol) argument
5 int fd = socket(domain, type, protocol);
/external/ImageMagick/MagickCore/
H A Dconstitute.c396 domain;
416 domain=CoderPolicyDomain;
418 if (IsRightsAuthorized(domain,rights,read_info->magick) == MagickFalse)
992 domain;
1018 domain=CoderPolicyDomain;
1020 if (IsRightsAuthorized(domain,rights,write_info->magick) == MagickFalse)
391 domain; local
984 domain; local
H A Dpolicy.c80 domain;
105 domain;
228 policy_info->domain=p->domain;
564 % requested rights for the specified domain.
568 % MagickBooleanType IsRightsAuthorized(const PolicyDomain domain, argument
573 % o domain: the policy domain.
580 MagickExport MagickBooleanType IsRightsAuthorized(const PolicyDomain domain,
597 CommandOptionToMnemonic(MagickPolicyDomainOptions,domain),
77 domain; member in struct:_PolicyInfo
102 domain; member in struct:_PolicyMapInfo
646 *domain; local
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie.java187 * Returns domain attribute of the cookie.
189 * @return the value of the domain attribute
198 * Sets the domain attribute.
200 * @param domain The value of the domain attribute
204 public void setDomain(String domain) { argument
205 if (domain != null) {
206 cookieDomain = domain.toLowerCase(Locale.ENGLISH);
339 buffer.append("[domain: ");
/external/curl/lib/vauth/
H A Ddigest_sspi.c252 * This is used to populate the domain in a SSPI identity structure
254 * domain if it is not already explicitly set.
266 xcharp_u domain, dup_domain; local
268 /* If domain is blank or unset, check challenge message for realm */
282 /* Setup identity's domain and length */
283 domain.tchar_ptr = Curl_convert_UTF8_to_tchar((char *) content);
284 if(!domain.tchar_ptr)
287 dup_domain.tchar_ptr = _tcsdup(domain.tchar_ptr);
289 Curl_unicodefree(domain.tchar_ptr);
298 Curl_unicodefree(domain
[all...]
H A Dntlm.c389 const char *domain = ""; /* empty */ local
394 domain are empty */
410 "%c%c" /* domain length */
411 "%c%c" /* domain allocated space */
412 "%c%c" /* domain name offset */
419 "%s", /* domain string */
437 domain /* this is empty */);
526 const char *domain = ""; local
539 domain = userp;
540 domlen = (user - domain);
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DImmutableRangeSet.java329 * Returns an {@link ImmutableSortedSet} containing the same values in the given domain
344 * @throws IllegalArgumentException if neither this range nor the domain has a lower bound, or if
347 public ImmutableSortedSet<C> asSet(DiscreteDomain<C> domain) { argument
348 checkNotNull(domain);
352 Range<C> span = span().canonical(domain);
360 domain.maxValue();
367 return new AsSet(domain);
371 private final DiscreteDomain<C> domain; field in class:ImmutableRangeSet.AsSet
373 AsSet(DiscreteDomain<C> domain) { argument
375 this.domain
513 private final DiscreteDomain<C> domain; field in class:ImmutableRangeSet.AsSetSerializedForm
515 AsSetSerializedForm(ImmutableList<Range<C>> ranges, DiscreteDomain<C> domain) argument
[all...]
H A DRegularContiguousSet.java39 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) { argument
40 super(domain);
46 ? ContiguousSet.create(range.intersection(other), domain)
47 : new EmptyContiguousSet<C>(domain);
58 return new EmptyContiguousSet<C>(domain);
71 return contains(target) ? (int) domain.distance(first(), (C) target) : -1;
80 return equalsOrThrow(previous, last) ? null : domain.next(previous);
92 return equalsOrThrow(previous, first) ? null : domain.previous(previous);
106 return range.lowerBound.leastValueAbove(domain);
110 return range.upperBound.greatestValueBelow(domain);
181 final DiscreteDomain<C> domain; field in class:RegularContiguousSet.SerializedForm
183 SerializedForm(Range<C> range, DiscreteDomain<C> domain) argument
[all...]
/external/guava/guava/src/com/google/common/net/
H A DInternetDomainName.java37 * An immutable well-formed internet domain name, such as {@code com} or {@code
39 * network interactions take place. Thus there is no guarantee that the domain
43 * likely to represent an addressable domain on the web -- that is, for a
46 * done by determining whether the domain ended with a {@linkplain
50 * result, the only useful test to determine if a domain is a plausible web host
67 * Internationalized domain names</a> such as {@code 网络.cn} are supported, as
93 * Maximum parts (labels) in a domain name. This value arises from
103 * Maximum length of a full domain name, including separators, and
110 * Maximum size of a single part of a domain name. See
116 * The full domain nam
212 from(String domain) argument
509 matchesWildcardPublicSuffix(String domain) argument
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dcciss_ioctl.h16 unsigned short domain; member in struct:_cciss_pci_info_struct
/external/libbrillo/brillo/dbus/
H A Ddbus_method_invoker_unittest.cc283 AsyncErrorCallback ErrorCallback(const std::string& domain, argument
288 [](const std::string& domain,
295 EXPECT_EQ(domain, error->GetDomain());
299 domain,
/external/libdrm/radeon/
H A Dradeon_bo_gem.c220 static int bo_is_busy(struct radeon_bo_int *boi, uint32_t *domain) argument
226 args.domain = 0;
231 *domain = args.domain;
/external/libxml2/
H A Derror.c251 int domain; local
268 domain = err->domain;
291 else if ((line != 0) && (domain == XML_FROM_PARSER))
298 ((domain == XML_FROM_PARSER) || (domain == XML_FROM_SCHEMASV)||
299 (domain == XML_FROM_SCHEMASP)||(domain == XML_FROM_DTD) ||
300 (domain == XML_FROM_RELAXNGP)||(domain
455 __xmlRaiseError(xmlStructuredErrorFunc schannel, xmlGenericErrorFunc channel, void *data, void *ctx, void *nod, int domain, int code, xmlErrorLevel level, const char *file, int line, const char *str1, const char *str2, const char *str3, int int1, int col, const char *msg, ...) argument
651 __xmlSimpleError(int domain, int code, xmlNodePtr node, const char *msg, const char *extra) argument
[all...]
/external/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp19 // 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 a
295 force(int rx, unsigned domain) argument
318 collapse(DomainValue *dv, unsigned domain) argument
588 visitHardInstr(MachineInstr *mi, unsigned domain) argument
647 unsigned domain = countTrailingZeros(available); local
[all...]
/external/ltp/lib/
H A Dsafe_net.c85 int domain, int type, int protocol)
89 rval = socket(domain, type, protocol);
94 domain, type, protocol);
84 safe_socket(const char *file, const int lineno, void (cleanup_fn)(void), int domain, int type, int protocol) argument
/external/ltp/testcases/kernel/syscalls/connect/
H A Dconnect01.c71 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t
206 s = SAFE_SOCKET(cleanup, tdat[testno].domain, tdat[testno].type,
/external/ltp/testcases/kernel/syscalls/recv/
H A Drecv01.c71 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t
196 s = SAFE_SOCKET(cleanup, tdat[testno].domain, tdat[testno].type,
/external/ltp/testcases/kernel/syscalls/recvfrom/
H A Drecvfrom01.c78 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t
218 s = SAFE_SOCKET(cleanup, tdat[testno].domain, tdat[testno].type,
/external/ltp/testcases/kernel/syscalls/send/
H A Dsend01.c56 int domain; /* PF_INET, PF_UNIX, ... */ member in struct:test_case_t
79 {.domain = PF_INET,
91 {.domain = 0,
105 {.domain = PF_INET,
118 {.domain = PF_INET,
130 {.domain = PF_INET,
144 {.domain = PF_INET,
328 s = SAFE_SOCKET(cleanup, tdat[testno].domain, tdat[testno].type,

Completed in 2257 milliseconds

1234567891011>>