Searched refs:kStepSize (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/
H A Dv8utils.h214 static const int kStepSize = sizeof(uintptr_t) / sizeof(*dest); // NOLINT local
215 while (dest <= limit - kStepSize) {
218 dest += kStepSize;
219 src += kStepSize;
H A Dutils.h746 static const int kStepSize = sizeof(uintptr_t) / sizeof(*lhs); // NOLINT local
747 while (lhs <= limit - kStepSize) {
752 lhs += kStepSize;
753 rhs += kStepSize;
H A Dobjects.cc6817 const int kStepSize = sizeof(int) / sizeof(Char); // NOLINT local
6818 int endpoint = length - kStepSize;
6820 for (; i <= endpoint; i += kStepSize) {

Completed in 334 milliseconds