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

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

Completed in 170 milliseconds