Home
last modified time | relevance | path

Searched refs:output_type (Results 1 - 25 of 122) sorted by relevance

12345

/third_party/node/deps/v8/src/compiler/
H A Drepresentation-change.cc158 Node* node, MachineRepresentation output_rep, Type output_type, in GetRepresentationFor()
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()
157 GetRepresentationFor( Node* node, MachineRepresentation output_rep, Type output_type, Node* use_node, UseInfo use_info) GetRepresentationFor() argument
255 GetTaggedSignedRepresentationFor( Node* node, MachineRepresentation output_rep, Type output_type, Node* use_node, UseInfo use_info) GetTaggedSignedRepresentationFor() argument
397 GetTaggedPointerRepresentationFor( Node* node, MachineRepresentation output_rep, Type output_type, Node* use_node, UseInfo use_info) GetTaggedPointerRepresentationFor() argument
509 GetTaggedRepresentationFor( Node* node, MachineRepresentation output_rep, Type output_type, Truncation truncation) GetTaggedRepresentationFor() argument
628 GetFloat32RepresentationFor( Node* node, MachineRepresentation output_rep, Type output_type, Truncation truncation) GetFloat32RepresentationFor() argument
693 GetFloat64RepresentationFor( Node* node, MachineRepresentation output_rep, Type output_type, Node* use_node, UseInfo use_info) GetFloat64RepresentationFor() argument
828 GetWord32RepresentationFor( Node* node, MachineRepresentation output_rep, Type output_type, Node* use_node, UseInfo use_info) GetWord32RepresentationFor() argument
1024 GetBitRepresentationFor( Node* node, MachineRepresentation output_rep, Type output_type) GetBitRepresentationFor() argument
1096 GetWord64RepresentationFor( Node* node, MachineRepresentation output_rep, Type output_type, Node* use_node, UseInfo use_info) GetWord64RepresentationFor() argument
1506 TypeError(Node* node, MachineRepresentation output_rep, Type output_type, MachineRepresentation use) TypeError() argument
[all...]
H A 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, InputTruncatio in VisitNode()
238 Type output_type = InputType(node, 0); VisitNode() local
[all...]
H A Drepresentation-change.h327 // Changes representation from {output_type} to {use_rep}. The {truncation}
332 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, Nod
[all...]
/third_party/gn/src/gn/
H A 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() in FillCrateType()
[all...]
H A 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() in RecursiveCollectRuntimeDeps()
[all...]
H A Dresolved_target_data.cc28 if (!dep->IsFinal() || dep->output_type() == Target::STATIC_LIBRARY) { in ComputeLibInfo()
52 if (!dep->IsFinal() || dep->output_type() == Target::STATIC_LIBRARY) { in ComputeFrameworkInfo()
109 if (dep->output_type() == Target::STATIC_LIBRARY || in ComputeInheritedLibsFor()
110 dep->output_type() == Target::SHARED_LIBRARY || in ComputeInheritedLibsFor()
111 dep->output_type() == Target::RUST_LIBRARY || in ComputeInheritedLibsFor()
112 dep->output_type() == Target::SOURCE_SET || in ComputeInheritedLibsFor()
113 (dep->output_type() == Target::CREATE_BUNDLE && in ComputeInheritedLibsFor()
117 if (dep->output_type() == Target::SHARED_LIBRARY) { in ComputeInheritedLibsFor()
140 if (pair.target()->output_type() == Target::SHARED_LIBRARY && in ComputeInheritedLibsFor()
153 if (pair.target()->output_type() ! in ComputeInheritedLibsFor()
[all...]
H A Dtarget.cc134 if (target->output_type() == Target::CREATE_BUNDLE) { in EnsureFileIsGeneratedByDependency()
185 if (pair.ptr->output_type() == Target::EXECUTABLE) in RecursiveCheckAssertNoDeps()
629 if (output_type() == Target::ACTION || output_type() == Target::COPY_FILES || in GetOutputsAsSourceFiles()
630 output_type() == Target::ACTION_FOREACH || in GetOutputsAsSourceFiles()
631 output_type() == Target::GENERATED_FILE) { in GetOutputsAsSourceFiles()
633 } else if (output_type() == Target::CREATE_BUNDLE) { in GetOutputsAsSourceFiles()
636 } else if (IsBinary() && output_type() != Target::SOURCE_SET) { in GetOutputsAsSourceFiles()
639 DCHECK(IsBinary()) << static_cast<int>(output_type()); in GetOutputsAsSourceFiles()
679 if (output_type() in GetOutputFilesForSource()
[all...]
H A Dtarget_generator.cc81 const std::string& output_type, in GenerateTarget()
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 in GenerateTarget()
78 GenerateTarget(Scope* scope, const FunctionCallNode* function_call, const std::vector<Value>& args, const std::string& output_type, Err* err) GenerateTarget() argument
[all...]
H A 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()
H A Dninja_target_writer.cc132 if (target->output_type() == Target::BUNDLE_DATA) { in RunAndWriteFile()
137 } else if (target->output_type() == Target::CREATE_BUNDLE) { in RunAndWriteFile()
142 } else if (target->output_type() == Target::COPY_FILES) { in RunAndWriteFile()
147 } else if (target->output_type() == Target::ACTION || in RunAndWriteFile()
148 target->output_type() == Target::ACTION_FOREACH) { in RunAndWriteFile()
153 } else if (target->output_type() == Target::GROUP) { in RunAndWriteFile()
158 } else if (target->output_type() == Target::GENERATED_FILE) { in RunAndWriteFile()
449 if (target_->output_type() == Target::ACTION || in WriteInputDepsStampAndGetDep()
450 target_->output_type() == Target::ACTION_FOREACH) in WriteInputDepsStampAndGetDep()
466 if (target_->output_type() in WriteInputDepsStampAndGetDep()
[all...]
H A Drust_values.cc33 switch (target->output_type()) { in InferredCrateType()
51 return target->output_type() == Target::RUST_LIBRARY || in IsRustLibrary()
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DMethodDescriptorProto.php32 * Generated from protobuf field <code>optional string output_type = 3;</code>
34 protected $output_type = null; variable
62 * @type string $output_type
146 * Generated from protobuf field <code>optional string output_type = 3;</code>
151 return isset($this->output_type) ? $this->output_type : '';
156 return isset($this->output_type);
161 unset($this->output_type);
165 * Generated from protobuf field <code>optional string output_type = 3;</code>
172 $this->output_type variable
[all...]
/third_party/node/deps/openssl/openssl/apps/
H A 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()
H A 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/openssl/apps/
H A 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()
H A 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/python/Lib/
H A 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
243 def _mkstemp_inner(dir, pre, suf, flags, output_type):
248 if output_type is bytes:
350 prefix, suffix, dir, output_type = _sanitize_params(prefix, suffix, dir)
357 return _mkstemp_inner(dir, prefix, suffix, flags, output_type)
373 prefix, suffix, dir, output_type
[all...]
/third_party/mesa3d/src/intel/tools/
H A 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/mesa3d/src/compiler/nir/
H A Dnir_opcodes.py35 def __init__(self, name, output_size, output_type, input_sizes,
69 assert isinstance(output_type, str)
86 self.output_type = output_type
154 def opcode(name, output_size, output_type, input_sizes, input_types,
157 opcodes[name] = Opcode(name, output_size, output_type, input_sizes,
167 def unop_horiz(name, output_size, output_type, input_size, input_type,
169 opcode(name, output_size, output_type, [input_size], [input_type],
172 def unop_reduce(name, output_size, output_type, input_type, prereduce_expr,
184 unop_horiz(name + "2", output_size, output_type,
[all...]
/third_party/node/deps/openssl/openssl/crypto/encode_decode/
H A Dencoder_lib.c159 const char *output_type) in OSSL_ENCODER_CTX_set_output_type()
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()
158 OSSL_ENCODER_CTX_set_output_type(OSSL_ENCODER_CTX *ctx, const char *output_type) OSSL_ENCODER_CTX_set_output_type() argument
[all...]
H A 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()
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()
317 OSSL_ENCODER_CTX_new_for_pkey(const EVP_PKEY *pkey, int selection, const char *output_type, const char *output_struct, const char *propquery) OSSL_ENCODER_CTX_new_for_pkey() argument
/third_party/openssl/crypto/encode_decode/
H A Dencoder_lib.c159 const char *output_type) in OSSL_ENCODER_CTX_set_output_type()
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()
158 OSSL_ENCODER_CTX_set_output_type(OSSL_ENCODER_CTX *ctx, const char *output_type) OSSL_ENCODER_CTX_set_output_type() argument
[all...]
H A 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()
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()
317 OSSL_ENCODER_CTX_new_for_pkey(const EVP_PKEY *pkey, int selection, const char *output_type, const char *output_struct, const char *propquery) OSSL_ENCODER_CTX_new_for_pkey() argument
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
H A DesextcGeometryShaderRendering.cpp55 * @param output_type Output layout qualifier.
63 const char* GeometryShaderRendering::getTestName(_shader_input input, _shader_output_type output_type, in getTestName() argument
72 switch (output_type) in getTestName()
88 } /* switch (output_type) */ in getTestName()
95 switch (output_type) in getTestName()
170 } /* switch (output_type) */ in getTestName()
177 switch (output_type) in getTestName()
237 } /* switch (output_type) */ in getTestName()
244 switch (output_type) in getTestName()
319 } /* switch (output_type) */ in getTestName()
437 _shader_output_type output_type = (_shader_output_type)n_output; init() local
1004 GeometryShaderRenderingPointsCase(Context& context, const ExtParameters& extParams, const char* name, glw::GLenum drawcall_mode, _shader_output_type output_type) GeometryShaderRenderingPointsCase() argument
1990 GeometryShaderRenderingLinesCase(Context& context, const ExtParameters& extParams, const char* name, bool use_adjacency_data, glw::GLenum drawcall_mode, _shader_output_type output_type) GeometryShaderRenderingLinesCase() argument
3785 GeometryShaderRenderingTrianglesCase(Context& context, const ExtParameters& extParams, const char* name, bool use_adjacency_data, glw::GLenum drawcall_mode, _shader_output_type output_type) GeometryShaderRenderingTrianglesCase() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Di2d_evp.c29 const char *output_type; member
41 ret == -1 && output_info->output_type != NULL; in i2d_provided()
54 output_info->output_type, in i2d_provided()

Completed in 17 milliseconds

12345