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/ |
D | CodedOutputStreamTest.java | 59 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/ |
D | Dequantize.cpp | 36 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/ |
D | MethodDescriptor.cs | 58 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()
|
D | Descriptor.cs | 2558 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/ |
D | llvm-rs-cc.cpp | 71 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()
|
D | slang.h | 80 enum OutputType { enum 151 OutputType mOT; 213 OutputType OT); 240 void setOutputType(OutputType OT) { mOT = OT; } in setOutputType()
|
D | slang_backend.h | 67 Slang::OutputType mOT; 174 Slang::OutputType OT,
|
D | rs_cc_options.h | 52 slang::Slang::OutputType mOutputType;
|
D | slang.cpp | 229 llvm::raw_ostream *OS, OutputType OT) { in createBackend()
|
D | slang_backend.cpp | 250 llvm::raw_ostream *OS, Slang::OutputType OT, in Backend()
|