HomeSort by relevance Sort by last modified time
    Searched refs:kStep (Results 1 - 13 of 13) 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/opencv3/3rdparty/libwebp/dsp/
enc_neon.c 154 const int kStep = 32; // The store is only incrementing the pointer as if we
196 "vst1.16 d0[0], [%[out]], %[kStep] \n"
197 "vst1.16 d1[0], [%[out]], %[kStep] \n"
198 "vst1.16 d2[0], [%[out]], %[kStep] \n"
199 "vst1.16 d3[0], [%[out]], %[kStep] \n"
200 "vst1.16 d0[1], [%[out]], %[kStep] \n"
201 "vst1.16 d1[1], [%[out]], %[kStep] \n"
202 "vst1.16 d2[1], [%[out]], %[kStep] \n"
203 "vst1.16 d3[1], [%[out]], %[kStep] \n"
204 "vst1.16 d0[2], [%[out]], %[kStep] \n
    [all...]
dec_neon.c 320 const int kStep = 32; // The store is only incrementing the pointer as if we
362 "vst1.16 d0[0], [%[out]], %[kStep] \n"
363 "vst1.16 d1[0], [%[out]], %[kStep] \n"
364 "vst1.16 d2[0], [%[out]], %[kStep] \n"
365 "vst1.16 d3[0], [%[out]], %[kStep] \n"
366 "vst1.16 d0[1], [%[out]], %[kStep] \n"
367 "vst1.16 d1[1], [%[out]], %[kStep] \n"
368 "vst1.16 d2[1], [%[out]], %[kStep] \n"
369 "vst1.16 d3[1], [%[out]], %[kStep] \n"
370 "vst1.16 d0[2], [%[out]], %[kStep] \n
    [all...]
  /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/test/unittests/interpreter/
interpreter-assembler-unittest.cc 130 const int kStep = -1;
133 const int kStep = 1;
146 IsIntPtrConstant(offset + kMsbOffset + kStep * i)));
167 const int kStep = -1;
170 const int kStep = 1;
183 IsIntPtrConstant(offset + kMsbOffset + kStep * i)));
208 const int kStep = -1;
211 const int kStep = 1;
224 IsIntPtrConstant(offset + kMsbOffset + kStep * i)));
249 const int kStep = -1
    [all...]
  /external/v8/src/compiler/
register-allocator.h 37 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;
160 // 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 189 const int kStep = -1;
192 const int kStep = 1;
204 Node* offset = IntPtrConstant(relative_offset + msb_offset + i * kStep);
  /external/v8/test/cctest/interpreter/
test-interpreter.cc     [all...]
  /external/v8/test/cctest/compiler/
test-run-bytecode-graph-builder.cc     [all...]
  /external/v8/test/cctest/heap/
test-heap.cc     [all...]

Completed in 278 milliseconds