Home
last modified time | relevance | path

Searched refs:output_type (Results 1 – 25 of 148) sorted by relevance

123456

/third_party/node/deps/v8/src/compiler/
Drepresentation-change.cc158 Node* node, MachineRepresentation output_rep, Type output_type, in GetRepresentationFor() argument
160 if (output_rep == MachineRepresentation::kNone && !output_type.IsNone()) { in GetRepresentationFor()
163 return TypeError(node, output_rep, output_type, use_info.representation()); in GetRepresentationFor()
167 if (output_type.Is(Type::BigInt()) && in GetRepresentationFor()
170 if (output_type.Is(Type::UnsignedBigInt64())) { in GetRepresentationFor()
205 return GetTaggedSignedRepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
211 return GetTaggedPointerRepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
215 return GetTaggedRepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
219 return GetFloat32RepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
226 return GetFloat64RepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
[all …]
Dsimplified-lowering-verifier.cc125 Type output_type = in VisitNode() local
131 CheckAndSet(node, output_type, output_trunc); in VisitNode()
135 Type output_type = in VisitNode() local
141 CheckAndSet(node, output_type, output_trunc); in VisitNode()
160 Type output_type; in VisitNode() local
163 output_type = op_typer.BigIntAdd(left_type, right_type); in VisitNode()
167 output_type = op_typer.NumberAdd(left_type, right_type); in VisitNode()
185 CheckAndSet(node, output_type, output_trunc); in VisitNode()
199 Type output_type = op_typer.TypeTypeGuard(node->op(), InputType(node, 0)); in VisitNode() local
202 CheckAndSet(node, output_type, InputTruncation(node, 0)); in VisitNode()
[all …]
Drepresentation-change.h332 Type output_type, Node* use_node,
367 Type output_type, Node* use_node,
371 Type output_type, Node* use_node,
374 Type output_type, Truncation truncation);
377 Type output_type, Truncation truncation);
380 Type output_type, Node* use_node,
383 Type output_type, Node* use_node,
386 Type output_type);
388 Type output_type, Node* use_node,
391 Type output_type, MachineRepresentation use);
/third_party/gn/src/gn/
Drust_values_generator.cc34 if (target_->output_type() == Target::SOURCE_SET) in Run()
38 if (target_->output_type() != Target::EXECUTABLE && in Run()
39 target_->output_type() != Target::SHARED_LIBRARY && in Run()
40 target_->output_type() != Target::RUST_LIBRARY && in Run()
41 target_->output_type() != Target::RUST_PROC_MACRO && in Run()
42 target_->output_type() != Target::STATIC_LIBRARY && in Run()
43 target_->output_type() != Target::LOADABLE_MODULE) { in Run()
48 target_->output_type())) + in Run()
87 if (target_->output_type() == Target::SHARED_LIBRARY || in FillCrateType()
88 target_->output_type() == Target::LOADABLE_MODULE) { in FillCrateType()
[all …]
Druntime_deps.cc79 if (target->output_type() == Target::EXECUTABLE || in RecursiveCollectRuntimeDeps()
80 target->output_type() == Target::LOADABLE_MODULE || in RecursiveCollectRuntimeDeps()
81 target->output_type() == Target::SHARED_LIBRARY) { in RecursiveCollectRuntimeDeps()
91 if (is_target_data_dep && (target->output_type() == Target::ACTION || in RecursiveCollectRuntimeDeps()
92 target->output_type() == Target::ACTION_FOREACH || in RecursiveCollectRuntimeDeps()
93 target->output_type() == Target::COPY_FILES)) { in RecursiveCollectRuntimeDeps()
108 if (target->output_type() == Target::CREATE_BUNDLE) { in RecursiveCollectRuntimeDeps()
117 if (dep_pair.ptr->output_type() == Target::EXECUTABLE) in RecursiveCollectRuntimeDeps()
119 if (dep_pair.ptr->output_type() == Target::SHARED_LIBRARY && in RecursiveCollectRuntimeDeps()
120 (target->output_type() == Target::ACTION || in RecursiveCollectRuntimeDeps()
[all …]
Dtarget_generator.cc81 const std::string& output_type, in GenerateTarget() argument
104 if (output_type == functions::kBundleData) { in GenerateTarget()
108 } else if (output_type == functions::kCreateBundle) { in GenerateTarget()
112 } else if (output_type == functions::kCopy) { in GenerateTarget()
115 } else if (output_type == functions::kAction) { in GenerateTarget()
119 } else if (output_type == functions::kActionForEach) { in GenerateTarget()
123 } else if (output_type == functions::kExecutable) { in GenerateTarget()
127 } else if (output_type == functions::kGroup) { in GenerateTarget()
130 } else if (output_type == functions::kLoadableModule) { in GenerateTarget()
134 } else if (output_type == functions::kSharedLibrary) { in GenerateTarget()
[all …]
Dtarget.cc130 if (target->output_type() == Target::CREATE_BUNDLE) { in EnsureFileIsGeneratedByDependency()
181 if (pair.ptr->output_type() == Target::EXECUTABLE) in RecursiveCheckAssertNoDeps()
638 if (output_type() == Target::ACTION || output_type() == Target::COPY_FILES || in GetOutputsAsSourceFiles()
639 output_type() == Target::ACTION_FOREACH || in GetOutputsAsSourceFiles()
640 output_type() == Target::GENERATED_FILE) { in GetOutputsAsSourceFiles()
642 } else if (output_type() == Target::CREATE_BUNDLE) { in GetOutputsAsSourceFiles()
645 } else if (IsBinary() && output_type() != Target::SOURCE_SET) { in GetOutputsAsSourceFiles()
648 DCHECK(IsBinary()) << static_cast<int>(output_type()); in GetOutputsAsSourceFiles()
688 if (output_type() == Target::COPY_FILES || in GetOutputFilesForSource()
689 output_type() == Target::ACTION_FOREACH) { in GetOutputFilesForSource()
[all …]
Dresolved_target_data.cc150 if (!dep->IsFinal() || dep->output_type() == Target::STATIC_LIBRARY) { in ComputeLibInfo()
182 if (!dep->IsFinal() || dep->output_type() == Target::STATIC_LIBRARY) { in ComputeFrameworkInfo()
256 if (dep->output_type() == Target::STATIC_LIBRARY || in ComputeInheritedLibsFor()
257 dep->output_type() == Target::SHARED_LIBRARY || in ComputeInheritedLibsFor()
258 dep->output_type() == Target::RUST_LIBRARY || in ComputeInheritedLibsFor()
259 dep->output_type() == Target::SOURCE_SET || in ComputeInheritedLibsFor()
260 (dep->output_type() == Target::CREATE_BUNDLE && in ComputeInheritedLibsFor()
264 if (dep->output_type() == Target::SHARED_LIBRARY) { in ComputeInheritedLibsFor()
287 if (pair.target()->output_type() == Target::SHARED_LIBRARY && in ComputeInheritedLibsFor()
300 if (pair.target()->output_type() != Target::RUST_PROC_MACRO) in ComputeInheritedLibsFor()
[all …]
Dninja_target_writer.cc77 if (target->output_type() == Target::BUNDLE_DATA) { in RunAndWriteFile()
80 } else if (target->output_type() == Target::CREATE_BUNDLE) { in RunAndWriteFile()
83 } else if (target->output_type() == Target::COPY_FILES) { in RunAndWriteFile()
86 } else if (target->output_type() == Target::ACTION || in RunAndWriteFile()
87 target->output_type() == Target::ACTION_FOREACH) { in RunAndWriteFile()
90 } else if (target->output_type() == Target::GROUP) { in RunAndWriteFile()
93 } else if (target->output_type() == Target::GENERATED_FILE) { in RunAndWriteFile()
380 if (target_->output_type() == Target::ACTION || in WriteInputDepsStampAndGetDep()
381 target_->output_type() == Target::ACTION_FOREACH) in WriteInputDepsStampAndGetDep()
397 if (target_->output_type() == Target::ACTION) { in WriteInputDepsStampAndGetDep()
[all …]
Daction_values.cc18 if (target->output_type() == Target::BUNDLE_DATA) { in GetOutputsAsSourceFiles()
21 } else if (target->output_type() == Target::COPY_FILES || in GetOutputsAsSourceFiles()
22 target->output_type() == Target::ACTION_FOREACH) { in GetOutputsAsSourceFiles()
/third_party/gstreamer/gstplugins_bad/ext/vulkan/shaders/
Dview_convert.frag33 int output_type;
48 if (output_type == VIEW_MONO_DOWNMIX) {
58 } else if (output_type == VIEW_MONO_LEFT) {
60 } else if (output_type == VIEW_MONO_RIGHT) {
62 } else if (output_type == VIEW_SIDE_BY_SIDE) {
68 } else if (output_type == VIEW_TOP_BOTTOM) {
74 } else if (output_type == VIEW_COLUMN_INTERLEAVED) {
80 } else if (output_type == VIEW_ROW_INTERLEAVED) {
86 } else if (output_type == VIEW_CHECKERBOARD) {
/third_party/protobuf/php/src/Google/Protobuf/Internal/
DMethodDescriptorProto.php34 protected $output_type = null; variable in Google\\Protobuf\\Internal\\MethodDescriptorProto
151 return isset($this->output_type) ? $this->output_type : '';
156 return isset($this->output_type);
161 unset($this->output_type);
172 $this->output_type = $var;
/third_party/openssl/apps/
Ddsa.c90 const char *output_type = NULL, *ciphername = NULL; in dsa_main() local
230 output_type = "DER"; in dsa_main()
232 output_type = "PEM"; in dsa_main()
234 output_type = "MSBLOB"; in dsa_main()
240 output_type = "PVK"; in dsa_main()
263 ectx = OSSL_ENCODER_CTX_new_for_pkey(pkey, selection, output_type, in dsa_main()
266 BIO_printf(bio_err, "%s format not supported\n", output_type); in dsa_main()
Drsa.c137 const char *output_type = NULL; in rsa_main() local
321 output_type = "DER"; in rsa_main()
323 output_type = "PEM"; in rsa_main()
325 output_type = "MSBLOB"; in rsa_main()
331 output_type = "PVK"; in rsa_main()
364 output_type, output_structure, in rsa_main()
369 BIO_printf(bio_err, "%s format not supported\n", output_type); in rsa_main()
/third_party/node/deps/openssl/openssl/apps/
Ddsa.c90 const char *output_type = NULL, *ciphername = NULL; in dsa_main() local
230 output_type = "DER"; in dsa_main()
232 output_type = "PEM"; in dsa_main()
234 output_type = "MSBLOB"; in dsa_main()
240 output_type = "PVK"; in dsa_main()
263 ectx = OSSL_ENCODER_CTX_new_for_pkey(pkey, selection, output_type, in dsa_main()
266 BIO_printf(bio_err, "%s format not supported\n", output_type); in dsa_main()
Drsa.c137 const char *output_type = NULL; in rsa_main() local
321 output_type = "DER"; in rsa_main()
323 output_type = "PEM"; in rsa_main()
325 output_type = "MSBLOB"; in rsa_main()
331 output_type = "PVK"; in rsa_main()
364 output_type, output_structure, in rsa_main()
369 BIO_printf(bio_err, "%s format not supported\n", output_type); in rsa_main()
/third_party/mesa3d/src/intel/tools/
Di965_asm.c37 static enum opt_output_type output_type = OPT_OUTPUT_BIN; variable
77 switch (output_type) { in print_instruction()
99 if (output_type != OPT_OUTPUT_BIN) { in print_instruction()
251 output_type = OPT_OUTPUT_HEX; in main()
253 output_type = OPT_OUTPUT_C_LITERAL; in main()
255 output_type = OPT_OUTPUT_BIN; in main()
334 if (output_type == OPT_OUTPUT_C_LITERAL) in main()
361 if (output_type == OPT_OUTPUT_C_LITERAL) in main()
/third_party/python/Lib/
Dtempfile.py116 output_type = _infer_return_type(prefix, suffix, dir)
118 suffix = output_type()
120 if output_type is str:
125 if output_type is str:
129 return prefix, suffix, dir, output_type
244 def _mkstemp_inner(dir, pre, suf, flags, output_type): argument
248 if output_type is bytes:
334 prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
341 return _mkstemp_inner(dir, prefix, suffix, flags, output_type)
357 prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_opcodes.py35 def __init__(self, name, output_size, output_type, input_sizes, argument
69 assert isinstance(output_type, str)
86 self.output_type = output_type
154 def opcode(name, output_size, output_type, input_sizes, input_types, argument
157 opcodes[name] = Opcode(name, output_size, output_type, input_sizes,
167 def unop_horiz(name, output_size, output_type, input_size, input_type, argument
169 opcode(name, output_size, output_type, [input_size], [input_type],
172 def unop_reduce(name, output_size, output_type, input_type, prereduce_expr, argument
184 unop_horiz(name + "2", output_size, output_type, 2, input_type,
186 unop_horiz(name + "3", output_size, output_type, 3, input_type,
[all …]
/third_party/openssl/crypto/encode_decode/
Dencoder_lib.c159 const char *output_type) in OSSL_ENCODER_CTX_set_output_type() argument
161 if (!ossl_assert(ctx != NULL) || !ossl_assert(output_type != NULL)) { in OSSL_ENCODER_CTX_set_output_type()
166 ctx->output_type = output_type; in OSSL_ENCODER_CTX_set_output_type()
218 encoder_inst->output_type = ossl_property_get_string_value(libctx, prop); in ossl_encoder_instance_new()
219 if (encoder_inst->output_type == NULL) { in ossl_encoder_instance_new()
380 return encoder_inst->output_type; in OSSL_ENCODER_INSTANCE_get_output_type()
454 if (data->ctx->output_type != NULL in encoder_process()
456 data->ctx->output_type) != 0) { in encoder_process()
461 current_output_type, data->ctx->output_type); in encoder_process()
Dencoder_pkey.c76 const char *output_type; member
269 encoder_data.output_type = ctx->output_type; in ossl_encoder_ctx_setup_for_pkey()
319 const char *output_type, in OSSL_ENCODER_CTX_new_for_pkey() argument
353 output_type, output_struct); in OSSL_ENCODER_CTX_new_for_pkey()
356 if (OSSL_ENCODER_CTX_set_output_type(ctx, output_type) in OSSL_ENCODER_CTX_new_for_pkey()
/third_party/node/deps/openssl/openssl/crypto/encode_decode/
Dencoder_lib.c159 const char *output_type) in OSSL_ENCODER_CTX_set_output_type() argument
161 if (!ossl_assert(ctx != NULL) || !ossl_assert(output_type != NULL)) { in OSSL_ENCODER_CTX_set_output_type()
166 ctx->output_type = output_type; in OSSL_ENCODER_CTX_set_output_type()
218 encoder_inst->output_type = ossl_property_get_string_value(libctx, prop); in ossl_encoder_instance_new()
219 if (encoder_inst->output_type == NULL) { in ossl_encoder_instance_new()
380 return encoder_inst->output_type; in OSSL_ENCODER_INSTANCE_get_output_type()
454 if (data->ctx->output_type != NULL in encoder_process()
456 data->ctx->output_type) != 0) { in encoder_process()
461 current_output_type, data->ctx->output_type); in encoder_process()
Dencoder_pkey.c76 const char *output_type; member
269 encoder_data.output_type = ctx->output_type; in ossl_encoder_ctx_setup_for_pkey()
319 const char *output_type, in OSSL_ENCODER_CTX_new_for_pkey() argument
353 output_type, output_struct); in OSSL_ENCODER_CTX_new_for_pkey()
356 if (OSSL_ENCODER_CTX_set_output_type(ctx, output_type) in OSSL_ENCODER_CTX_new_for_pkey()
/third_party/gstreamer/gstplugins_bad/sys/mediafoundation/
Dgstmfaacenc.cpp94 GstAudioInfo * info, IMFMediaType ** output_type);
209 IMFMediaType ** output_type) in gst_mf_aac_enc_get_output_type() argument
352 *output_type = target_output.Detach (); in gst_mf_aac_enc_get_output_type()
444 ComPtr < IMFMediaType > output_type; in gst_mf_aac_enc_set_src_caps() local
448 &output_type)) { in gst_mf_aac_enc_set_src_caps()
461 hr = output_type->GetBlobSize (MF_MT_USER_DATA, &blob_size); in gst_mf_aac_enc_set_src_caps()
468 hr = output_type->GetAllocatedBlob (MF_MT_USER_DATA, &blob, &blob_size); in gst_mf_aac_enc_set_src_caps()
707 MFT_REGISTER_TYPE_INFO output_type; in gst_mf_aac_enc_plugin_init() local
714 output_type.guidMajorType = MFMediaType_Audio; in gst_mf_aac_enc_plugin_init()
715 output_type.guidSubtype = MFAudioFormat_AAC; in gst_mf_aac_enc_plugin_init()
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderRendering.cpp63 …st char* GeometryShaderRendering::getTestName(_shader_input input, _shader_output_type output_type, in getTestName() argument
72 switch (output_type) in getTestName()
95 switch (output_type) in getTestName()
177 switch (output_type) in getTestName()
244 switch (output_type) in getTestName()
326 switch (output_type) in getTestName()
437 _shader_output_type output_type = (_shader_output_type)n_output; in init() local
438 const char* name = getTestName(input, output_type, drawcall_mode); in init()
445 … new GeometryShaderRenderingPointsCase(m_context, m_extParams, name, drawcall_mode, output_type)); in init()
453 output_type)); in init()
[all …]

123456