Lines Matching refs:bytes_to_fill
2580 int bytes_to_fill = 8; in KeyExpired() local
2581 for (int i = 0; i < bytes_to_fill; ++i) { in KeyExpired()
2583 << ((bytes_to_fill - i - 1) << 3)); in KeyExpired()
2766 int bytes_to_fill = std::min(prefix_size_, 8); in GenerateKeyFromInt() local
2768 for (int i = 0; i < bytes_to_fill; ++i) { in GenerateKeyFromInt()
2769 pos[i] = (prefix >> ((bytes_to_fill - i - 1) << 3)) & 0xFF; in GenerateKeyFromInt()
2772 memcpy(pos, static_cast<void*>(&prefix), bytes_to_fill); in GenerateKeyFromInt()
2781 int bytes_to_fill = std::min(key_size_ - static_cast<int>(pos - start), 8); in GenerateKeyFromInt() local
2783 for (int i = 0; i < bytes_to_fill; ++i) { in GenerateKeyFromInt()
2784 pos[i] = (v >> ((bytes_to_fill - i - 1) << 3)) & 0xFF; in GenerateKeyFromInt()
2787 memcpy(pos, static_cast<void*>(&v), bytes_to_fill); in GenerateKeyFromInt()
2789 pos += bytes_to_fill; in GenerateKeyFromInt()
6790 int bytes_to_fill = in TimeSeriesWrite() local
6794 for (int i = 0; i < bytes_to_fill; ++i) { in TimeSeriesWrite()
6795 pos[i] = (timestamp_value >> ((bytes_to_fill - i - 1) << 3)) & 0xFF; in TimeSeriesWrite()
6798 memcpy(pos, static_cast<void*>(×tamp_value), bytes_to_fill); in TimeSeriesWrite()