/external/gemmlowp/meta/generators/ |
D | gemm_NxMxK_neon.py | 194 def BuildName(output_type, aligned, rows, cols, leftover): argument 195 name = BuildMainGemmName(output_type) + '_%d_%d_%d' % (rows, cols, leftover) 208 def GetGemmParameters(output_type, extra_params=None): argument 213 if output_type is _QUANTIZED_8BIT: 217 elif output_type is _FULL_32BIT: 219 elif output_type is _FULL_FLOAT: 222 raise ConfigurationError('Unsupported output type: %s' % output_type) 226 def GetStridedGemmParameters(output_type): argument 227 return GetGemmParameters(output_type, [['std::int32_t', 'result_stride']]) 230 def GenerateGemm(emitter, output_type, aligned, rows, cols, leftovers): argument [all …]
|
/external/opencv3/modules/core/include/opencv2/core/cuda/ |
D | vec_math.hpp | 140 #define CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(op, input_type, output_type) \ argument 141 __device__ __forceinline__ output_type ## 1 operator op(const input_type ## 1 & a) \ 143 return VecTraits<output_type ## 1>::make(op (a.x)); \ 145 __device__ __forceinline__ output_type ## 2 operator op(const input_type ## 2 & a) \ 147 return VecTraits<output_type ## 2>::make(op (a.x), op (a.y)); \ 149 __device__ __forceinline__ output_type ## 3 operator op(const input_type ## 3 & a) \ 151 return VecTraits<output_type ## 3>::make(op (a.x), op (a.y), op (a.z)); \ 153 __device__ __forceinline__ output_type ## 4 operator op(const input_type ## 4 & a) \ 155 return VecTraits<output_type ## 4>::make(op (a.x), op (a.y), op (a.z), op (a.w)); \ 184 #define CV_CUDEV_IMPLEMENT_VEC_UNARY_FUNC(func_name, func, input_type, output_type) \ argument [all …]
|
/external/v8/src/compiler/ |
D | representation-change.cc | 115 Node* node, MachineRepresentation output_rep, Type* output_type, in GetRepresentationFor() argument 119 return TypeError(node, output_rep, output_type, use_rep); in GetRepresentationFor() 134 return GetTaggedRepresentationFor(node, output_rep, output_type); in GetRepresentationFor() 136 return GetFloat32RepresentationFor(node, output_rep, output_type, in GetRepresentationFor() 139 return GetFloat64RepresentationFor(node, output_rep, output_type, in GetRepresentationFor() 142 return GetBitRepresentationFor(node, output_rep, output_type); in GetRepresentationFor() 146 return GetWord32RepresentationFor(node, output_rep, output_type); in GetRepresentationFor() 148 return GetWord64RepresentationFor(node, output_rep, output_type); in GetRepresentationFor() 158 Node* node, MachineRepresentation output_rep, Type* output_type) { in GetTaggedRepresentationFor() argument 165 if (output_type->Is(Type::Signed32())) { in GetTaggedRepresentationFor() [all …]
|
D | representation-change.h | 90 Type* output_type, MachineRepresentation use_rep, 116 Type* output_type); 119 Type* output_type, Truncation truncation); 122 Type* output_type, Truncation truncation); 124 Type* output_type); 126 Type* output_type); 128 Type* output_type); 130 Type* output_type, MachineRepresentation use);
|
D | simplified-lowering.cc | 323 Type* output_type() const { return output_.type(); } in output_type() function in v8::internal::compiler::RepresentationSelector::NodeInfo 503 Type* output_type = output_info.type(); in SetOutput() local 505 output_type = Type::Intersect(NodeProperties::GetType(node), in SetOutput() 509 DCHECK(info->output_type()->Is(output_type)); in SetOutput() 512 if (!output_type->Is(info->output_type()) || in SetOutput() 517 NodeOutputInfo(output_info.representation(), output_type)); in SetOutput() 522 return GetInfo(node->InputAt(0))->output_type()->Is(Type::Signed32()) && in BothInputsAreSigned32() 523 GetInfo(node->InputAt(1))->output_type()->Is(Type::Signed32()); in BothInputsAreSigned32() 528 return GetInfo(node->InputAt(0))->output_type()->Is(Type::Unsigned32()) && in BothInputsAreUnsigned32() 529 GetInfo(node->InputAt(1))->output_type()->Is(Type::Unsigned32()); in BothInputsAreUnsigned32() [all …]
|
/external/opencv3/modules/cudev/include/opencv2/cudev/util/ |
D | vec_math.hpp | 138 #define CV_CUDEV_IMPLEMENT_VEC_UNARY_OP(op, input_type, output_type) \ argument 139 __device__ __forceinline__ output_type ## 1 operator op(const input_type ## 1 & a) \ 141 return VecTraits<output_type ## 1>::make(op (a.x)); \ 143 __device__ __forceinline__ output_type ## 2 operator op(const input_type ## 2 & a) \ 145 return VecTraits<output_type ## 2>::make(op (a.x), op (a.y)); \ 147 __device__ __forceinline__ output_type ## 3 operator op(const input_type ## 3 & a) \ 149 return VecTraits<output_type ## 3>::make(op (a.x), op (a.y), op (a.z)); \ 151 __device__ __forceinline__ output_type ## 4 operator op(const input_type ## 4 & a) \ 153 return VecTraits<output_type ## 4>::make(op (a.x), op (a.y), op (a.z), op (a.w)); \ 182 #define CV_CUDEV_IMPLEMENT_VEC_UNARY_FUNC(func_name, func, input_type, output_type) \ argument [all …]
|
/external/zopfli/src/zopfli/ |
D | zopfli_bin.c | 83 ZopfliFormat output_type, in CompressFile() argument 96 ZopfliCompress(options, output_type, in, insize, &out, &outsize); in CompressFile() 130 ZopfliFormat output_type = ZOPFLI_FORMAT_GZIP; in main() local 142 output_type = ZOPFLI_FORMAT_DEFLATE; in main() 144 else if (StringsEqual(arg, "--zlib")) output_type = ZOPFLI_FORMAT_ZLIB; in main() 145 else if (StringsEqual(arg, "--gzip")) output_type = ZOPFLI_FORMAT_GZIP; in main() 181 } else if (output_type == ZOPFLI_FORMAT_GZIP) { in main() 183 } else if (output_type == ZOPFLI_FORMAT_ZLIB) { in main() 186 assert(output_type == ZOPFLI_FORMAT_DEFLATE); in main() 192 CompressFile(&options, output_type, filename, outfilename); in main()
|
D | zopfli_lib.c | 28 void ZopfliCompress(const ZopfliOptions* options, ZopfliFormat output_type, in ZopfliCompress() argument 31 if (output_type == ZOPFLI_FORMAT_GZIP) { in ZopfliCompress() 33 } else if (output_type == ZOPFLI_FORMAT_ZLIB) { in ZopfliCompress() 35 } else if (output_type == ZOPFLI_FORMAT_DEFLATE) { in ZopfliCompress()
|
D | zopfli.h | 89 void ZopfliCompress(const ZopfliOptions* options, ZopfliFormat output_type,
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | neteq_external_decoder_unittest.cc | 189 NetEqOutputType output_type; in GetAndVerifyOutput() local 198 &output_type)); in GetAndVerifyOutput() 204 samples_per_channel = GetOutputAudio(kMaxBlockSize, output_, &output_type); in GetAndVerifyOutput() 258 virtual void UpdateState(NetEqOutputType output_type) { in UpdateState() argument 261 if (output_type == kOutputNormal) { in UpdateState() 267 if (output_type == kOutputPLC) { in UpdateState() 273 if (output_type == kOutputPLCtoCNG) { in UpdateState() 275 } else if (output_type == kOutputNormal) { in UpdateState() 281 if (output_type == kOutputNormal) { in UpdateState() 294 NetEqOutputType output_type; in GetAndVerifyOutput() local [all …]
|
D | neteq_stereo_unittest.cc | 214 NetEqOutputType output_type; in RunTest() local 221 &output_type)); in RunTest() 229 &output_type)); in RunTest()
|
D | neteq_network_stats_unittest.cc | 179 NetEqOutputType output_type; in RunTest() local 197 GetOutputAudio(kMaxOutputSize, output_, &output_type); in RunTest()
|
D | neteq_unittest.cc | 1274 NetEqOutputType output_type; in TEST_F() local 1282 &output_type)); in TEST_F() 1300 &output_type)); in TEST_F() 1317 &output_type)); in TEST_F() 1350 NetEqOutputType output_type; in TEST_F() local 1359 &output_type)); in TEST_F() 1398 &output_type)); in TEST_F() 1420 NetEqOutputType output_type; in WrapTest() local 1469 &output_type)); in WrapTest()
|
/external/compiler-rt/test/asan/android_commands/ |
D | 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/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_service.cc | 149 sub_vars["output_type"] = ClassName(method->output_type(), true); in GenerateMethodSignatures() 220 sub_vars["output_type"] = ClassName(method->output_type(), true); in GenerateNotImplementedMethods() 250 sub_vars["output_type"] = ClassName(method->output_type(), true); in GenerateCallMethod() 290 (which == REQUEST) ? method->input_type() : method->output_type(); in GenerateGetPrototype() 318 sub_vars["output_type"] = ClassName(method->output_type(), true); in GenerateStubMethods()
|
/external/protobuf/src/google/protobuf/compiler/java/ |
D | java_service.cc | 213 method->output_type()); in GenerateCallMethod() 261 method->output_type()); in GenerateCallBlockingMethod() 305 (which == REQUEST) ? method->input_type() : method->output_type()); in GenerateGetPrototype() 357 method->output_type()); in GenerateStub() 422 method->output_type()); in GenerateBlockingStub() 446 vars["output"] = name_resolver_->GetImmutableClassName(method->output_type()); in GenerateMethodSignature() 461 vars["output"] = name_resolver_->GetImmutableClassName(method->output_type()); in GenerateBlockingMethodSignature()
|
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/ |
D | neteq_external_decoder_test.cc | 48 NetEqOutputType* output_type) { in GetOutputAudio() argument 57 output_type)); in GetOutputAudio()
|
D | neteq_external_decoder_test.h | 48 NetEqOutputType* output_type);
|
/external/autotest/client/cros/ |
D | tpm_store.py | 47 def _install_object(self, pem, identifier, conversion_type, output_type): argument 68 (self.PKCS11_REPLAY_COMMAND, output_type, der_file.name,
|
/external/nanopb-c/generator/google/protobuf/ |
D | service_reflection.py | 203 return method_descriptor.output_type._concrete_class 284 method_descriptor.output_type._concrete_class, callback)
|
D | descriptor.py | 630 input_type, output_type, options=None): argument 642 self.output_type = output_type
|
/external/protobuf/python/google/protobuf/ |
D | service_reflection.py | 203 return method_descriptor.output_type._concrete_class 284 method_descriptor.output_type._concrete_class, callback)
|
D | descriptor.py | 683 input_type, output_type, options=None): argument 695 self.output_type = output_type
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.cc | 1725 if (!output_type()->is_unqualified_placeholder_) { in CopyTo() 1728 proto->mutable_output_type()->append(output_type()->full_name()); in CopyTo() 2109 output_type()->full_name()); in DebugString() 4422 Symbol output_type = LookupSymbol(proto.output_type(), method->full_name()); in CrossLinkMethod() local 4423 if (output_type.IsNull()) { in CrossLinkMethod() 4426 proto.output_type()); in CrossLinkMethod() 4427 } else if (output_type.type != Symbol::MESSAGE) { in CrossLinkMethod() 4430 "\"" + proto.output_type() + "\" is not a message type."); in CrossLinkMethod() 4432 method->output_type_ = output_type.descriptor; in CrossLinkMethod()
|
D | descriptor.h | 933 const Descriptor* output_type() const; 1545 PROTOBUF_DEFINE_ACCESSOR(MethodDescriptor, output_type, const Descriptor*)
|