/external/lzma/CPP/7zip/Compress/ |
D | ByteSwap.cpp | 36 const UInt32 kStep = 2; in STDMETHODIMP_() local 37 if (size < kStep) in STDMETHODIMP_() 39 size &= ~(kStep - 1); in STDMETHODIMP_() 48 data += kStep; in STDMETHODIMP_() 59 const UInt32 kStep = 4; in STDMETHODIMP_() local 60 if (size < kStep) in STDMETHODIMP_() 62 size &= ~(kStep - 1); in STDMETHODIMP_() 74 data += kStep; in STDMETHODIMP_()
|
/external/webrtc/modules/audio_coding/neteq/ |
D | timestamp_scaler_unittest.cc | 59 static const uint32_t kStep = 160; in TEST() local 62 start_timestamp = start_timestamp - 5 * kStep; in TEST() 63 for (uint32_t timestamp = start_timestamp; timestamp != 5 * kStep; in TEST() 64 timestamp += kStep) { in TEST() 112 static const uint32_t kStep = 320; in TEST() local 115 external_timestamp = external_timestamp - 5 * kStep; in TEST() 117 for (; external_timestamp != 5 * kStep; external_timestamp += kStep) { in TEST() 124 internal_timestamp += 2 * kStep; in TEST() 291 static const uint32_t kStep = 960; in TEST() local 294 external_timestamp = external_timestamp - 5 * kStep; in TEST() [all …]
|
/external/webrtc/api/test/ |
D | time_controller.cc | 34 const auto kStep = TimeDelta::Millis(5); in Wait() local 36 elapsed += kStep) { in Wait() 39 AdvanceTime(kStep); in Wait()
|
/external/libgav1/libgav1/src/post_filter/ |
D | cdef.cc | 265 static constexpr int kStep = 8; in ApplyCdefForOneUnit() local 281 frame_buffer_.stride(plane) * (kStep >> subsampling_y_[plane]); in ApplyCdefForOneUnit() 285 frame_buffer_.stride(plane) * (kStep >> subsampling_y_[plane]); in ApplyCdefForOneUnit() 292 kCdefUnitSizeWithBorders * (kStep >> subsampling_y_[plane]); in ApplyCdefForOneUnit() 293 column_step[plane] = (kStep >> subsampling_x_[plane]) * sizeof(Pixel); in ApplyCdefForOneUnit() 373 const int block_width = kStep; in ApplyCdefForOneUnit() 374 const int block_height = kStep; in ApplyCdefForOneUnit() 514 const int block_width = kStep >> subsampling_x; in ApplyCdefForOneUnit() 515 const int block_height = kStep >> subsampling_y; in ApplyCdefForOneUnit()
|
/external/tensorflow/tensorflow/core/kernels/data/ |
D | range_dataset_op.h | 28 static constexpr const char* const kStep = "step"; variable
|
D | range_dataset_op.cc | 32 /* static */ constexpr const char* const RangeDatasetOp::kStep; member in tensorflow::data::RangeDatasetOp 312 OP_REQUIRES_OK(ctx, ParseScalarArgument<int64>(ctx, kStep, &step)); in MakeDataset()
|
D | dataset_test_base.cc | 996 RangeDatasetOp::kStep}; in GetInputNames()
|
/external/webrtc/rtc_tools/rtc_event_log_visualizer/ |
D | analyzer.cc | 467 TimeSeries time_series(label, LineStyle::kStep); in CreateAccumulatedPacketsTimeSeries() 692 const int64_t kStep = 1000000; in CreateIncomingPacketLossGraph() local 702 for (int64_t t = config_.begin_time_; t < config_.end_time_ + kStep; in CreateIncomingPacketLossGraph() 703 t += kStep) { in CreateIncomingPacketLossGraph() 854 TimeSeries remb_series("Remb", LineStyle::kStep); in CreateTotalIncomingBitrateGraph() 920 TimeSeries loss_series("Loss-based estimate", LineStyle::kStep); in CreateTotalOutgoingBitrateGraph() 927 TimeSeries delay_series("Delay-based estimate", LineStyle::kStep); in CreateTotalOutgoingBitrateGraph() 1029 TimeSeries remb_series("Remb", LineStyle::kStep); in CreateTotalOutgoingBitrateGraph() 1114 std::make_pair(layer, TimeSeries(layer_name, LineStyle::kStep))); in CreateBitrateAllocationGraph() 1135 TimeSeries target_rates("Simulated target rate", LineStyle::kStep, in CreateGoogCcSimulationGraph() [all …]
|
D | plot_base.cc | 150 } else if (series_list_[i].line_style == LineStyle::kStep) { in PrintPythonCode() 257 } else if (series_list_[i].line_style == LineStyle::kStep) { in ExportProtobuf()
|
D | plot_base.h | 30 kStep, // Horizontal line until the next value. Used for state changes. in RTC_POP_IGNORING_WUNDEF() enumerator
|
/external/tinyalsa_new/tests/src/ |
D | pcm_loopback_test.cc | 97 static constexpr double kStep = FQ * CH * kPi / SR; member in tinyalsa::testing::SineToneGenerator 136 channels[i] += kStep; in Read()
|
/external/webrtc/rtc_base/ |
D | bit_buffer_unittest.cc | 297 const int kStep = std::numeric_limits<uint32_t>::max() / 20000; in TEST() local 298 for (uint32_t i = 0; i < std::numeric_limits<uint32_t>::max() - kStep; in TEST() 299 i += kStep) { in TEST()
|
/external/perfetto/include/perfetto/protozero/ |
D | proto_decoder.h | 235 constexpr size_t kStep = wire_type == ProtoWireType::kFixed32 ? 4 : 8; variable 240 read_ptr_ += kStep;
|
/external/openscreen/third_party/abseil/src/absl/strings/internal/str_format/ |
D | float_conversion.cc | 51 static constexpr size_t kStep = 512 / sizeof(uint32_t); member in absl::str_format_internal::__anonf12d9c5d0111::StackArray 62 uint32_t values[steps * kStep]{}; in RunWithCapacityImpl() 67 static constexpr size_t kMaxCapacity = kStep * kNumSteps; 71 const size_t step = (capacity + kStep - 1) / kStep; in RunWithCapacity()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/internal/str_format/ |
D | float_conversion.cc | 37 static constexpr size_t kStep = 512 / sizeof(uint32_t); member in absl::str_format_internal::__anonb8b6229d0111::StackArray 48 uint32_t values[steps * kStep]{}; in RunWithCapacityImpl() 53 static constexpr size_t kMaxCapacity = kStep * kNumSteps; 57 const size_t step = (capacity + kStep - 1) / kStep; in RunWithCapacity()
|
/external/angle/third_party/abseil-cpp/absl/strings/internal/str_format/ |
D | float_conversion.cc | 54 static constexpr size_t kStep = 512 / sizeof(uint32_t); member in absl::str_format_internal::__anon3b2bfa8b0111::StackArray 65 uint32_t values[steps * kStep]{}; in RunWithCapacityImpl() 70 static constexpr size_t kMaxCapacity = kStep * kNumSteps; 74 const size_t step = (capacity + kStep - 1) / kStep; in RunWithCapacity()
|
/external/libtextclassifier/abseil-cpp/absl/strings/internal/str_format/ |
D | float_conversion.cc | 37 static constexpr size_t kStep = 512 / sizeof(uint32_t); member in absl::str_format_internal::__anondfc6c48c0111::StackArray 48 uint32_t values[steps * kStep]{}; in RunWithCapacityImpl() 53 static constexpr size_t kMaxCapacity = kStep * kNumSteps; 57 const size_t step = (capacity + kStep - 1) / kStep; in RunWithCapacity()
|
/external/webrtc/common_audio/signal_processing/ |
D | signal_processing_unittest.cc | 478 const int kStep = 1; in TEST() local 487 kCrossCorrelationDimension, kShift, kStep); in TEST()
|
/external/skia/gm/ |
D | dashing.cpp | 630 static constexpr SkScalar kStep = kIntervals[0] + kIntervals[1]; variable 635 for (SkScalar x = -.5f*kIntervals[1]; x < 105/kScale; x += (kStep + kSubstep)) {
|
/external/tensorflow/tensorflow/core/kernels/ |
D | sparse_matmul_op.cc | 1195 static const int kStep = kNumOperands * sizeof(float) / sizeof(bfloat16); in CopyAndMayBeInterleaveBfloat16() local 1200 for (int index = 0; index + kStep <= num; index += kStep) { in CopyAndMayBeInterleaveBfloat16() 1207 if (num % kStep != 0) { in CopyAndMayBeInterleaveBfloat16() 1208 memcpy(dst, src, (num % kStep) * sizeof(bfloat16)); in CopyAndMayBeInterleaveBfloat16()
|
/external/skia/src/sksl/codegen/ |
D | SkSLVMCodeGenerator.cpp | 164 kStep, enumerator
|