Home
last modified time | relevance | path

Searched refs:OutputType (Results 1 – 10 of 10) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/test/java/com/google/protobuf/
DCodedOutputStreamTest.java59 OutputType getOutputType(); in getOutputType()
82 public OutputType getOutputType() { in getOutputType()
83 return OutputType.STREAM; in getOutputType()
107 public OutputType getOutputType() { in getOutputType()
108 return OutputType.ARRAY; in getOutputType()
145 public OutputType getOutputType() { in getOutputType()
146 return OutputType.NIO_HEAP; in getOutputType()
183 public OutputType getOutputType() { in getOutputType()
184 return OutputType.NIO_DIRECT; in getOutputType()
188 private enum OutputType { enum in CodedOutputStreamTest
[all …]
/frameworks/ml/nn/common/operations/
DDequantize.cpp36 template <typename InputType, typename OutputType>
37 bool compute(const InputType* inputData, const Shape& inputShape, OutputType* outputData) { in compute()
43 outputData[i] = static_cast<OutputType>(scale * (value - zeroPoint)); in compute()
48 template <typename OutputType>
49 bool computePerChannel(const int8_t* inputData, const Shape& inputShape, OutputType* outputData) { in computePerChannel()
70 outputData[i] = static_cast<OutputType>(scale * (value - zeroPoint)); in computePerChannel()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/Reflection/
DMethodDescriptor.cs58 public MessageDescriptor OutputType { get { return outputType; } } property in Google.Protobuf.Reflection.MethodDescriptor
95 lookup = File.DescriptorPool.LookupSymbol(Proto.OutputType, this); in CrossLink()
98 …throw new DescriptorValidationException(this, "\"" + Proto.OutputType + "\" is not a message type.… in CrossLink()
DDescriptor.cs2558 public string OutputType { property in Google.Protobuf.Reflection.MethodDescriptorProto
2619 if (OutputType != other.OutputType) return false; in Equals()
2631 if (OutputType.Length != 0) hash ^= OutputType.GetHashCode(); in GetHashCode()
2653 if (OutputType.Length != 0) { in WriteTo()
2655 output.WriteString(OutputType); in WriteTo()
2680 if (OutputType.Length != 0) { in CalculateSize()
2681 size += 1 + pb::CodedOutputStream.ComputeStringSize(OutputType); in CalculateSize()
2706 if (other.OutputType.Length != 0) { in MergeFrom()
2707 OutputType = other.OutputType; in MergeFrom()
2740 OutputType = input.ReadString(); in MergeFrom()
/frameworks/compile/slang/
Dllvm-rs-cc.cpp71 slang::Slang::OutputType OutputType, in DetermineOutputFile() argument
73 if (OutputType == slang::Slang::OT_Nothing) in DetermineOutputFile()
88 if (OutputType == slang::Slang::OT_Dependency) { in DetermineOutputFile()
97 switch (OutputType) { in DetermineOutputFile()
Dslang.h80 enum OutputType { enum
151 OutputType mOT;
213 OutputType OT);
240 void setOutputType(OutputType OT) { mOT = OT; } in setOutputType()
Dslang_backend.h67 Slang::OutputType mOT;
174 Slang::OutputType OT,
Drs_cc_options.h52 slang::Slang::OutputType mOutputType;
Dslang.cpp229 llvm::raw_ostream *OS, OutputType OT) { in createBackend()
Dslang_backend.cpp250 llvm::raw_ostream *OS, Slang::OutputType OT, in Backend()