Home
last modified time | relevance | path

Searched refs:kStep (Results 1 – 7 of 7) sorted by relevance

/external/lzma/CPP/7zip/Compress/
DByteSwap.cpp36 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/webrtc/modules/audio_coding/neteq/
Dtimestamp_scaler_unittest.cc56 static const uint32_t kStep = 160; in TEST() local
59 start_timestamp = start_timestamp - 5 * kStep; in TEST()
60 for (uint32_t timestamp = start_timestamp; timestamp != 5 * kStep; in TEST()
61 timestamp += kStep) { in TEST()
105 static const uint32_t kStep = 320; in TEST() local
108 external_timestamp = external_timestamp - 5 * kStep; in TEST()
110 for (; external_timestamp != 5 * kStep; external_timestamp += kStep) { in TEST()
117 internal_timestamp += 2 * kStep; in TEST()
273 static const uint32_t kStep = 960; in TEST() local
276 external_timestamp = external_timestamp - 5 * kStep; in TEST()
[all …]
/external/webrtc/webrtc/base/
Dbitbuffer_unittest.cc197 const int kStep = std::numeric_limits<uint32_t>::max() / 20000; in TEST() local
198 for (uint32_t i = 0; i < std::numeric_limits<uint32_t>::max() - kStep; in TEST()
199 i += kStep) { in TEST()
/external/v8/src/compiler/
Dregister-allocator.h40 return LifetimePosition(index * kStep); in GapFromInstructionIndex()
45 return LifetimePosition(index * kStep + kHalfStep); in InstructionFromInstructionIndex()
63 return value_ / kStep; in ToInstructionIndex()
71 bool IsFullStart() const { return (value_ & (kStep - 1)) == 0; } in IsFullStart()
85 return LifetimePosition(value_ & ~(kStep - 1)); in FullStart()
103 return LifetimePosition(FullStart().value_ + kStep); in NextFullStart()
161 static const int kStep = 2 * kHalfStep; variable
/external/webrtc/webrtc/common_audio/signal_processing/
Dsignal_processing_unittest.cc435 const int kStep = 1; in TEST_F() local
443 kCrossCorrelationDimension, kShift, kStep); in TEST_F()
/external/tensorflow/tensorflow/core/kernels/
Dsparse_matmul_op.cc1196 static const int kStep = kNumOperands * sizeof(float) / sizeof(bfloat16); in CopyAndMayBeInterleaveBfloat16() local
1201 for (int index = 0; index + kStep <= num; index += kStep) { in CopyAndMayBeInterleaveBfloat16()
1208 if (num % kStep != 0) { in CopyAndMayBeInterleaveBfloat16()
1209 memcpy(dst, src, (num % kStep) * sizeof(bfloat16)); in CopyAndMayBeInterleaveBfloat16()
/external/v8/src/interpreter/
Dinterpreter-assembler.cc399 const int kStep = -1; in BytecodeOperandReadUnaligned() local
402 const int kStep = 1; in BytecodeOperandReadUnaligned() local
414 Node* offset = IntPtrConstant(relative_offset + msb_offset + i * kStep); in BytecodeOperandReadUnaligned()