Searched defs:outSize (Results 1 - 13 of 13) sorted by relevance

/frameworks/minikin/libs/minikin/
H A DLocaleListCache.cpp34 static size_t toLanguageTag(char* output, size_t outSize, const StringPiece& locale) { argument
44 outLength = uloc_canonicalize(localeString.c_str(), output, outSize, &uErr);
70 outLength = uloc_toLanguageTag(likelyChars, output, outSize, FALSE, &uErr);
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfRenderer.cpp44 jint pageIndex, jobject outSize) {
64 env->SetIntField(outSize, gPointClassInfo.x, width);
65 env->SetIntField(outSize, gPointClassInfo.y, height);
43 nativeOpenPageAndGetSize(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject outSize) argument
H A DPdfEditor.cpp166 jint pageIndex, jobject outSize) {
186 env->SetIntField(outSize, gPointClassInfo.x, width);
187 env->SetIntField(outSize, gPointClassInfo.y, height);
165 nativeGetPageSize(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject outSize) argument
/frameworks/base/cmds/hid/jni/
H A Dcom_android_commands_hid_Device.cpp194 std::unique_ptr<uint8_t[]> getData(JNIEnv* env, jbyteArray javaArray, size_t& outSize) { argument
196 outSize = scopedArray.size();
197 std::unique_ptr<uint8_t[]> data(new uint8_t[outSize]);
198 for (size_t i = 0; i < outSize; i++) {
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfEditor.java158 * @param outSize The size output.
160 public void getPageSize(int pageIndex, @NonNull Point outSize) { argument
162 throwIfOutSizeNull(outSize);
166 nativeGetPageSize(mNativeDocument, pageIndex, outSize);
322 private void throwIfOutSizeNull(Point outSize) { argument
323 if (outSize == null) {
324 throw new NullPointerException("outSize cannot be null");
359 private static native void nativeGetPageSize(long documentPtr, int pageIndex, Point outSize); argument
H A DPdfRenderer.java491 Point outSize);
490 nativeOpenPageAndGetSize(long documentPtr, int pageIndex, Point outSize) argument
/frameworks/base/libs/androidfw/include/androidfw/
H A DCursorWindow.h136 inline const void* getFieldSlotValueBlob(FieldSlot* fieldSlot, size_t* outSize) { argument
137 *outSize = fieldSlot->data.buffer.size;
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp383 size_t outSize = frameCount * sizeof(process_buffer_t) * FCC_2; local
391 pContext->bufferSizeOut < outSize) {
393 pContext->bufferSizeOut = outSize;
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp482 const String8& rootpath, const String8& filepath, off_t* outSize,
493 *outSize = 0;
537 *outSize = 512 + (needExtended ? 1024 : 0) + 512*((s.st_size + 511)/512);
481 write_tarfile(const String8& packageName, const String8& domain, const String8& rootpath, const String8& filepath, off_t* outSize, BackupDataWriter* writer) argument
H A DAssetManager.cpp327 uint32_t targetCrc, uint32_t overlayCrc, uint32_t** outData, size_t* outSize)
352 targetApkPath, overlayApkPath, (void**)outData, outSize) == NO_ERROR;
326 createIdmap(const char* targetApkPath, const char* overlayApkPath, uint32_t targetCrc, uint32_t overlayCrc, uint32_t** outData, size_t* outSize) argument
/frameworks/native/opengl/libagl/
H A Dtexture.cpp355 GGLSurface** outSurface, int32_t* outSize, GLint level,
381 *outSize = size;
393 *outSize = size;
354 createTextureSurface(ogles_context_t* c, GGLSurface** outSurface, int32_t* outSize, GLint level, GLenum format, GLenum type, GLsizei width, GLsizei height, GLenum compressedFormat = 0) argument
/frameworks/base/core/java/android/view/
H A DDisplay.java608 * @param outSize A {@link Point} object to receive the size information.
610 public void getSize(Point outSize) { argument
614 outSize.x = mTempMetrics.widthPixels;
615 outSize.y = mTempMetrics.heightPixels;
622 * @param outSize A {@link Rect} object to receive the size information.
625 public void getRectSize(Rect outSize) { argument
629 outSize.set(0, 0, mTempMetrics.widthPixels, mTempMetrics.heightPixels);
976 * @param outSize Set to the real size of the display.
978 public void getRealSize(Point outSize) { argument
981 outSize
[all...]
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp465 void* AaptFile::editData(size_t* outSize) argument
467 if (outSize) {
468 *outSize = mDataSize;

Completed in 851 milliseconds