Home
last modified time | relevance | path

Searched refs:out_location (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dsparse_tensor_dense_matmul_op_gpu.cu.cc48 T* out_location = out + i * p + j; in SparseTensorDenseMatMulKernel() local
50 CudaAtomicAdd(out_location, std::numeric_limits<T>::quiet_NaN()); in SparseTensorDenseMatMulKernel()
59 CudaAtomicAdd(out_location, a_value * b_value); in SparseTensorDenseMatMulKernel()
/external/protobuf/src/google/protobuf/
Ddescriptor.h359 bool GetSourceLocation(SourceLocation* out_location) const;
650 bool GetSourceLocation(SourceLocation* out_location) const;
767 bool GetSourceLocation(SourceLocation* out_location) const;
858 bool GetSourceLocation(SourceLocation* out_location) const;
957 bool GetSourceLocation(SourceLocation* out_location) const;
1036 bool GetSourceLocation(SourceLocation* out_location) const;
1117 bool GetSourceLocation(SourceLocation* out_location) const;
1277 bool GetSourceLocation(SourceLocation* out_location) const;
1285 SourceLocation* out_location) const;
Ddescriptor.cc2594 SourceLocation* out_location) const { in GetSourceLocation()
2595 GOOGLE_CHECK_NOTNULL(out_location); in GetSourceLocation()
2601 out_location->start_line = span.Get(0); in GetSourceLocation()
2602 out_location->start_column = span.Get(1); in GetSourceLocation()
2603 out_location->end_line = span.Get(span.size() == 3 ? 0 : 2); in GetSourceLocation()
2604 out_location->end_column = span.Get(span.size() - 1); in GetSourceLocation()
2606 out_location->leading_comments = loc->leading_comments(); in GetSourceLocation()
2607 out_location->trailing_comments = loc->trailing_comments(); in GetSourceLocation()
2608 out_location->leading_detached_comments.assign( in GetSourceLocation()
2618 bool FileDescriptor::GetSourceLocation(SourceLocation* out_location) const { in GetSourceLocation()
[all …]