Searched refs:dest_index (Results 1 – 9 of 9) sorted by relevance
/external/libchrome/base/metrics/ |
D | sample_vector.cc | 139 size_t dest_index = GetBucketIndex(min); in AddSubtractImpl() local 154 index_offset = dest_index - iter_index; in AddSubtractImpl() 155 if (dest_index >= counts_size()) in AddSubtractImpl() 169 dest_index, op == HistogramSamples::ADD ? count : -count)) { in AddSubtractImpl() 185 if (min != bucket_ranges_->range(dest_index) || in AddSubtractImpl() 186 max != bucket_ranges_->range(dest_index + 1)) { in AddSubtractImpl() 188 << "; range=" << bucket_ranges_->range(dest_index) << "," in AddSubtractImpl() 189 << bucket_ranges_->range(dest_index + 1); in AddSubtractImpl() 195 &counts()[dest_index], op == HistogramSamples::ADD ? count : -count); in AddSubtractImpl() 204 dest_index = iter_index + index_offset; in AddSubtractImpl() [all …]
|
/external/libchrome/mojo/public/cpp/system/ |
D | wait_set.cc | 196 size_t dest_index = waitable_index_shift_++; in Wait() local 197 events.container()[dest_index] = &handle_event_; in Wait() 199 dest_index = (dest_index + 1) % events.container().size(); in Wait() 200 events.container()[dest_index] = e; in Wait()
|
/external/v8/src/ |
D | intl.cc | 117 int32_t dest_index = 0; in ToUpperWithSharpS() local 121 result->SeqOneByteStringSet(dest_index++, 'S'); in ToUpperWithSharpS() 122 result->SeqOneByteStringSet(dest_index++, 'S'); in ToUpperWithSharpS() 124 result->SeqOneByteStringSet(dest_index++, ToLatin1Upper(ch)); in ToUpperWithSharpS()
|
/external/webrtc/webrtc/modules/audio_processing/utility/ |
D | delay_estimator.c | 332 int dest_index = 0; in WebRtc_SoftResetBinaryDelayEstimatorFarend() local 342 dest_index = abs_shift; in WebRtc_SoftResetBinaryDelayEstimatorFarend() 349 memmove(&self->binary_far_history[dest_index], in WebRtc_SoftResetBinaryDelayEstimatorFarend() 354 memmove(&self->far_bit_counts[dest_index], in WebRtc_SoftResetBinaryDelayEstimatorFarend()
|
/external/tensorflow/tensorflow/compiler/xrt/ |
D | xrt_state.cc | 520 const xla::ShapeIndex& dest_index) { in AliasBufferFrom() argument 522 XRTBufferAllocation* dest_buffer = buffers_.element(dest_index); in AliasBufferFrom() 531 dest_index.ToString(), ": ", source_buffer->size(), " vs ", in AliasBufferFrom() 534 *buffers_.mutable_element(dest_index) = source_buffer; in AliasBufferFrom()
|
D | xrt_state.h | 183 const xla::ShapeIndex& dest_index);
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | literal.cc | 252 int64 dest_index = linear_index(shape(), dest_indexes); in CopySliceFromInternal() local 255 StridedCopy(this->data<NativeT>(), dest_index, stride_config.dest_stride, in CopySliceFromInternal() 270 absl::Span<const int64> dest_index) { in CopyElementFrom() argument 275 IndexUtil::MultidimensionalIndexToLinearIndex(shape(), dest_index); in CopyElementFrom() 485 ShapeIndex dest_index = dest_shape_index; in MoveFrom() local 487 dest_index.push_back(i); in MoveFrom() 489 Piece& dest_piece = piece(dest_index); in MoveFrom() 636 int64 dest_index = IndexUtil::MultidimensionalIndexToLinearIndex( in Broadcast() local 640 memcpy(dest_data + primitive_size * dest_index, in Broadcast()
|
D | literal.h | 614 absl::Span<const int64> dest_index);
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | gather_op_test.py | 143 for source_index, dest_index in enumerate(indices.flat): 144 dest_slice = ((slice(None),) * outer_dims + (dest_index,) +
|