Searched refs:kStep (Results 1 - 6 of 6) sorted by relevance

/external/lzma/CPP/7zip/Compress/
H A DByteSwap.cpp35 const UInt32 kStep = 2; local
37 for (i = 0; i + kStep <= size; i += kStep)
50 const UInt32 kStep = 4; local
52 for (i = 0; i + kStep <= size; i += kStep)
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dtimestamp_scaler_unittest.cc54 static const uint32_t kStep = 160; local
57 start_timestamp = start_timestamp - 5 * kStep;
58 for (uint32_t timestamp = start_timestamp; timestamp != 5 * kStep;
59 timestamp += kStep) {
103 static const uint32_t kStep = 320; local
106 external_timestamp = external_timestamp - 5 * kStep;
108 for (; external_timestamp != 5 * kStep; external_timestamp += kStep) {
115 internal_timestamp += 2 * kStep;
269 static const uint32_t kStep local
296 static const uint32_t kStep = 960; local
[all...]
/external/chromium_org/media/base/simd/
H A Dconvert_rgb_to_yuv_unittest.cc54 const int kStep = 8; local
55 const int kWidth = 256 / kStep;
78 rgb[b * size + 0] = b * kStep;
79 rgb[b * size + 1] = g * kStep;
80 rgb[b * size + 2] = r * kStep;
/external/chromium_org/v8/src/compiler/
H A Dregister-allocator.h43 return LifetimePosition(index * kStep);
53 return value_ / kStep;
58 bool IsInstructionStart() const { return (value_ & (kStep - 1)) == 0; }
64 return LifetimePosition(value_ & ~(kStep - 1));
71 return LifetimePosition(InstructionStart().Value() + kStep / 2);
77 return LifetimePosition(InstructionStart().Value() + kStep);
85 return LifetimePosition(InstructionStart().Value() - kStep);
105 static const int kStep = 2; member in class:v8::internal::compiler::LifetimePosition
107 // Code relies on kStep being a power of two.
108 STATIC_ASSERT(IS_POWER_OF_TWO(kStep));
[all...]
/external/chromium_org/v8/src/
H A Dlithium-allocator.h43 return LifetimePosition(index * kStep);
55 return value_ / kStep;
61 return (value_ & (kStep - 1)) == 0;
68 return LifetimePosition(value_ & ~(kStep - 1));
75 return LifetimePosition(InstructionStart().Value() + kStep/2);
81 return LifetimePosition(InstructionStart().Value() + kStep);
89 return LifetimePosition(InstructionStart().Value() - kStep);
109 static const int kStep = 2; member in class:v8::internal::LifetimePosition
111 // Code relies on kStep being a power of two.
112 STATIC_ASSERT(IS_POWER_OF_TWO(kStep));
[all...]
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dsignal_processing_unittest.cc466 const int kStep = 1; local
474 kCrossCorrelationDimension, kShift, kStep);

Completed in 302 milliseconds