Searched refs:outSize (Results 1 – 11 of 11) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | Display.java | 94 public void getSize(Point outSize) { in getSize() argument 95 getSizeInternal(outSize, true); in getSize() 98 private void getSizeInternal(Point outSize, boolean doCompat) { in getSizeInternal() argument 102 wm.getDisplaySize(outSize); in getSizeInternal() 106 mTmpMetrics.noncompatWidthPixels = outSize.x; in getSizeInternal() 107 mTmpMetrics.noncompatHeightPixels = outSize.y; in getSizeInternal() 110 outSize.x = mTmpMetrics.widthPixels; in getSizeInternal() 111 outSize.y = mTmpMetrics.heightPixels; in getSizeInternal() 117 outSize.x = getRawWidth(); in getSizeInternal() 118 outSize.y = getRawHeight(); in getSizeInternal() [all …]
|
/frameworks/base/opengl/libs/GLES2_dbg/test/ |
D | test_main.cpp | 120 const uint32_t outSize = *(uint32_t *)(out.data() + i); in TEST_F() local 125 i += outSize; // chunk not compressed in TEST_F() 128 decompSize += outSize; in TEST_F()
|
/frameworks/base/include/binder/ |
D | CursorWindow.h | 135 inline const void* getFieldSlotValueBlob(FieldSlot* fieldSlot, size_t* outSize) { in getFieldSlotValueBlob() argument 136 *outSize = fieldSlot->data.buffer.size; in getFieldSlotValueBlob()
|
/frameworks/base/native/include/android/ |
D | native_activity.h | 131 void* (*onSaveInstanceState)(ANativeActivity* activity, size_t* outSize);
|
/frameworks/base/media/libstagefright/ |
D | OggExtractor.cpp | 830 static uint8_t *DecodeBase64(const char *s, size_t size, size_t *outSize) { in DecodeBase64() argument 831 *outSize = 0; in DecodeBase64() 849 *outSize = outLen; in DecodeBase64()
|
/frameworks/base/services/input/ |
D | InputReader.h | 1129 inline void applySizeScaleAndBias(float* outSize) const { in applySizeScaleAndBias() 1131 *outSize *= sizeScale; in applySizeScaleAndBias() 1134 *outSize += sizeBias; in applySizeScaleAndBias()
|
/frameworks/base/opengl/libagl/ |
D | texture.cpp | 363 GGLSurface** outSurface, int32_t* outSize, GLint level, in createTextureSurface() argument 393 *outSize = size; in createTextureSurface() 405 *outSize = size; in createTextureSurface()
|
/frameworks/base/tools/aapt/ |
D | AaptAssets.h | 193 void* editData(size_t* outSize = NULL);
|
D | AaptAssets.cpp | 1466 void* AaptFile::editData(size_t* outSize) in editData() argument 1468 if (outSize) { in editData() 1469 *outSize = mDataSize; in editData()
|
/frameworks/base/libs/utils/ |
D | ResourceTypes.cpp | 4316 void** outData, size_t* outSize) const in createIdmap() 4331 *outSize = (IDMAP_HEADER_SIZE + 1) * sizeof(uint32_t); in createIdmap() 4387 *outSize += (2 + vector.size()) * sizeof(uint32_t); in createIdmap() 4392 *outSize += 1 * sizeof(uint32_t); in createIdmap() 4396 if ((*outData = malloc(*outSize)) == NULL) { in createIdmap()
|
/frameworks/base/include/utils/ |
D | ResourceTypes.h | 2071 void** outData, size_t* outSize) const;
|