Searched defs:output_type (Results 1 - 25 of 41) sorted by relevance

12

/external/iproute2/include/
H A Djson_print.h26 enum output_type { enum
41 void open_json_array(enum output_type type, const char *delim);
42 void close_json_array(enum output_type type, const char *delim);
45 void print_color_##type_name(enum output_type t, \
51 static inline void print_##type_name(enum output_type t, \
/external/compiler-rt/test/asan/android_commands/
H A Dandroid_compile.py11 output_type = 'executable' variable
17 output_type = 'shared' variable
19 output_type = 'object' variable
31 if output_type in ['executable', 'shared']:
34 if output_type == 'executable':
/external/zopfli/src/zopfli/
H A Dzopfli_lib.c28 void ZopfliCompress(const ZopfliOptions* options, ZopfliFormat output_type, argument
31 if (output_type == ZOPFLI_FORMAT_GZIP) {
33 } else if (output_type == ZOPFLI_FORMAT_ZLIB) {
35 } else if (output_type == ZOPFLI_FORMAT_DEFLATE) {
H A Dzopfli_bin.c83 ZopfliFormat output_type,
96 ZopfliCompress(options, output_type, in, insize, &out, &outsize);
130 ZopfliFormat output_type = ZOPFLI_FORMAT_GZIP; local
142 output_type = ZOPFLI_FORMAT_DEFLATE;
144 else if (StringsEqual(arg, "--zlib")) output_type = ZOPFLI_FORMAT_ZLIB;
145 else if (StringsEqual(arg, "--gzip")) output_type = ZOPFLI_FORMAT_GZIP;
181 } else if (output_type == ZOPFLI_FORMAT_GZIP) {
183 } else if (output_type == ZOPFLI_FORMAT_ZLIB) {
186 assert(output_type == ZOPFLI_FORMAT_DEFLATE);
192 CompressFile(&options, output_type, filenam
82 CompressFile(const ZopfliOptions* options, ZopfliFormat output_type, const char* infilename, const char* outfilename) argument
[all...]
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
H A Dneteq_external_decoder_test.cc48 NetEqOutputType* output_type) {
57 output_type));
46 GetOutputAudio(size_t max_length, int16_t* output, NetEqOutputType* output_type) argument
/external/perfetto/src/ipc/protoc_plugin/
H A Dipc_generator.cc134 std::string output_type = method.output_type()->name(); local
135 function(method, input_type, output_type);
152 const std::string& output_type) {
153 if (types_seen.count(output_type) == 0) {
155 "o", output_type);
156 types_seen.insert(output_type);
159 method.name(), "i", input_type, "o", output_type);
168 const std::string& output_type) {
169 if (types_seen.count(output_type)
[all...]
/external/tensorflow/tensorflow/core/profiler/
H A Dtfprof_options.cc37 tensorflow::Status ParseOutput(const string& output_opt, string* output_type, argument
41 *output_type = kOutput[1];
57 *output_type = output_opt;
59 *output_type = output_opt.substr(0, opt_split);
60 if (output_types.find(*output_type) == output_types.end()) {
64 output_type->c_str(),
73 if (*output_type == kOutput[0]) {
81 } else if (*output_type == kOutput[2]) {
87 } else if (*output_type == kOutput[3]) {
107 strings::Printf("Unrecognized options %s for output_type
136 string output_type; local
[all...]
H A Dtfprof_options.h123 const string& output_type,
145 output_type(output_type),
173 string output_type; member in struct:tensorflow::tfprof::Options
178 // 'output_opt': User input string with format: output_type:key=value,key=value.
179 // 'output_type' and 'output_options' are extracted from 'output_opt'.
180 tensorflow::Status ParseOutput(const string& output_opt, string* output_type,
109 Options(int max_depth, tensorflow::int64 min_bytes, tensorflow::int64 min_peak_bytes, tensorflow::int64 min_residual_bytes, tensorflow::int64 min_output_bytes, tensorflow::int64 min_micros, tensorflow::int64 min_accelerator_micros, tensorflow::int64 min_cpu_micros, tensorflow::int64 min_params, tensorflow::int64 min_float_ops, tensorflow::int64 min_occurrence, tensorflow::int64 step, const string& order_by, const std::vector<string>& account_type_regexes, const std::vector<string>& start_name_regexes, const std::vector<string>& trim_name_regexes, const std::vector<string>& show_name_regexes, const std::vector<string>& hide_name_regexes, bool account_displayed_op_only, const std::vector<string>& select, const string& output_type, const std::map<string, string>& output_options) argument
H A Dprofiler.cc164 string output_type; local
166 Status s = ParseOutput(FLAGS_output, &output_type, &output_options);
263 select, output_type, output_options);
/external/mesa3d/src/compiler/nir/
H A Dnir_search.c64 nir_alu_type output_type = nir_op_infos[src_alu->op].output_type; local
80 return nir_alu_type_get_base_type(output_type) == type;
350 tree->is_dest_sized = !!nir_alu_type_get_type_size(info.output_type);
352 tree->dest_size = nir_alu_type_get_type_size(info.output_type);
/external/swiftshader/third_party/LLVM/tools/gold/
H A Dgold-plugin.cpp67 lto_codegen_model output_type = LTO_CODEGEN_PIC_MODEL_STATIC; member in namespace:__anon23135
156 output_type = LTO_CODEGEN_PIC_MODEL_DYNAMIC;
159 output_type = LTO_CODEGEN_PIC_MODEL_STATIC;
167 //output_type = LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC;
407 lto_codegen_set_pic_model(code_gen, output_type);
/external/tensorflow/tensorflow/cc/framework/
H A Dops.h47 DataType output_type(int32 o) const { return node_->output_type(o); } function in class:tensorflow::Operation
75 DataType type() const { return op_.output_type(index_); }
/external/tensorflow/tensorflow/compiler/tf2xla/
H A Dxla_helpers.cc37 DataType output_type, int axis, bool is_min,
50 TF_RETURN_IF_ERROR(DataTypeToPrimitiveType(output_type, &xla_output_type));
68 XlaHelpers::IntegerLiteral(builder, output_type, bits_in_type);
77 TF_RETURN_IF_ERROR(XlaHelpers::Iota(builder, output_type, axis_size, &iota));
84 builder->Reduce(product, XlaHelpers::MinValue(builder, output_type),
85 *ctx->GetOrCreateMax(output_type),
186 DataType output_type, int axis,
188 return ArgMinMax(builder, ctx, input, input_shape, input_type, output_type,
196 DataType output_type, int axis,
198 return ArgMinMax(builder, ctx, input, input_shape, input_type, output_type,
34 ArgMinMax(xla::ComputationBuilder* builder, XlaOpKernelContext* ctx, const xla::ComputationDataHandle& input, const TensorShape& input_shape, DataType input_type, DataType output_type, int axis, bool is_min, xla::ComputationDataHandle* argminmax) argument
182 ArgMax(xla::ComputationBuilder* builder, XlaOpKernelContext* ctx, const xla::ComputationDataHandle& input, const TensorShape& input_shape, DataType input_type, DataType output_type, int axis, xla::ComputationDataHandle* argmax) argument
192 ArgMin(xla::ComputationBuilder* builder, XlaOpKernelContext* ctx, const xla::ComputationDataHandle& input, const TensorShape& input_shape, DataType input_type, DataType output_type, int axis, xla::ComputationDataHandle* argmin) argument
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Delemental_ir_emitter.cc73 PrimitiveType output_type) const {
84 switch (output_type) {
94 output_type = F32;
103 PrimitiveType_Name(output_type).c_str());
106 converted_input_types, output_type)
118 PrimitiveType output_type) const {
122 switch (output_type) {
134 PrimitiveType_Name(output_type).c_str());
136 return EmitMathCall(munged_callee, operands, input_types, output_type);
143 PrimitiveType output_type) cons
163 PrimitiveType output_type = op->shape().element_type(); local
184 PrimitiveType output_type = op->shape().element_type(); local
261 PrimitiveType output_type = op->shape().element_type(); local
271 EmitDeviceFunctionCall( const string& callee_name, tensorflow::gtl::ArraySlice<llvm::Value*> operands, tensorflow::gtl::ArraySlice<PrimitiveType> input_types, PrimitiveType output_type, tensorflow::gtl::ArraySlice<llvm::Attribute::AttrKind> attributes) const argument
[all...]
/external/tensorflow/tensorflow/core/common_runtime/
H A Dshape_refiner.h46 output_types_.push_back(node->output_type(i));
55 DataType output_type(int64 idx) const { return output_types_[idx]; } function in class:tensorflow::ExtendedInferenceContext
/external/v8/src/compiler/
H A Drepresentation-change.cc115 Node* node, MachineRepresentation output_rep, Type* output_type,
118 output_type->IsInhabited()) {
121 return TypeError(node, output_rep, output_type, use_info.representation());
144 return GetTaggedSignedRepresentationFor(node, output_rep, output_type,
149 return GetTaggedPointerRepresentationFor(node, output_rep, output_type,
153 return GetTaggedRepresentationFor(node, output_rep, output_type,
157 return GetFloat32RepresentationFor(node, output_rep, output_type,
160 return GetFloat64RepresentationFor(node, output_rep, output_type,
164 return GetBitRepresentationFor(node, output_rep, output_type);
168 return GetWord32RepresentationFor(node, output_rep, output_type, use_nod
114 GetRepresentationFor( Node* node, MachineRepresentation output_rep, Type* output_type, Node* use_node, UseInfo use_info) argument
184 GetTaggedSignedRepresentationFor( Node* node, MachineRepresentation output_rep, Type* output_type, Node* use_node, UseInfo use_info) argument
298 GetTaggedPointerRepresentationFor( Node* node, MachineRepresentation output_rep, Type* output_type, Node* use_node, UseInfo use_info) argument
359 GetTaggedRepresentationFor( Node* node, MachineRepresentation output_rep, Type* output_type, Truncation truncation) argument
434 GetFloat32RepresentationFor( Node* node, MachineRepresentation output_rep, Type* output_type, Truncation truncation) argument
494 GetFloat64RepresentationFor( Node* node, MachineRepresentation output_rep, Type* output_type, Node* use_node, UseInfo use_info) argument
566 GetWord32RepresentationFor( Node* node, MachineRepresentation output_rep, Type* output_type, Node* use_node, UseInfo use_info) argument
701 GetBitRepresentationFor( Node* node, MachineRepresentation output_rep, Type* output_type) argument
755 GetWord64RepresentationFor( Node* node, MachineRepresentation output_rep, Type* output_type) argument
988 TypeError(Node* node, MachineRepresentation output_rep, Type* output_type, MachineRepresentation use) argument
[all...]
H A Dwasm-linkage.cc324 MachineType input_type, MachineRepresentation output_type) {
349 locations.AddReturn(rets.Next(output_type));
362 locations.AddParam(params.Next(output_type));
322 ReplaceTypeInCallDescriptorWith( Zone* zone, CallDescriptor* descriptor, size_t num_replacements, MachineType input_type, MachineRepresentation output_type) argument
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dneteq_external_decoder_unittest.cc189 NetEqOutputType output_type; variable
198 &output_type));
204 samples_per_channel = GetOutputAudio(kMaxBlockSize, output_, &output_type);
258 virtual void UpdateState(NetEqOutputType output_type) { argument
261 if (output_type == kOutputNormal) {
267 if (output_type == kOutputPLC) {
273 if (output_type == kOutputPLCtoCNG) {
275 } else if (output_type == kOutputNormal) {
281 if (output_type == kOutputNormal) {
294 NetEqOutputType output_type; variable
296 UpdateState(output_type); variable
[all...]
H A Dneteq_network_stats_unittest.cc179 NetEqOutputType output_type; local
197 GetOutputAudio(kMaxOutputSize, output_, &output_type);
H A Dneteq_stereo_unittest.cc214 NetEqOutputType output_type; local
221 &output_type));
229 &output_type));
/external/fio/t/
H A Dgenzipf.c57 static int output_type = OUTPUT_NORMAL; variable
144 output_type = OUTPUT_CSV;
293 if (output_type != OUTPUT_CSV)
342 if (output_type == OUTPUT_CSV)
/external/tensorflow/tensorflow/core/framework/
H A Dnode_def_util.cc366 int output_port, DataType* output_type) {
372 *output_type = dtype;
365 OutputTypeForNode(const NodeDef& node_def, const OpDef& op_def, int output_port, DataType* output_type) argument
/external/tensorflow/tensorflow/core/graph/
H A Dgraph.cc150 DataType Node::output_type(int32 o) const { return props_->output_types[o]; } function in class:tensorflow::Node
/external/deqp/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, argument
72 switch (output_type)
88 } /* switch (output_type) */
95 switch (output_type)
170 } /* switch (output_type) */
177 switch (output_type)
237 } /* switch (output_type) */
244 switch (output_type)
319 } /* switch (output_type) */
437 _shader_output_type output_type = (_shader_output_type)n_output; local
1004 GeometryShaderRenderingPointsCase(Context& context, const ExtParameters& extParams, const char* name, glw::GLenum drawcall_mode, _shader_output_type output_type) argument
1992 GeometryShaderRenderingLinesCase(Context& context, const ExtParameters& extParams, const char* name, bool use_adjacency_data, glw::GLenum drawcall_mode, _shader_output_type output_type) argument
3787 GeometryShaderRenderingTrianglesCase(Context& context, const ExtParameters& extParams, const char* name, bool use_adjacency_data, glw::GLenum drawcall_mode, _shader_output_type output_type) argument
[all...]
/external/mesa3d/src/compiler/glsl/
H A Dlink_varyings.cpp186 anonymous_struct_type_matches(const glsl_type *output_type, argument
189 while (output_type->is_array() && to_match->is_array()) {
191 if (output_type->length != to_match->length)
193 output_type = output_type->fields.array;
197 if (output_type->is_array() || to_match->is_array())
199 return output_type->is_anonymous() &&
201 to_match->record_compare(output_type);

Completed in 1550 milliseconds

12