Home
last modified time | relevance | path

Searched defs:Output (Results 1 – 25 of 594) sorted by relevance

12345678910>>...24

/external/tensorflow/tensorflow/go/op/
Dwrappers.go61 func TPUPartitionedInput(scope *Scope, inputs []tf.Output, optional ...TPUPartitionedInputAttr) (ou…
83 func TPUExecute(scope *Scope, args []tf.Output, key tf.Output, Tresults []tf.DataType) (results []t…
155 func OutfeedDequeueV2(scope *Scope, device_ordinal tf.Output, dtype tf.DataType, shape tf.Shape) (o…
228 func OutfeedEnqueue(scope *Scope, input tf.Output) (o *tf.Operation) {
261 func InfeedEnqueuePrelinearizedBuffer(scope *Scope, input tf.Output, optional ...InfeedEnqueuePreli…
308 func Prelinearize(scope *Scope, input tf.Output, optional ...PrelinearizeAttr) (output tf.Output) {
362 func InfeedEnqueueTuple(scope *Scope, inputs []tf.Output, shapes []tf.Shape, optional ...InfeedEnqu…
439 func ReadVariableXlaSplitND(scope *Scope, resource tf.Output, T tf.DataType, N int64, num_splits []…
525 func XlaConcatND(scope *Scope, inputs []tf.Output, num_concats []int64, optional ...XlaConcatNDAttr…
602 func XlaSplitND(scope *Scope, input tf.Output, N int64, num_splits []int64, optional ...XlaSplitNDA…
[all …]
Dgradients.go33 func Gradients(scope *Scope, y []tf.Output, x []tf.Output, dx ...tf.Output) (output []tf.Output) {
/external/rust/crates/futures-task/src/
Dfuture_obj.rs30 ptr: *mut (dyn Future<Output = T> + 'a), in remove_future_lifetime()
31 ) -> *mut (dyn Future<Output = T> + 'static) { in remove_future_lifetime()
37 ptr: unsafe fn(*mut (dyn Future<Output = T> + 'a)), in remove_drop_lifetime()
38 ) -> unsafe fn(*mut (dyn Future<Output = T> + 'static)) { in remove_drop_lifetime()
80 type Output = T; typedef
123 type Output = T; typedef
152 fn into_raw(self) -> *mut (dyn Future<Output = T> + 'a); in into_raw()
172 unsafe fn drop(ptr: *mut (dyn Future<Output = T> + 'a)); in drop()
179 fn into_raw(self) -> *mut (dyn Future<Output = T> + 'a) { in into_raw()
183 unsafe fn drop(_ptr: *mut (dyn Future<Output = T> + 'a)) {} in drop()
[all …]
/external/rust/crates/futures-util/src/
Dfns.rs5 type Output; typedef
6 fn call_once(self, arg: A) -> Self::Output; in call_once()
13 type Output = R; typedef
20 fn call_mut(&mut self, arg: A) -> Self::Output; in call_mut()
35 fn call(&self, arg: A) -> Self::Output; in call()
83 type Output = Result<A, E>; typedef
84 fn call_once(self, arg: A) -> Self::Output { in call_once()
99 type Output = G::Output; typedef
100 fn call_once(self, arg: A) -> Self::Output { in call_once()
109 fn call_mut(&mut self, arg: A) -> Self::Output { in call_mut()
[all …]
/external/rust/crates/ring/src/arithmetic/
Dmontgomery.rs44 type Output: Encoding; typedef
48 type Output = R; typedef
51 type Output = Unencoded; typedef
54 type Output = RInverse; typedef
59 type Output: Encoding; typedef
63 type Output = E::Output; typedef
67 type Output = E; typedef
74 type Output = <<E as ReductionEncoding>::Output as ReductionEncoding>::Output; typedef
84 type Output = <(Unencoded, RR) as ProductEncoding>::Output; typedef
87 type Output = <(RInverse, RR) as ProductEncoding>::Output; typedef
/external/tensorflow/tensorflow/go/
Doperation.go70 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 {
/external/rust/crates/num-bigint/src/bigint/
Ddivision.rs14 type Output = BigInt; typedef
38 type Output = BigInt; typedef
57 type Output = BigInt; typedef
66 type Output = BigInt; typedef
85 type Output = BigInt; typedef
94 type Output = BigInt; typedef
113 type Output = BigInt; typedef
126 type Output = BigInt; typedef
151 type Output = BigInt; typedef
163 type Output = BigInt; typedef
[all …]
Dsubtraction.rs33 type Output = BigInt; typedef
49 type Output = BigInt; typedef
58 type Output = BigInt; typedef
67 type Output = BigInt; typedef
91 type Output = BigInt; typedef
115 type Output = BigInt; typedef
124 type Output = BigInt; typedef
133 type Output = BigInt; typedef
142 type Output = BigInt; typedef
167 type Output = BigInt; typedef
[all …]
Daddition.rs34 type Output = BigInt; typedef
50 type Output = BigInt; typedef
59 type Output = BigInt; typedef
68 type Output = BigInt; typedef
92 type Output = BigInt; typedef
117 type Output = BigInt; typedef
142 type Output = BigInt; typedef
170 type Output = BigInt; typedef
191 type Output = BigInt; typedef
212 type Output = BigInt; typedef
/external/rust/crates/num-traits/src/ops/
Dinv.rs4 type Output; typedef
17 fn inv(self) -> Self::Output; in inv()
21 type Output = f32; typedef
28 type Output = f64; typedef
35 type Output = f32; typedef
42 type Output = f64; typedef
Dmul_add.rs25 type Output; typedef
28 fn mul_add(self, a: A, b: B) -> Self::Output; in mul_add()
39 type Output = Self; typedef
42 fn mul_add(self, a: Self, b: Self) -> Self::Output { in mul_add()
49 type Output = Self; typedef
52 fn mul_add(self, a: Self, b: Self) -> Self::Output { in mul_add()
/external/rust/crates/combine/src/parser/
Dchar.rs63 pub fn space<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in space() argument
84 pub fn spaces<Input>() -> impl Parser<Input, Output = ()> in spaces() argument
100 pub fn newline<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in newline() argument
117 pub fn crlf<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in crlf() argument
133 pub fn tab<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in tab() argument
151 pub fn upper<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in upper() argument
169 pub fn lower<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in lower() argument
188 pub fn alpha_num<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in alpha_num() argument
207 pub fn letter<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in letter() argument
223 pub fn oct_digit<Input>() -> impl Parser<Input, Output = char, PartialState = ()> in oct_digit() argument
[all …]
Dchoice.rs71 type Output; typedef
78 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error>; in parse_first()
84 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error>; in parse_partial()
91 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> in parse_mode_choice()
104 type Output = P::Output; typedef
114 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> in parse_mode_choice()
361 type Output = P::Output; typedef
371 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> in parse_mode_impl()
390 ) -> ParseResult<P::Output, <Input as StreamOnce>::Error> in slice_parse_mode()
477 type Output = O; typedef
[all …]
Dcombinator.rs28 type Output = (); typedef
38 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> in parse_mode_impl()
96 type Output = O; typedef
111 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> in parse_committed_mode()
124 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> in parse_mode_impl()
175 type Output = O; typedef
222 type Output = B; typedef
232 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> in parse_mode_impl()
267 type Output = B; typedef
277 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> in parse_mode_impl()
[all …]
Dbyte.rs51 pub fn digit<Input>() -> impl Parser<Input, Output = u8, PartialState = ()> in digit() argument
69 pub fn space<Input>() -> impl Parser<Input, Output = u8, PartialState = ()> in space() argument
87 pub fn spaces<Input>() -> impl Parser<Input, Output = ()> in spaces() argument
103 pub fn newline<Input>() -> impl Parser<Input, Output = u8, PartialState = ()> in newline() argument
120 pub fn crlf<Input>() -> impl Parser<Input, Output = u8, PartialState = ()> in crlf() argument
136 pub fn tab<Input>() -> impl Parser<Input, Output = u8, PartialState = ()> in tab() argument
152 pub fn upper<Input>() -> impl Parser<Input, Output = u8, PartialState = ()> in upper() argument
168 pub fn lower<Input>() -> impl Parser<Input, Output = u8, PartialState = ()> in lower() argument
185 pub fn alpha_num<Input>() -> impl Parser<Input, Output = u8, PartialState = ()> in alpha_num() argument
202 pub fn letter<Input>() -> impl Parser<Input, Output = u8, PartialState = ()> in letter() argument
[all …]
/external/rust/crates/criterion/src/
Dasync_executor.rs22 fn block_on<T>(&self, future: impl Future<Output = T>) -> T; in block_on()
30 fn block_on<T>(&self, future: impl Future<Output = T>) -> T { in block_on()
40 fn block_on<T>(&self, future: impl Future<Output = T>) -> T { in block_on()
47 fn block_on<T>(&self, future: impl Future<Output = T>) -> T { in block_on()
53 fn block_on<T>(&self, future: impl Future<Output = T>) -> T { in block_on()
63 fn block_on<T>(&self, future: impl Future<Output = T>) -> T { in block_on()
/external/rust/crates/tokio/src/future/
Dtry_join.rs14 F1: Future<Output = Result<T1, E>>, in try_join3()
15 F2: Future<Output = Result<T2, E>>, in try_join3()
16 F3: Future<Output = Result<T3, E>>, in try_join3()
47 type Output = Result<(T1, T2, T3), E>; typedef
49 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
/external/rust/crates/futures-executor/benches/
Dthread_notify.rs20 type Output = (); in thread_yield_single_thread_one_wait() typedef
22 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in thread_yield_single_thread_one_wait()
48 type Output = (); in thread_yield_single_thread_many_wait() typedef
50 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in thread_yield_single_thread_many_wait()
85 type Output = (); in thread_yield_multi_thread() typedef
87 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in thread_yield_multi_thread()
/external/rust/crates/num-bigint/src/biguint/
Ddivision.rs308 type Output = BigUint; typedef
318 type Output = BigUint; typedef
340 type Output = BigUint; typedef
356 type Output = BigUint; typedef
369 type Output = BigUint; typedef
387 type Output = BigUint; typedef
412 type Output = BigUint; typedef
429 type Output = BigUint; typedef
465 type Output = BigUint; typedef
479 type Output = BigUint; typedef
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/util/
DOutput.java16 public class Output<T> { class
33 public Output() { in Output() method in Output
41 public Output(T value) { in Output() method in Output
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DOutput.java16 public class Output<T> { class
36 public Output() { in Output() method in Output
45 public Output(T value) { in Output() method in Output
/external/crosvm/cros_async/src/
Dlib.rs143 type Output = T; typedef
166 pub fn run_one<F: Future>(fut: F) -> Result<F::Output> { in run_one()
184 pub fn run_one_uring<F: Future>(fut: F) -> Result<F::Output> { in run_one_uring()
200 pub fn run_one_poll<F: Future>(fut: F) -> Result<F::Output> { in run_one_poll()
452 pub async fn complete2<F1, F2>(f1: F1, f2: F2) -> (F1::Output, F2::Output) in complete2()
473 pub async fn complete3<F1, F2, F3>(f1: F1, f2: F2, f3: F3) -> (F1::Output, F2::Output, F3::Output) in complete3() argument
501 ) -> (F1::Output, F2::Output, F3::Output, F4::Output) in complete4()
533 ) -> (F1::Output, F2::Output, F3::Output, F4::Output, F5::Output) in complete5()
/external/crosvm/common/cros_async/src/
Dlib.rs141 type Output = T; typedef
164 pub fn run_one<F: Future>(fut: F) -> Result<F::Output> { in run_one()
182 pub fn run_one_uring<F: Future>(fut: F) -> Result<F::Output> { in run_one_uring()
198 pub fn run_one_poll<F: Future>(fut: F) -> Result<F::Output> { in run_one_poll()
450 pub async fn complete2<F1, F2>(f1: F1, f2: F2) -> (F1::Output, F2::Output) in complete2()
471 pub async fn complete3<F1, F2, F3>(f1: F1, f2: F2, f3: F3) -> (F1::Output, F2::Output, F3::Output) in complete3() argument
499 ) -> (F1::Output, F2::Output, F3::Output, F4::Output) in complete4()
531 ) -> (F1::Output, F2::Output, F3::Output, F4::Output, F5::Output) in complete5()
/external/rust/crates/der-parser/src/der/
Dtagged.rs82 pub fn parse_der_tagged_explicit_g<'a, Tag, Output, F, E>( in parse_der_tagged_explicit_g() argument
245 pub fn parse_der_tagged_implicit_g<'a, Tag, Output, F, E>( in parse_der_tagged_implicit_g() argument
/external/rust/crates/der-parser/src/ber/
Dtagged.rs81 pub fn parse_ber_tagged_explicit_g<'a, Tag, Output, F, E>( in parse_ber_tagged_explicit_g() argument
244 pub fn parse_ber_tagged_implicit_g<'a, Tag, Output, F, E>( in parse_ber_tagged_implicit_g() argument

12345678910>>...24