Home
last modified time | relevance | path

Searched refs:spec (Results 576 - 600 of 772) sorted by relevance

1...<<2122232425262728293031

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/
H A DvktYCbCrConversionTests.cpp94 ShaderSpec spec; in createShaderSpec() local
96 spec.inputs.push_back(Symbol("uv", glu::VarType(glu::TYPE_FLOAT_VEC2, glu::PRECISION_HIGHP))); in createShaderSpec()
100 spec.globalDeclarations = "layout(set=" + de::toString((int)EXTRA_RESOURCES_DESCRIPTOR_SET_INDEX) + ", binding=" + de::toString(samplerBinding) + ") uniform highp sampler2D u_sampler;"; in createShaderSpec()
102 spec.outputs.push_back(Symbol("o_color", glu::VarType(glu::TYPE_FLOAT_VEC4, glu::PRECISION_HIGHP))); in createShaderSpec()
104 spec.source = "o_color = texture(u_sampler, uv);\n"; in createShaderSpec()
108 spec.globalDeclarations = "layout(set=" + de::toString((int)EXTRA_RESOURCES_DESCRIPTOR_SET_INDEX) + ", binding=" + de::toString(samplerBinding) + ") uniform highp sampler2D u_sampler[" + de::toString(colorModels.size()) + "];"; in createShaderSpec()
112 spec.outputs.push_back(Symbol(string("o_color") + de::toString(i), glu::VarType(glu::TYPE_FLOAT_VEC4, glu::PRECISION_HIGHP))); in createShaderSpec()
114 spec.source += string("o_color") + de::toString(i) + " = texture(u_sampler[" + de::toString(i) + "], uv);\n"; in createShaderSpec()
117 return spec; in createShaderSpec()
562 const ShaderSpec spec (createShaderSpe in evalShader()
1164 ShaderSpec spec; createTestShaders() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ycbcr/
H A DvktYCbCrConversionTests.cpp94 ShaderSpec spec; in createShaderSpec() local
96 spec.inputs.push_back(Symbol("uv", glu::VarType(glu::TYPE_FLOAT_VEC2, glu::PRECISION_HIGHP))); in createShaderSpec()
100 spec.globalDeclarations = "layout(set=" + de::toString((int)EXTRA_RESOURCES_DESCRIPTOR_SET_INDEX) + ", binding=" + de::toString(samplerBinding) + ") uniform highp sampler2D u_sampler;"; in createShaderSpec()
102 spec.outputs.push_back(Symbol("o_color", glu::VarType(glu::TYPE_FLOAT_VEC4, glu::PRECISION_HIGHP))); in createShaderSpec()
104 spec.source = "o_color = texture(u_sampler, uv);\n"; in createShaderSpec()
108 spec.globalDeclarations = "layout(set=" + de::toString((int)EXTRA_RESOURCES_DESCRIPTOR_SET_INDEX) + ", binding=" + de::toString(samplerBinding) + ") uniform highp sampler2D u_sampler[" + de::toString(colorModels.size()) + "];"; in createShaderSpec()
112 spec.outputs.push_back(Symbol(string("o_color") + de::toString(i), glu::VarType(glu::TYPE_FLOAT_VEC4, glu::PRECISION_HIGHP))); in createShaderSpec()
114 spec.source += string("o_color") + de::toString(i) + " = texture(u_sampler[" + de::toString(i) + "], uv);\n"; in createShaderSpec()
117 return spec; in createShaderSpec()
562 const ShaderSpec spec (createShaderSpe in evalShader()
1091 ShaderSpec spec; createTestShaders() local
[all...]
/third_party/libuv/src/unix/
H A Dsunos.c150 struct timespec spec; in uv__io_poll() local
220 spec.tv_sec = timeout / 1000; in uv__io_poll()
221 spec.tv_nsec = (timeout % 1000) * 1000000; in uv__io_poll()
237 timeout == -1 ? NULL : &spec); in uv__io_poll()
/third_party/node/deps/uv/src/unix/
H A Dsunos.c150 struct timespec spec; in uv__io_poll() local
220 spec.tv_sec = timeout / 1000; in uv__io_poll()
221 spec.tv_nsec = (timeout % 1000) * 1000000; in uv__io_poll()
237 timeout == -1 ? NULL : &spec); in uv__io_poll()
/third_party/skia/third_party/externals/freetype/src/gxvalid/
H A Dgxvkern.c375 GXV_kern_ClassSpec spec, in gxv_kern_subtable_fmt2_clstbl_validate()
378 const FT_String* tag = GXV_KERN_FMT2_DATA( class_tag[spec] ); in gxv_kern_subtable_fmt2_clstbl_validate()
398 &( GXV_KERN_FMT2_DATA( offset_min[spec] ) ), in gxv_kern_subtable_fmt2_clstbl_validate()
399 &( GXV_KERN_FMT2_DATA( offset_max[spec] ) ), in gxv_kern_subtable_fmt2_clstbl_validate()
373 gxv_kern_subtable_fmt2_clstbl_validate( FT_Bytes table, FT_Bytes limit, GXV_kern_ClassSpec spec, GXV_Validator gxvalid ) gxv_kern_subtable_fmt2_clstbl_validate() argument
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
H A Darg.h466 static bool Dispatch(Data arg, FormatConversionSpecImpl spec, void* out) { in Dispatch() argument
468 if (ABSL_PREDICT_FALSE(spec.conversion_char() == in Dispatch()
474 spec.conversion_char()))) { in Dispatch()
478 Manager<T>::Value(arg), spec, in Dispatch()
/third_party/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp980 CInStream *spec = new CInStream; in GetStream() local
981 CMyComPtr<ISequentialInStream> specStream = spec; in GetStream()
982 spec->_cache.Alloc((size_t)_maxBlocksSize); in GetStream()
983 spec->_handlerSpec = this; in GetStream()
984 spec->_handler = (IInArchive *)this; in GetStream()
985 spec->Size = _stat.OutSize; in GetStream()
986 spec->InitAndSeek(); in GetStream()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
H A DLdmlConverter.java124 private static Predicate<CldrPath> supplementalMatcher(String... spec) { in supplementalMatcher() argument
125 checkArgument(spec.length > 0, "must supply at least one matcher spec"); in supplementalMatcher()
126 if (spec.length == 1) { in supplementalMatcher()
127 return PathMatcher.of("//supplementalData/" + spec[0])::matchesPrefixOf; in supplementalMatcher()
130 Arrays.stream(spec) in supplementalMatcher()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A DgenRef.py7 # genRef.py - create API ref pages from spec source files
116 """Add a spec asciidoc macro prefix to an API name, depending on its type
281 - specType - string containing 'spec' field from refpage open block, or None.
282 Used to determine containing spec name and URL.
315 - specType - None or the 'spec' attribute from the refpage block,
323 handwritten content from the spec.
389 # These are xrefs to other anchors, rewritten to link to the spec
481 # This should be caught in the spec markup checking tests
485 specURL = conventions.specURL(pi.spec)
499 specType=pi.spec,
[all...]
/third_party/node/tools/gyp/pylib/gyp/
H A Dcommon.py316 spec = target_dicts[r]
317 pending.update(set(spec.get("dependencies", [])))
318 pending.update(set(spec.get("dependencies_original", [])))
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dcommon.py309 spec = target_dicts[r]
310 pending.update(set(spec.get("dependencies", [])))
311 pending.update(set(spec.get("dependencies_original", [])))
/third_party/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_perfetto.cc107 auto spec = event->set_specifications(); in send_descriptors() local
110 auto desc = spec->add_hw_queue(); in send_descriptors()
117 auto desc = spec->add_stage(); in send_descriptors()
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/table/
H A DCsvTableTest.java272 private static RangeKey key(String spec, Integer... lengths) { in key() argument
274 spec.isEmpty() ? RangeSpecification.empty() : RangeSpecification.parse(spec); in key()
/third_party/pulseaudio/src/pulsecore/
H A Dsource.h229 void (*reconfigure)(pa_source *s, pa_sample_spec *spec, bool passthrough);
339 void pa_source_new_data_set_sample_spec(pa_source_new_data *data, const pa_sample_spec *spec);
422 void pa_source_reconfigure(pa_source *s, pa_sample_spec *spec, bool passthrough);
H A Dsink.h271 void (*reconfigure)(pa_sink *s, pa_sample_spec *spec, bool passthrough);
405 void pa_sink_new_data_set_sample_spec(pa_sink_new_data *data, const pa_sample_spec *spec);
453 void pa_sink_reconfigure(pa_sink *s, pa_sample_spec *spec, bool passthrough);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/
H A DItaniumDemangle.cpp29 constexpr const char *itanium_demangle::FloatData<float>::spec; member in itanium_demangle::FloatData
30 constexpr const char *itanium_demangle::FloatData<double>::spec; member in itanium_demangle::FloatData
31 constexpr const char *itanium_demangle::FloatData<long double>::spec; member in itanium_demangle::FloatData
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-tag.cc134 * https://docs.microsoft.com/en-us/typography/opentype/spec/scripttags
205 lang_matches (const char *lang_str, const char *spec) in lang_matches() argument
207 unsigned int len = strlen (spec); in lang_matches()
209 return strncmp (lang_str, spec, len) == 0 && in lang_matches()
/third_party/tzdata/
H A Dprivate.h465 # define ATTRIBUTE_FORMAT(spec) __attribute__((format spec))
468 # define ATTRIBUTE_FORMAT(spec) /* empty */
/third_party/python/Lib/
H A Dzipimport.py182 spec = _bootstrap.ModuleSpec(name=fullname, loader=None,
184 spec.submodule_search_locations.append(path)
185 return spec
/third_party/vk-gl-cts/modules/gles3/stress/
H A Des3sLongShaderTests.cpp182 LongShaderGenerator (de::Random& rnd, const LongShaderSpec& spec);
210 LongShaderGenerator::LongShaderGenerator (de::Random& rnd, const LongShaderSpec& spec)
212 , m_spec (spec)
/foundation/distributedhardware/distributed_hardware_fwk/common/utils/include/
H A Didistributed_hardware.h40 virtual std::string QueryLocalSysSpec(QueryLocalSysSpecType spec) = 0;
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/include/
H A Ddistributed_hardware_service.h43 std::string QueryLocalSysSpec(const QueryLocalSysSpecType spec) override;
/foundation/distributedhardware/distributed_hardware_fwk/interfaces/inner_kits/include/ipc/
H A Ddistributed_hardware_proxy.h39 std::string QueryLocalSysSpec(QueryLocalSysSpecType spec) override;
/third_party/mesa3d/src/broadcom/clif/
H A Dclif_private.h43 struct v3d_spec *spec; member
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Dtransupp.h180 const char *spec);

Completed in 23 milliseconds

1...<<2122232425262728293031