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

1 2 3 4 5 6 7

  /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/iproute2/include/
json_print.h 26 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/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...]
  /external/perfetto/src/ipc/protoc_plugin/
ipc_generator.cc 134 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) == 0)
    [all...]
  /external/tensorflow/tensorflow/core/profiler/
tfprof_options.cc 37 tensorflow::Status ParseOutput(const string& output_opt, string* output_type,
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: %s\n"
136 string output_type; local
    [all...]
tfprof_options.h 123 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,
  /external/tensorflow/tensorflow/compiler/tests/
argminmax_test.py 53 lambda x: math_ops.argmax(x, axis=0, output_type=dtypes.int32),
57 lambda x: math_ops.argmax(x, axis=0, output_type=dtypes.int32),
61 lambda x: math_ops.argmax(x, axis=1, output_type=dtypes.int32),
66 lambda x: math_ops.argmin(x, axis=0, output_type=dtypes.int32),
70 lambda x: math_ops.argmin(x, axis=0, output_type=dtypes.int32),
74 lambda x: math_ops.argmin(x, axis=1, output_type=dtypes.int32),
  /external/iproute2/lib/
json_print.c 74 void open_json_array(enum output_type type, const char *str)
88 void close_json_array(enum output_type type, const char *str)
104 void print_color_##type_name(enum output_type t, \
125 void print_color_string(enum output_type type,
148 void print_color_bool(enum output_type type,
167 void print_color_0xhex(enum output_type type,
183 void print_color_hex(enum output_type type,
206 void print_color_null(enum output_type type,
  /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/libcxx/utils/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...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/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/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/adhd/cras/src/tests/
audio_test_gui.py 86 line = '<input type ="radio" name="output_type" value="'
90 html += """<input type ="radio" name="output_type"
115 var output_type =
116 document.forms['routerOptions']['output_type'].value;
117 if (input_type == '' || output_type == '') {
121 if (input_type == 'file' && output_type == 'file') {
134 if (output_type == 'file') {
161 document.forms['routerOptions']['output_type'];
171 def start_test(self, input_type, output_type, input_file='',
173 """Capture audio from the input_type and plays it back to the output_type
    [all...]
  /external/autotest/client/site_tests/audio_AlsaLoopback/
audio_AlsaLoopback.py 48 (output_type, input_type) = cras_utils.get_selected_node_types()
51 if 'HEADPHONE' not in output_type:
52 raise error.TestFail("Wrong output type=%s", output_type)
  /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/tensorflow/tensorflow/compiler/xla/service/gpu/
elemental_ir_emitter.cc 73 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) const
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
    [all...]

Completed in 504 milliseconds

1 2 3 4 5 6 7