Home
last modified time | relevance | path

Searched refs:a_ref (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/openssl/src/
Dasn1.rs704 let a_ref = a.as_ref(); in time_eq() localVariable
713 assert!(a_ref == b_ref); in time_eq()
714 assert!(a_ref != c_ref); in time_eq()
723 let a_ref = a.as_ref(); in time_ord() localVariable
731 assert!(a_ref >= b); in time_ord()
732 assert!(a_ref > c); in time_ord()
738 assert!(b <= a_ref); in time_ord()
739 assert!(c < a_ref); in time_ord()
741 assert!(a_ref >= b_ref); in time_ord()
742 assert!(a_ref > c_ref); in time_ord()
[all …]
/external/tensorflow/tensorflow/core/kernels/sparse/
Dsparse_mat_mul_op.cc191 auto a_ref = GetSparseMatrixRef(*input_matrix_a, rank, batch_idx, in Compute() local
199 output_matrices[batch_idx] = a_ref * b_ref; in Compute()