HomeSort by relevance Sort by last modified time
    Searched refs:output_type (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/zopfli/src/zopfli/
zopfli_lib.c 28 void ZopfliCompress(const ZopfliOptions* options, ZopfliFormat output_type,
31 if (output_type == ZOPFLI_FORMAT_GZIP) {
33 } else if (output_type == ZOPFLI_FORMAT_ZLIB) {
35 } else if (output_type == ZOPFLI_FORMAT_DEFLATE) {
zopfli_bin.c 83 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, filename, outfilename)
    [all...]
zopfli.h 84 output_type: the output format to use
89 void ZopfliCompress(const ZopfliOptions* options, ZopfliFormat output_type,
  /external/mesa3d/prebuilt-intermediates/nir/
nir_opcodes.c 9 .output_type = nir_type_float32,
23 .output_type = nir_type_int32,
37 .output_type = nir_type_bool32,
51 .output_type = nir_type_bool32,
65 .output_type = nir_type_bool32,
79 .output_type = nir_type_bool32,
93 .output_type = nir_type_bool32,
107 .output_type = nir_type_bool32,
121 .output_type = nir_type_bool32,
135 .output_type = nir_type_bool32
    [all...]
  /external/gemmlowp/meta/generators/
gemv_1xMxK_neon.py 140 def BuildName(output_type, aligned, cols, leftover):
141 name = BuildMainGemvName(output_type) + '_%d_%d' % (cols, leftover)
154 def GetGemvParameters(output_type):
157 if output_type is _QUANTIZED_8BIT:
161 elif output_type is _FULL_32BIT:
163 elif output_type is _FULL_FLOAT:
166 raise ConfigurationError('Unsupported output type: %s' % output_type)
170 def GenerateGemv(emitter, output_type, aligned, cols, leftovers):
173 BuildName(output_type, aligned, cols, leftovers),
174 GetGemvParameters(output_type), 'void'
    [all...]
gemm_NxMxK_neon.py 173 def BuildName(output_type, aligned, rows, cols, leftover):
174 name = BuildMainGemmName(output_type) + '_%d_%d_%d' % (rows, cols, leftover)
187 def GetGemmParameters(output_type, extra_params=None):
192 if output_type is _QUANTIZED_8BIT:
196 elif output_type is _FULL_32BIT:
198 elif output_type is _FULL_FLOAT:
201 raise ConfigurationError('Unsupported output type: %s' % output_type)
205 def GetStridedGemmParameters(output_type):
206 return GetGemmParameters(output_type, [['std::int32_t', 'result_stride']])
209 def GenerateGemm(emitter, output_type, aligned, rows, cols, leftovers)
    [all...]
  /external/compiler-rt/test/asan/android_commands/
android_compile.py 11 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/v8/src/compiler/
representation-change.cc 115 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_node
    [all...]
representation-change.h 232 // Changes representation from {output_type} to {use_rep}. The {truncation}
237 Type* output_type, Node* use_node,
267 Type* output_type, Node* use_node,
271 Type* output_type, Node* use_node,
274 Type* output_type, Truncation truncation);
277 Type* output_type, Truncation truncation);
280 Type* output_type, Node* use_node,
283 Type* output_type, Node* use_node,
286 Type* output_type);
288 Type* output_type);
    [all...]
  /external/google-benchmark/tools/
compare_bench.py 20 output_type = find_benchmark_flag('--benchmark_out_format=', flags)
27 if output_type is not None and output_type != 'json':
29 " is not supported.") % output_type)
  /external/webrtc/webrtc/modules/audio_coding/neteq/
neteq_external_decoder_unittest.cc 189 NetEqOutputType output_type; variable
198 &output_type));
204 samples_per_channel = GetOutputAudio(kMaxBlockSize, output_, &output_type);
258 virtual void UpdateState(NetEqOutputType output_type) {
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...]
neteq_stereo_unittest.cc 214 NetEqOutputType output_type; local
221 &output_type));
229 &output_type));
  /external/mesa3d/src/compiler/nir/
nir_constant_expressions.py 279 output_type = type_add_size(op.output_type, bit_size)
333 ${output_type}_t dst;
337 ${output_type}_t dst = ${op.const_expr};
342 % if output_type == "bool32":
346 _dst_val.${get_const_field(output_type)}[_i] = dst;
354 struct ${output_type}_vec dst;
369 % if output_type == "bool32":
373 _dst_val.${get_const_field(output_type)}[${k}] = dst.${"xyzw"[k]};
nir_opcodes.py 35 def __init__(self, name, output_size, output_type, input_sizes,
68 assert isinstance(output_type, str)
84 self.output_type = output_type
107 def opcode(name, output_size, output_type, input_sizes, input_types,
110 opcodes[name] = Opcode(name, output_size, output_type, input_sizes,
119 def unop_horiz(name, output_size, output_type, input_size, input_type,
121 opcode(name, output_size, output_type, [input_size], [input_type], "",
124 def unop_reduce(name, output_size, output_type, input_type, prereduce_expr,
136 unop_horiz(name + "2", output_size, output_type, 2, input_type
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
neteq_external_decoder_test.h 48 NetEqOutputType* output_type);
neteq_external_decoder_test.cc 48 NetEqOutputType* output_type) {
57 output_type));
  /external/protobuf/src/google/protobuf/compiler/java/
java_service.cc 212 method->output_type());
260 method->output_type());
304 (which == REQUEST) ? method->input_type() : method->output_type());
356 method->output_type());
421 method->output_type());
445 vars["output"] = name_resolver_->GetImmutableClassName(method->output_type());
460 vars["output"] = name_resolver_->GetImmutableClassName(method->output_type());
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_service.cc 149 sub_vars["output_type"] = ClassName(method->output_type(), true);
155 " $output_type$* response,\n"
220 sub_vars["output_type"] = ClassName(method->output_type(), true);
225 " $output_type$*,\n"
250 sub_vars["output_type"] = ClassName(method->output_type(), true);
258 " ::google::protobuf::down_cast< $output_type$*>(response),\n"
290 (which == REQUEST) ? method->input_type() : method->output_type();
    [all...]
  /external/autotest/client/cros/
tpm_store.py 47 def _install_object(self, pem, identifier, conversion_type, output_type):
53 @param output_type the object type to use in inserting into the TPM.
68 (self.PKCS11_REPLAY_COMMAND, output_type, der_file.name,
  /external/fio/t/
genzipf.c 57 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/nanopb-c/generator/google/protobuf/
service_reflection.py 203 return method_descriptor.output_type._concrete_class
284 method_descriptor.output_type._concrete_class, callback)
  /external/protobuf/python/google/protobuf/
service_reflection.py 203 return method_descriptor.output_type._concrete_class
284 method_descriptor.output_type._concrete_class, callback)
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_nir_analyze_boolean_resolves.c 168 if (nir_alu_type_get_base_type(nir_op_infos[alu->op].output_type) == nir_type_bool) {
  /external/swiftshader/third_party/LLVM/tools/gold/
gold-plugin.cpp 67 lto_codegen_model output_type = LTO_CODEGEN_PIC_MODEL_STATIC; member in namespace:__anon33030
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/trappy/trappy/nbexport/
exporter.py 52 if output.output_type == "display_data" and \

Completed in 466 milliseconds

1 2 3