Home
last modified time | relevance | path

Searched refs:finalWidth (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Camera2/jni/
Djpegutil.cpp323 int finalWidth; in Compress() local
325 finalWidth = cropRight - cropLeft; in Compress()
331 finalWidth = cropBottom - cropTop; in Compress()
334 finalWidth = cropBottom - cropTop; in Compress()
347 int y_row_length = (finalWidth + 16 + 63) & ~63; in Compress()
348 int cb_row_length = (finalWidth / 2 + 16 + 63) & ~63; in Compress()
349 int cr_row_length = (finalWidth / 2 + 16 + 63) & ~63; in Compress()
361 return Compress(finalWidth, finalHeight, yIter, cbIter, crIter, outBuf, in Compress()
/packages/apps/DocumentsUI/src/com/android/documentsui/
DDrawerController.java88 int finalWidth = (int) ((width > maxWidth ? maxWidth : width)); in calculateDrawerWidth() local
91 Log.d(TAG, "Calculated drawer width:" + (finalWidth / Display.density(activity))); in calculateDrawerWidth()
93 return finalWidth; in calculateDrawerWidth()