/frameworks/base/core/jni/android/graphics/ |
YuvToJpegEncoder.h | 16 * @param strides The number of row bytes in each image plane. 19 static YuvToJpegEncoder* create(int pixelFormat, int* strides); 21 YuvToJpegEncoder(int* strides); 50 Yuv420SpToJpegEncoder(int* strides); 64 Yuv422IToJpegEncoder(int* strides);
|
YuvToJpegEncoder.cpp | 9 YuvToJpegEncoder* YuvToJpegEncoder::create(int format, int* strides) { 13 return new Yuv420SpToJpegEncoder(strides); 15 return new Yuv422IToJpegEncoder(strides); 21 YuvToJpegEncoder::YuvToJpegEncoder(int* strides) : fStrides(strides) { 66 Yuv420SpToJpegEncoder::Yuv420SpToJpegEncoder(int* strides) : 67 YuvToJpegEncoder(strides) { 139 Yuv422IToJpegEncoder::Yuv422IToJpegEncoder(int* strides) : 140 YuvToJpegEncoder(strides) { 215 jintArray strides, int jpegQuality, jobject jstream [all...] |
/frameworks/base/graphics/java/android/graphics/ |
YuvImage.java | 73 * @param strides (Optional) Row bytes of each image plane. If yuv contains padding, the stride 74 * of each image must be provided. If strides is null, the method assumes no 79 public YuvImage(byte[] yuv, int format, int width, int height, int[] strides) { 96 if (strides == null) { 99 mStrides = strides; 200 int[] strides = null; local 202 strides = new int[] {width, width}; 203 return strides; 207 strides = new int[] {width * 2}; 208 return strides; [all...] |
/external/llvm/test/Transforms/IndVarSimplify/ |
2006-03-31-NegativeStride.ll | 5 ; Make sure to compute the right exit value based on negative strides.
|
/external/llvm/test/Transforms/LoopStrengthReduce/ |
variable_stride.ll | 1 ; Check that variable strides are reduced to adds instead of multiplies.
|
different-type-ivs.ll | 3 ; with different types but identical strides.
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
YuvImageTest.java | 118 // normal case: test that default strides are returned correctly 131 assertTrue("default strides not calculated correctly", 238 int[] strides = new int[] { local 241 YuvImage image = new YuvImage(yuv, ImageFormat.NV21, width, height, strides); 268 // strides of YuvImage are calculated by adding paddings to bitmap.getWidth(). 280 int[] strides = null; local 282 strides = new int[] {stride, stride}; 284 strides = new int[] {stride * 2}; 286 image = new YuvImage(yuv, format, width, height, strides);
|
/development/tools/emulator/system/camera/ |
JpegCompressor.h | 91 /* Strides for Y (the first element), and UV (the second one) panes. */
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
gslice.h | 77 * @param s Array of dimension strides between array elements. 100 /// Return array of array strides for each dimension.
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
gslice.h | 77 * @param s Array of dimension strides between array elements. 100 /// Return array of array strides for each dimension.
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
gslice.h | 77 * @param s Array of dimension strides between array elements. 100 /// Return array of array strides for each dimension.
|
/external/libvpx/vpx/src/ |
vpx_image.c | 136 /* Calculate strides */
|
/frameworks/base/include/media/stagefright/ |
YUVImage.h | 23 // Currently does not support variable strides.
|
/external/libvpx/vpx/ |
vpx_image.h | 224 * Adjusts the image descriptor's pointers and strides to make the image
|
/packages/apps/Mms/tests/src/com/android/mms/ui/ |
MultiPartSmsTests.java | 78 // +" With Tarquin's ravishing strides, towards his design"
|
/external/llvm/lib/Transforms/Scalar/ |
LoopIdiomRecognize.cpp | 34 // We should enhance this to handle negative strides through memory. 37 // behavior. Negative strides *do* happen for memset/memcpy loops. 296 // Enable this to print exact negative strides.
|
LoopStrengthReduce.cpp | 315 /// addrec strides. [all...] |
/external/llvm/lib/Analysis/ |
IVUsers.cpp | 52 // Keep things simple. Don't touch loop-variant strides unless they're
|
/external/webp/include/webp/ |
decode.h | 97 // strides to be passed: one for the luma plane and one for each of the 131 int u_stride, v_stride; // chroma strides
|
encode.h | 172 int y_stride, uv_stride; // luma/chroma strides.
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
LayerTilerChromium.cpp | 352 // Strides not equal, so do a row-by-row memcpy from the
|
/external/stlport/etc/ |
autoexp.dat | 822 ", strides = ", 832 strides : $c._M_strides
|
/external/skia/tests/ |
BitmapCopyTest.cpp | 438 // ing when src and dst mave possibly different strides.
|
/external/webp/src/enc/ |
vp8enci.h | 253 int y_stride_, uv_stride_; // respective strides
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
langhooks.h | 130 for the debugger about the array bounds, strides, etc. */
|