| /external/tensorflow/tensorflow/go/op/ |
| D | wrappers.go | 80 …eQuantWithMinMaxVarsGradient(scope *Scope, gradients tf.Output, inputs tf.Output, min tf.Output, m… 142 func FakeQuantWithMinMaxArgsGradient(scope *Scope, gradients tf.Output, inputs tf.Output, optional … 206 func ScatterNdNonAliasingAdd(scope *Scope, input tf.Output, indices tf.Output, updates tf.Output) (… 291 func TensorScatterSub(scope *Scope, tensor tf.Output, indices tf.Output, updates tf.Output) (output… 376 func TensorScatterAdd(scope *Scope, tensor tf.Output, indices tf.Output, updates tf.Output) (output… 404 func QuantizedReshape(scope *Scope, tensor tf.Output, shape tf.Output, input_min tf.Output, input_m… 555 func QuantizeAndDequantizeV2(scope *Scope, input tf.Output, input_min tf.Output, input_max tf.Outpu… 620 func QuantizeAndDequantize(scope *Scope, input tf.Output, optional ...QuantizeAndDequantizeAttr) (o… 749 func OneHot(scope *Scope, indices tf.Output, depth tf.Output, on_value tf.Output, off_value tf.Outp… 789 func ExtractVolumePatches(scope *Scope, input tf.Output, ksizes []int64, strides []int64, padding s… [all …]
|
| D | gradients.go | 33 func Gradients(scope *Scope, y []tf.Output, x []tf.Output, dx ...tf.Output) (output []tf.Output) {
|
| /external/tensorflow/tensorflow/go/ |
| D | operation.go | 70 func (op *Operation) Output(i int) Output { func 83 type Output struct { struct 85 Op *Operation 88 Index int 92 func (p Output) DataType() DataType { 97 func (p Output) Shape() Shape { 126 func (p Output) c() C.TF_Output { 135 func (p Output) canBeAnInput() {} 138 func (p Output) Consumers() []Consumer {
|
| D | util_test.go | 49 func Neg(g *Graph, name string, port Output) (Output, error) { 58 func Add(g *Graph, name string, x, y Output) (Output, error) {
|
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
| D | Output.java | 16 public class Output<T> { class 36 public Output() { in Output() method in Output 45 public Output(T value) { in Output() method in Output
|
| /external/icu/android_icu4j/src/main/java/android/icu/util/ |
| D | Output.java | 16 public class Output<T> { class 33 public Output() { in Output() method in Output 41 public Output(T value) { in Output() method in Output
|
| /external/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/ |
| D | gcd.pass.cpp | 62 using Output = std::common_type_t<S1, S2>; in do_test() typedef 73 using Output = std::common_type_t<U1, U2>; in do_test() typedef 78 using Output = std::common_type_t<S1, U2>; in do_test() typedef 85 using Output = std::common_type_t<S2, U1>; in do_test() typedef
|
| /external/libcxx/test/std/numerics/numeric.ops/numeric.ops.lcm/ |
| D | lcm.pass.cpp | 61 using Output = std::common_type_t<S1, S2>; in do_test() typedef 72 using Output = std::common_type_t<U1, U2>; in do_test() typedef 77 using Output = std::common_type_t<S1, U2>; in do_test() typedef 84 using Output = std::common_type_t<S2, U1>; in do_test() typedef
|
| /external/skqp/site/user/api/ |
| D | SkPaint_Reference.md | 285 <pre style="padding: 1em 1em 1em 1em; width: 62.5em;background-color: #f0f0f0"> 321 <pre style="padding: 1em 1em 1em 1em; width: 62.5em;background-color: #f0f0f0"> 344 <pre style="padding: 1em 1em 1em 1em; width: 62.5em;background-color: #f0f0f0"> 358 <pre style="padding: 1em 1em 1em 1em; width: 62.5em;background-color: #f0f0f0"> 397 <pre style="padding: 1em 1em 1em 1em; width: 62.5em;background-color: #f0f0f0"> 435 <pre style="padding: 1em 1em 1em 1em; width: 62.5em;background-color: #f0f0f0"> 558 <pre style="padding: 1em 1em 1em 1em; width: 62.5em;background-color: #f0f0f0"> 590 <pre style="padding: 1em 1em 1em 1em; width: 62.5em;background-color: #f0f0f0"> 620 <pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 736 <pre style="padding: 1em 1em 1em 1em; width: 62.5em;background-color: #f0f0f0"> [all …]
|
| /external/libtextclassifier/native/annotator/grammar/dates/ |
| D | extractor.h | 41 struct Output { struct 63 const std::vector<Output>& output() const { return output_; } in output() argument
|
| /external/tensorflow/tensorflow/cc/framework/ |
| D | ops.h | 31 class Output; variable 68 explicit Output(Node* n) : op_(n) {} in Output() function 69 Output(Node* n, int32 index) : op_(n), index_(index) {} in Output() function 70 Output(const Operation& op, int32 index) : op_(op), index_(index) {} in Output() function
|
| /external/rust/crates/syn/1.0.7/src/ |
| D | parse.rs | 1045 type Output; typedef 1051 fn parse2(self, tokens: TokenStream) -> Result<Self::Output>; in parse2() 1064 fn parse(self, tokens: proc_macro::TokenStream) -> Result<Self::Output> { in parse() 1077 fn parse_str(self, s: &str) -> Result<Self::Output> { in parse_str() 1083 fn __parse_scoped(self, scope: Span, tokens: TokenStream) -> Result<Self::Output> { in __parse_scoped() 1090 fn __parse_stream(self, input: ParseStream) -> Result<Self::Output> { in __parse_stream() 1106 type Output = T; typedef 1121 fn __parse_scoped(self, scope: Span, tokens: TokenStream) -> Result<Self::Output> { in __parse_scoped() 1136 fn __parse_stream(self, input: ParseStream) -> Result<Self::Output> { in __parse_stream() 1141 pub(crate) fn parse_scoped<F: Parser>(f: F, scope: Span, tokens: TokenStream) -> Result<F::Output> { in parse_scoped() [all …]
|
| /external/swiftshader/third_party/llvm-7.0/llvm/lib/Option/ |
| D | ArgList.cpp | 99 void ArgList::AddLastArg(ArgStringList &Output, OptSpecifier Id) const { in AddLastArg() 106 void ArgList::AddLastArg(ArgStringList &Output, OptSpecifier Id0, in AddLastArg() 114 void ArgList::AddAllArgsExcept(ArgStringList &Output, in AddAllArgsExcept() 138 void ArgList::AddAllArgs(ArgStringList &Output, in AddAllArgs() 146 void ArgList::AddAllArgs(ArgStringList &Output, OptSpecifier Id0, in AddAllArgs() 154 void ArgList::AddAllArgValues(ArgStringList &Output, OptSpecifier Id0, in AddAllArgValues() 163 void ArgList::AddAllArgsTranslated(ArgStringList &Output, OptSpecifier Id0, in AddAllArgsTranslated()
|
| /external/rmi4utils/f54test/ |
| D | display.cpp | 29 void Display::Output(const char * buf) in Output() function in Display 68 void AnsiConsole::Output(const char * buf) in Output() function in AnsiConsole
|
| /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/ |
| D | Output.java | 29 public final class Output<T> implements Operand<T> { class 97 Output(AbstractOperation op, int idx) { in Output() method in Output
|
| /external/bcc/docs/ |
| D | reference_guide.md | 432 ## Output section in BPF C 434 ### 1. bpf_trace_printk() 446 ### 2. BPF_PERF_OUTPUT 481 ### 3. perf_submit() 1147 ### 1. trace_print() 1171 ### 2. trace_fields() 1196 ## Output section in bcc Python 1203 ### 1. perf_buffer_poll()
|
| /external/pdfium/third_party/lcms/src/ |
| D | cmsintrp.c | 195 register cmsUInt16Number Output[], in LinLerp1D() 232 cmsFloat32Number Output[], in LinLerp1Dfloat() 267 register cmsUInt16Number Output[], in Eval1Input() 298 cmsFloat32Number Output[], in Eval1InputFloat() 338 cmsFloat32Number Output[], in BilinearInterpFloat() 391 register cmsUInt16Number Output[], in BilinearInterp16() 450 cmsFloat32Number Output[], in TrilinearInterpFloat() 522 register cmsUInt16Number Output[], in TrilinearInterp16() 601 cmsFloat32Number Output[], in TetrahedralInterpFloat() 702 register cmsUInt16Number Output[], in TetrahedralInterp16() [all …]
|
| /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/ |
| D | CommandLineTest.cpp | 164 const char *const Output[], size_t OutputSize) { in testCommandLineTokenizer() 181 const char *const Output[] = { in TEST() local 191 const char *const Output[] = { "a\\b", "c\\\\d", "e\\f g", "h\"i", "j\\\"k", in TEST() local 199 const char *const Output[] = { "\\" }; in TEST() local 206 const char *const Output[] = { "abc" }; in TEST() local 213 const char *const Output[] = { "abc\\" }; in TEST() local 220 const char *const Output[] = { "abc123" }; in TEST() local 227 const char *const Output[] = { "abc123" }; in TEST() local 234 const char *const Output[] = { "abc" }; in TEST() local 241 const char *const Output[] = { "abc" }; in TEST() local [all …]
|
| /external/dagger2/javatests/dagger/functional/producers/provisions/ |
| D | Provisions.java | 42 static final class Output { class in Provisions 46 Output(Producer<InjectedClass> injectedClass1, Producer<InjectedClass> injectedClass2) { in Output() method in Provisions.Output
|
| /external/rust/crates/syn/0.15.42/src/ |
| D | parse.rs | 1058 type Output; typedef 1064 fn parse2(self, tokens: TokenStream) -> Result<Self::Output>; in parse2() 1077 fn parse(self, tokens: proc_macro::TokenStream) -> Result<Self::Output> { in parse() 1090 fn parse_str(self, s: &str) -> Result<Self::Output> { in parse_str() 1096 fn __parse_scoped(self, scope: Span, tokens: TokenStream) -> Result<Self::Output> { in __parse_scoped() 1113 type Output = T; typedef 1128 fn __parse_scoped(self, scope: Span, tokens: TokenStream) -> Result<Self::Output> { in __parse_scoped() 1144 pub fn parse_scoped<F: Parser>(f: F, scope: Span, tokens: TokenStream) -> Result<F::Output> { in parse_scoped()
|
| /external/googletest/googletest/docs/ |
| D | advanced.md | 2199 #### Colored Terminal Output 2243 #### Suppressing the Elapsed Time 2249 #### Suppressing UTF-8 Text Output 2260 #### Generating an XML Report 2343 #### Generating a JSON Report
|
| /external/tensorflow/tensorflow/tools/android/inference_interface/cmake/ |
| D | README.md | 40 Output section in TensorFlow-Android-Inference
|
| /external/tensorflow/tensorflow/core/kernels/ |
| D | bcast_ops.cc | 57 void Output(OpKernelContext* ctx, int idx, const BCast::Vec& v) { in Output() function in tensorflow::BCastArgsOp 107 void Output(OpKernelContext* ctx, int idx, const BCast::Vec& v) { in Output() function in tensorflow::BCastGradArgsOp
|
| /external/clang/include/clang/Basic/ |
| D | MacroBuilder.h | 27 MacroBuilder(raw_ostream &Output) : Out(Output) {} in MacroBuilder()
|
| /external/libtextclassifier/native/utils/ |
| D | tflite-model-executor.cc | 260 std::vector<tflite::StringRef> TfLiteModelExecutor::Output( in Output() function in libtextclassifier3::TfLiteModelExecutor 273 std::vector<std::string> TfLiteModelExecutor::Output( in Output() function in libtextclassifier3::TfLiteModelExecutor
|