Searched defs:sizeof (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/libs/hwui/
H A DVectorDrawable.cpp260 static_assert(sizeof(float) == sizeof(int32_t), "float is not the same size as int32_t"); member in namespace:android::uirenderer::VectorDrawable
261 static_assert(sizeof(SkColor) == sizeof(int32_t), "SkColor is not the same size as int32_t"); member in namespace:android::uirenderer::VectorDrawable
264 int propertyDataSize = sizeof(FullPathProperties::PrimitiveFields);
/frameworks/base/packages/MtpDocumentsProvider/jni/
H A Dcom_android_mtp_AppFuse.cpp47 constexpr size_t MAX_REQUEST_SIZE = sizeof(struct fuse_in_header) +
48 sizeof(struct fuse_write_in) + (MAX_WRITE > MAX_READ ? MAX_WRITE : MAX_READ);
68 return (buffer + sizeof(struct fuse_in_header));
71 return header().len - sizeof(struct fuse_in_header);
82 void prepare_buffer(size_t size = sizeof(T)) { argument
213 size_t response_size = sizeof(fuse_init_out);
310 const void* const buffer = reinterpret_cast<const uint8_t*>(in) + sizeof(fuse_write_in);
390 static_assert(sizeof(uint64_t) <= sizeof(jlong),
419 sizeof(uint64_
[all...]
/frameworks/base/include/androidfw/
H A DResourceTypes.h48 static_assert(sizeof(char16_t) == sizeof(uint16_t), "char16_t is not 16 bits"); member in struct:android::__assertChar16Size
1246 memset(localeScript, 0, sizeof(localeScript));
1247 memset(localeVariant, 0, sizeof(localeVariant));
1864 static const size_t IDMAP_HEADER_SIZE_BYTES = 4 * sizeof(uint32_t) + 2 * 256;
/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java1080 int sizeofType = pointer.sizeof(type);
3899 * sizeof(mType)
3915 public int sizeof(int type) { method in class:GLLogWrapper.PointerInfo
3933 return mStride > 0 ? mStride : sizeof(mType) * mSize;

Completed in 165 milliseconds