/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) { 142 Yuv422IToJpegEncoder::Yuv422IToJpegEncoder(int* strides) : 143 YuvToJpegEncoder(strides) { 221 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/eigen/Eigen/src/Core/ |
Stride.h | 18 * \brief Holds strides information for Map 20 * This class holds the strides information for mapping arrays with strides with class Map. 53 /** Default constructor, for use when strides are fixed at compile time */ 60 /** Constructor allowing to pass the strides at runtime */
|
Map.h | 24 * \tparam StrideType optionally specifies strides. By default, Map assumes the memory layout 25 * of an ordinary, contiguous array. This can be overridden by specifying strides. 32 * inner and outer strides. 38 * If you need to map non-contiguous arrays, you can do so by specifying strides: 137 * \param stride optional Stride object, passing the strides. 149 * \param stride optional Stride object, passing the strides. 162 * \param stride optional Stride object, passing the strides.
|
/device/generic/goldfish/camera/ |
JpegStub.h | 27 void JpegStub_init(JpegStub* stub, int* strides);
|
JpegStub.cpp | 26 extern "C" void JpegStub_init(JpegStub* stub, int* strides) { 27 stub->mInternalEncoder = (void*) new Yuv420SpToJpegEncoder(strides);
|
/external/libvpx/libvpx/vp9/common/ |
vp9_reconinter.h | 65 int strides[4] = {src->y_stride, src->uv_stride, src->uv_stride, local 71 setup_pred_plane(&pd->dst, buffers[i], strides[i], mi_row, mi_col, NULL, 84 int strides[4] = {src->y_stride, src->uv_stride, src->uv_stride, local 89 setup_pred_plane(&pd->pre[i], buffers[j], strides[j],
|
/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.
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_transfer.c | 8 * pointer. XXX: strides?? 112 /* Note strides are zero, this is ok for buffers, but not for
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_transfer.c | 8 * pointer. XXX: strides?? 112 /* Note strides are zero, this is ok for buffers, but not for
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
YuvImageTest.java | 108 // normal case: test that default strides are returned correctly 121 assertTrue("default strides not calculated correctly", 206 int[] strides = new int[] { local 209 YuvImage image = new YuvImage(yuv, ImageFormat.NV21, width, height, strides); 231 // strides of YuvImage are calculated by adding paddings to bitmap.getWidth(). 243 int[] strides = null; local 245 strides = new int[] {stride, stride}; 247 strides = new int[] {stride * 2}; 249 image = new YuvImage(yuv, format, width, height, strides);
|
/external/libyuv/files/source/ |
convert_argb.cc | 842 const int* strides, 845 I420ToARGB(data[0], strides[0], 846 data[1], strides[1], 847 data[2], strides[2], 856 const int* strides, 859 I422ToARGB(data[0], strides[0], 860 data[1], strides[1], 861 data[2], strides[2], 870 const int* strides, 873 I444ToARGB(data[0], strides[0] [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.comp.assign/ |
addition.pass.cpp | 32 typedef std::valarray<std::size_t> strides; typedef 34 strides(st, sizeof(st)/sizeof(st[0])))] += v2;
|
and.pass.cpp | 32 typedef std::valarray<std::size_t> strides; typedef 34 strides(st, sizeof(st)/sizeof(st[0])))] &= v2;
|
divide.pass.cpp | 32 typedef std::valarray<std::size_t> strides; typedef 34 strides(st, sizeof(st)/sizeof(st[0])))] /= v2;
|
modulo.pass.cpp | 32 typedef std::valarray<std::size_t> strides; typedef 34 strides(st, sizeof(st)/sizeof(st[0])))] %= v2;
|
multiply.pass.cpp | 32 typedef std::valarray<std::size_t> strides; typedef 34 strides(st, sizeof(st)/sizeof(st[0])))] *= v2;
|
or.pass.cpp | 32 typedef std::valarray<std::size_t> strides; typedef 34 strides(st, sizeof(st)/sizeof(st[0])))] |= v2;
|
shift_left.pass.cpp | 32 typedef std::valarray<std::size_t> strides; typedef 34 strides(st, sizeof(st)/sizeof(st[0])))] <<= v2;
|
shift_right.pass.cpp | 32 typedef std::valarray<std::size_t> strides; typedef 34 strides(st, sizeof(st)/sizeof(st[0])))] >>= v2;
|
subtraction.pass.cpp | 32 typedef std::valarray<std::size_t> strides; typedef 34 strides(st, sizeof(st)/sizeof(st[0])))] -= v2;
|
xor.pass.cpp | 32 typedef std::valarray<std::size_t> strides; typedef 34 strides(st, sizeof(st)/sizeof(st[0])))] ^= v2;
|