/external/guava/android/guava/src/com/google/common/util/concurrent/ |
D | AggregateFuture.java | 42 abstract class AggregateFuture<InputT, OutputT> extends AggregateFutureState<OutputT> { 55 @NullableDecl private ImmutableCollection<? extends ListenableFuture<? extends InputT>> futures; 61 ImmutableCollection<? extends ListenableFuture<? extends InputT>> futures, in AggregateFuture() 126 for (final ListenableFuture<? extends InputT> future : futures) { in init() 170 final ImmutableCollection<? extends Future<? extends InputT>> localFutures = in init() 179 for (ListenableFuture<? extends InputT> future : futures) { in init() 246 private void collectValueFromNonCancelledFuture(int index, Future<? extends InputT> future) { in collectValueFromNonCancelledFuture() 259 ImmutableCollection<? extends Future<? extends InputT>> in decrementCountAndMaybeComplete() 270 ImmutableCollection<? extends Future<? extends InputT>> in processCompleted() 274 for (Future<? extends InputT> future : futuresIfNeedToCollectAtCompletion) { in processCompleted() [all …]
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
D | AggregateFuture.java | 42 abstract class AggregateFuture<InputT, OutputT> extends AggregateFutureState<OutputT> { 55 private @Nullable ImmutableCollection<? extends ListenableFuture<? extends InputT>> futures; 61 ImmutableCollection<? extends ListenableFuture<? extends InputT>> futures, in AggregateFuture() 126 for (final ListenableFuture<? extends InputT> future : futures) { in init() 170 final ImmutableCollection<? extends Future<? extends InputT>> localFutures = in init() 179 for (ListenableFuture<? extends InputT> future : futures) { in init() 246 private void collectValueFromNonCancelledFuture(int index, Future<? extends InputT> future) { in collectValueFromNonCancelledFuture() 259 ImmutableCollection<? extends Future<? extends InputT>> in decrementCountAndMaybeComplete() 270 ImmutableCollection<? extends Future<? extends InputT>> in processCompleted() 274 for (Future<? extends InputT> future : futuresIfNeedToCollectAtCompletion) { in processCompleted() [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | redux_functor.h | 38 template <typename InputT, typename AccumT, typename OutputT, 60 input.template flat<InputT>().template cast<OutputT>().reshape( in operator() 77 const InputT* input_data = input.template flat<InputT>().data(); in operator() 90 Eigen::Tensor<const InputT, 1, Eigen::RowMajor, Eigen::Index>, in operator() 102 const InputT* my_job_start = input_data + inner_dim_start; in operator() 115 const Eigen::Index compute_input_bytes = compute_size * sizeof(InputT); in operator() 144 const InputT* input_data = input.template flat<InputT>().data(); in operator() 156 Eigen::Tensor<const InputT, 1, Eigen::RowMajor, Eigen::Index>, in operator() 178 const Eigen::Index compute_input_bytes = compute_size * sizeof(InputT); in operator() 206 template <typename InputT, typename AccumT, typename OutputT, [all …]
|
D | spacetobatch_functor.h | 87 using InputT = typename std::conditional<B2S, T, const T>::type; member 105 typename TTypes<InputT, NUM_BLOCK_DIMS + 2>::Tensor space_tensor,
|
/external/auto/value/src/test/java/com/google/auto/value/extension/memoized/ |
D | MemoizedTest.java | 456 interface TypeEdgeIterable<InputT, ResultT> {} 460 interface TypePath<InputT, ResultT> {} 462 abstract static class AbstractTypePath<InputT, ResultT> { 463 abstract TypeEdgeIterable<InputT, ResultT> edges(); in edges() 467 abstract static class ResourceUriPath<InputT> extends AbstractTypePath<InputT, ResourceUri> { 468 static <InputT> ResourceUriPath<InputT> create( in create() 469 TypeEdgeIterable<InputT, ResourceUri> edges) { in create() argument 474 TypePath<InputT, String> toServiceName() { in toServiceName() 475 return new TypePath<InputT, String>() {}; in toServiceName()
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | deduction-crash.cpp | 150 template <typename InputT, typename OutputT> 153 OutputT evaluateSelectionRequirement(InputT &&Value) { 157 template <typename InputT, typename OutputT> 158 OutputT SourceSelectionRequirement<InputT, OutputT>:: 159 evaluateSelectionRequirement<void>(InputT &&Value) { // expected-error {{cannot specialize a member…
|
/external/tensorflow/tensorflow/stream_executor/rocm/ |
D | rocm_fft.h | 118 template <typename FuncT, typename InputT, typename OutputT> 121 const DeviceMemory<InputT> &input, 126 template <typename FuncT, typename InputT, typename OutputT> 128 const DeviceMemory<InputT> &input,
|
D | rocm_fft.cc | 508 template <typename FuncT, typename InputT, typename OutputT> 510 const DeviceMemory<InputT> &input, in DoFftInternal() 523 GpuComplex(const_cast<InputT *>(GpuMemory(input))), in DoFftInternal() 534 template <typename FuncT, typename InputT, typename OutputT> 537 const DeviceMemory<InputT> &input, in DoFftWithDirectionInternal() 550 GpuComplex(const_cast<InputT *>(GpuMemory(input))), in DoFftWithDirectionInternal()
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
D | cuda_fft.h | 122 template <typename FuncT, typename InputT, typename OutputT> 125 const DeviceMemory<InputT> &input, 130 template <typename FuncT, typename InputT, typename OutputT> 132 const DeviceMemory<InputT> &input,
|
D | cuda_fft.cc | 457 template <typename FuncT, typename InputT, typename OutputT> 459 const DeviceMemory<InputT> &input, in DoFftInternal() 463 DeviceMemory<InputT> input_maybe_copy = input; in DoFftInternal() 479 std::is_same<InputT, std::complex<float>>::value && in DoFftInternal() 487 input_maybe_copy = DeviceMemory<InputT>(allocated.ValueOrDie()); in DoFftInternal() 499 GpuComplex(const_cast<InputT *>(GpuMemory(input_maybe_copy))), in DoFftInternal() 510 template <typename FuncT, typename InputT, typename OutputT> 513 const DeviceMemory<InputT> &input, in DoFftWithDirectionInternal() 527 GpuComplex(const_cast<InputT *>(GpuMemory(input))), in DoFftWithDirectionInternal()
|
/external/tensorflow/tensorflow/lite/kernels/internal/reference/ |
D | quantize.h | 30 template <typename InputT, typename OutputT> 33 const InputT* input_data, in AffineQuantize() 43 const InputT val = input_data[i]; in AffineQuantize()
|
D | dequantize.h | 30 template <typename InputT, typename OutputT> 33 const InputT* input_data, in Dequantize()
|
D | softmax.h | 66 template <typename InputT, typename OutputT> 68 const RuntimeShape& input_shape, const InputT* input_data, in Softmax() 93 InputT max_in_row = std::numeric_limits<InputT>::min(); in Softmax()
|
/external/angle/src/libANGLE/renderer/d3d/ |
D | IndexDataManager.cpp | 27 template <typename InputT, typename DestT> 35 const InputT *in = static_cast<const InputT *>(input); in ConvertIndexArray() 40 InputT srcRestartIndex = static_cast<InputT>(gl::GetPrimitiveRestartIndex(sourceType)); in ConvertIndexArray()
|
/external/tensorflow/tensorflow/lite/micro/kernels/ |
D | gather.cc | 106 template <typename InputT, typename PositionsT> 112 GetTensorData<InputT>(input), GetTensorShape(positions), in Gather() 114 GetTensorShape(output), GetTensorData<InputT>(output)); in Gather()
|
/external/tensorflow/tensorflow/lite/kernels/ |
D | gather.cc | 106 template <typename InputT, typename PositionsT> 112 GetTensorData<InputT>(input), GetTensorShape(positions), in Gather() 114 GetTensorShape(output), GetTensorData<InputT>(output)); in Gather()
|
/external/deqp/modules/gles2/functional/ |
D | es2fShaderMatrixTests.cpp | 335 template <int InputT, int DataT>
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderMatrixTests.cpp | 493 template <int InputT, int DataT>
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRenderMatrixTests.cpp | 488 template <int InputT, int DataT>
|