Searched defs:kStep (Results 1 - 11 of 11) 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/webrtc/webrtc/base/
H A Dbitbuffer_unittest.cc197 const int kStep = std::numeric_limits<uint32_t>::max() / 20000; local
198 for (uint32_t i = 0; i < std::numeric_limits<uint32_t>::max() - kStep;
199 i += kStep) {
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dtimestamp_scaler_unittest.cc56 static const uint32_t kStep = 160; local
59 start_timestamp = start_timestamp - 5 * kStep;
60 for (uint32_t timestamp = start_timestamp; timestamp != 5 * kStep;
61 timestamp += kStep) {
105 static const uint32_t kStep = 320; local
108 external_timestamp = external_timestamp - 5 * kStep;
110 for (; external_timestamp != 5 * kStep; external_timestamp += kStep) {
117 internal_timestamp += 2 * kStep;
273 static const uint32_t kStep local
[all...]
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dsignal_processing_unittest.cc435 const int kStep = 1; local
443 kCrossCorrelationDimension, kShift, kStep);
/external/v8/test/unittests/interpreter/
H A Dinterpreter-assembler-unittest.cc130 const int kStep = -1; local
133 const int kStep = 1;
146 IsIntPtrConstant(offset + kMsbOffset + kStep * i)));
167 const int kStep = -1; local
170 const int kStep = 1;
183 IsIntPtrConstant(offset + kMsbOffset + kStep * i)));
208 const int kStep = -1; local
211 const int kStep = 1;
224 IsIntPtrConstant(offset + kMsbOffset + kStep * i)));
249 const int kStep local
[all...]
/external/v8/test/cctest/compiler/
H A Dtest-run-bytecode-graph-builder.cc2596 const int kStep = 46; local
2598 for (int constants = start; constants < 300; constants += kStep) {
/external/v8/src/crankshaft/
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/v8/src/interpreter/
H A Dinterpreter-assembler.cc189 const int kStep = -1; local
192 const int kStep = 1; local
204 Node* offset = IntPtrConstant(relative_offset + msb_offset + i * kStep);
/external/v8/src/compiler/
H A Dregister-allocator.h37 return LifetimePosition(index * kStep);
42 return LifetimePosition(index * kStep + kHalfStep);
60 return value_ / kStep;
68 bool IsFullStart() const { return (value_ & (kStep - 1)) == 0; }
82 return LifetimePosition(value_ & ~(kStep - 1));
100 return LifetimePosition(FullStart().value_ + kStep);
158 static const int kStep = 2 * kHalfStep; member in class:v8::internal::compiler::final
160 // Code relies on kStep and kHalfStep being a power of two.
/external/v8/test/cctest/interpreter/
H A Dtest-interpreter.cc3449 const int kStep = 13; local
3450 for (int constants = 11; constants < 256 + 3 * kStep; constants += kStep) {
/external/v8/test/cctest/heap/
H A Dtest-heap.cc4572 const int kStep = size / 10; local
4573 for (int i = 0; i < size; i += kStep) {
4582 for (int i = 0; i < size; i += kStep) {

Completed in 244 milliseconds