Home
last modified time | relevance | path

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

/external/libgav1/libgav1/src/
Ddecoder_impl.cc139 for (const auto& tile_ptr : tiles) { in DecodeTilesNonFrameParallel() local
140 if (!tile_ptr->ProcessSuperBlockRow<kProcessingModeParseAndDecode, true>( in DecodeTilesNonFrameParallel()
177 const auto& tile_ptr = tiles[index]; in DecodeTilesThreadedNonFrameParallel() local
178 if (!tile_ptr->ParseAndDecode()) { in DecodeTilesThreadedNonFrameParallel()
179 LIBGAV1_DLOG(ERROR, "Error decoding tile #%d", tile_ptr->number()); in DecodeTilesThreadedNonFrameParallel()
194 const auto& tile_ptr = tiles[index]; in DecodeTilesThreadedNonFrameParallel() local
195 if (!tile_ptr->ParseAndDecode()) { in DecodeTilesThreadedNonFrameParallel()
196 LIBGAV1_DLOG(ERROR, "Error decoding tile #%d", tile_ptr->number()); in DecodeTilesThreadedNonFrameParallel()
246 for (const auto& tile_ptr : tiles) { in DecodeTilesFrameParallel() local
247 if (!tile_ptr->ProcessSuperBlockRow<kProcessingModeDecodeOnly, false>( in DecodeTilesFrameParallel()
[all …]
/external/tensorflow/tensorflow/core/kernels/
Ddepthwise_conv_op_gpu.h280 S* const tile_ptr = tile_idx + shared_data;
281 tile_ptr[0] = static_cast<S>(ldg(in_ptr));
283 tile_ptr[tile_offset] = static_cast<S>(ldg(tensor_offset + in_ptr));
306 const S* const tile_ptr = shared_offset + shared_data;
307 sum1 += filter_value * tile_ptr[0];
308 sum2 += filter_value * tile_ptr[tile_offset];
571 S* const tile_ptr = tile_idx + shared_data;
572 tile_ptr[0] = static_cast<S>(ldg(in_ptr));
574 tile_ptr[tile_offset] = static_cast<S>(ldg(block_pixels + in_ptr));
599 const S* const tile_ptr = shared_offset + shared_data;
[all …]