Home
last modified time | relevance | path

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

/external/llvm-project/lldb/test/API/types/
Dbasic_type.cpp104 T& a_ref = a; in main() local
138 fprintf (out, "%s&: @%p => a_ref = '" T_PRINTF_FORMAT "'\n", T_CSTR, &a_ref, a_ref); in main()
191 fprintf (out, "%s&: @%p => a_ref = '" T_PRINTF_FORMAT "'\n", T_CSTR, &a_ref, a_ref); in main()
/external/crosvm/data_model/src/
Dvolatile_memory.rs434 let a_ref = VolatileSlice::new(&mut a[..]); in ref_store() localVariable
435 let v_ref = a_ref.get_ref(0).unwrap(); in ref_store()
444 let a_ref = VolatileSlice::new(&mut a[..]); in ref_load() localVariable
446 let v_ref = a_ref.get_ref::<u8>(0).unwrap(); in ref_load()
461 let a_ref = VolatileSlice::new(&mut a[..]); in ref_to_slice() localVariable
462 let v_ref = a_ref.get_ref(1).unwrap(); in ref_to_slice()
/external/llvm-project/lldb/test/API/functionalities/breakpoint/inlined_breakpoints/
Dbasic_type.cpp95 T& a_ref = a; in main() local
129 std::printf ("%s&: @%p => a_ref = '" T_PRINTF_FORMAT "'\n", T_CSTR, &a_ref, a_ref); in main()
/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()
/external/llvm-project/clang/test/SemaCXX/
Dconstant-expression-cxx2a.cpp1220 constexpr A &&a_ref = A(); // expected-note {{temporary created here}}
1222a_ref.~A(); // expected-note {{destruction of temporary is not allowed in a constant expression ou… in destroy_extern_2()