HomeSort by relevance Sort by last modified time
    Searched refs:kStep (Results 1 - 7 of 7) sorted by null

  /external/lzma/CPP/7zip/Compress/
ByteSwap.cpp 35 const UInt32 kStep = 2;
37 for (i = 0; i + kStep <= size; i += kStep)
50 const UInt32 kStep = 4;
52 for (i = 0; i + kStep <= size; i += kStep)
  /external/webrtc/webrtc/modules/audio_coding/neteq/
timestamp_scaler_unittest.cc 56 static const uint32_t kStep = 160;
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;
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 = 960
    [all...]
  /external/v8/src/crankshaft/
lithium-allocator.h 43 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;
111 // Code relies on kStep being a power of two.
112 STATIC_ASSERT(IS_POWER_OF_TWO(kStep));
    [all...]
  /external/v8/src/compiler/
register-allocator.h 39 return LifetimePosition(index * kStep);
44 return LifetimePosition(index * kStep + kHalfStep);
62 return value_ / kStep;
70 bool IsFullStart() const { return (value_ & (kStep - 1)) == 0; }
84 return LifetimePosition(value_ & ~(kStep - 1));
102 return LifetimePosition(FullStart().value_ + kStep);
160 static const int kStep = 2 * kHalfStep;
162 // Code relies on kStep and kHalfStep being a power of two.
    [all...]
  /external/webrtc/webrtc/base/
bitbuffer_unittest.cc 197 const int kStep = std::numeric_limits<uint32_t>::max() / 20000;
198 for (uint32_t i = 0; i < std::numeric_limits<uint32_t>::max() - kStep;
199 i += kStep) {
  /external/webrtc/webrtc/common_audio/signal_processing/
signal_processing_unittest.cc 435 const int kStep = 1;
443 kCrossCorrelationDimension, kShift, kStep);
  /external/v8/src/interpreter/
interpreter-assembler.cc 256 const int kStep = -1;
259 const int kStep = 1;
271 Node* offset = IntPtrConstant(relative_offset + msb_offset + i * kStep);
    [all...]

Completed in 265 milliseconds