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

  /hardware/libhardware/tests/hardware/
struct-size.cpp 30 template<> constexpr size_t CheckSizeHelper<4>(size_t size32, size_t size64) {
34 template<> constexpr size_t CheckSizeHelper<8>(size_t size32, size_t size64) {
35 return size64;
38 template<typename T, size_t size32, size_t size64> static void CheckTypeSize() {
39 const size_t mySize = CheckSizeHelper<sizeof(void *)>(size32, size64);
  /external/e2fsprogs/lib/blkid/
getsize.c 77 unsigned long long size64; local
81 if (ioctl(fd, DKIOCGETBLOCKCOUNT, &size64) >= 0) {
83 (size64 << 9) > 0xFFFFFFFF)
85 return (blkid_loff_t)size64 << 9;
101 ioctl(fd, BLKGETSIZE64, &size64) >= 0) {
103 (size64 > 0xFFFFFFFF))
105 return size64;
121 if (ioctl(fd, DIOCGMEDIASIZE, &size64) >= 0)
122 return (off_t)size64;
  /external/e2fsprogs/lib/ext2fs/
getsize.c 145 unsigned long long size64;
153 if (ioctl(fd, DKIOCGETBLOCKCOUNT, &size64) >= 0) {
154 *retblocks = size64 / (blocksize / 512);
171 ioctl(fd, BLKGETSIZE64, &size64) >= 0) {
172 *retblocks = size64 / blocksize;
266 size64 = low + 1;
267 *retblocks = size64 / blocksize;
  /external/skia/include/core/
SkTemplates.h 305 const uint64_t size64 = sk_64_mul(count, sizeof(T)); local
306 const size_t size = static_cast<size_t>(size64);
307 if (size != size64) {
  /frameworks/base/core/jni/android/graphics/
BitmapFactory.cpp 173 const int64_t size64 = info.getSafeSize64(bitmap->rowBytes()); local
174 if (!sk_64_isS32(size64)) {
179 const size_t size = sk_64_asS32(size64);
  /external/skia/src/core/
SkResourceCache.cpp 161 uint64_t size64 = bitmap->computeSize64(); local
162 if (0 == size || size64 > (uint64_t)size) {

Completed in 152 milliseconds