HomeSort by relevance Sort by last modified time
    Searched full:strides (Results 1 - 25 of 243) sorted by null

1 2 3 4 5 6 7 8 910

  /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 11 YuvToJpegEncoder* YuvToJpegEncoder::create(int format, int* strides) {
15 return new Yuv420SpToJpegEncoder(strides);
17 return new Yuv422IToJpegEncoder(strides);
23 YuvToJpegEncoder::YuvToJpegEncoder(int* strides) : fStrides(strides) {
68 Yuv420SpToJpegEncoder::Yuv420SpToJpegEncoder(int* strides) :
69 YuvToJpegEncoder(strides) {
144 Yuv422IToJpegEncoder::Yuv422IToJpegEncoder(int* strides) :
145 YuvToJpegEncoder(strides) {
223 jintArray strides, jint jpegQuality, jobject jstream
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
convert_jpeg.cc 36 const int* strides,
39 I420Copy(data[0], strides[0],
40 data[1], strides[1],
41 data[2], strides[2],
54 const int* strides,
57 I422ToI420(data[0], strides[0],
58 data[1], strides[1],
59 data[2], strides[2],
72 const int* strides,
75 I444ToI420(data[0], strides[0]
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
stride.h 9 * Information about strides.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
stride.h 9 * Information about strides.
  /external/deqp/modules/gles2/stress/
es2sVertexArrayTests.cpp 75 int strides[] = {17}; local
82 for (int strideNdx = 0; strideNdx < DE_LENGTH_OF_ARRAY(strides); strideNdx++)
87 const int stride = (strides[strideNdx] < 0 ? Array::inputTypeSize(inputTypes[inputTypeNdx]) * componentCount : strides[strideNdx]);
130 : TestCaseGroup(context, "strides", "Single stride vertex atribute")
140 // Test strides with different input types, component counts and storage, Usage(?)
144 int strides[] = {17}; local
154 for (int strideNdx = 0; strideNdx < DE_LENGTH_OF_ARRAY(strides); strideNdx++)
156 const int stride = (strides[strideNdx] < 0 ? Array::inputTypeSize(inputTypes[inputTypeNdx]) * componentCount : strides[strideNdx])
215 int strides[] = {\/*0,*\/ -1, 17, 32}; \/\/ Tread negative value as sizeof input. Same as 0, but done outside of GL. local
285 int strides[] = {\/*0,*\/ -1, 17, 32}; \/\/ Tread negative value as sizeof input. Same as 0, but done outside of GL. local
    [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 a_stride optional Stride object, passing the strides.
149 * \param a_stride optional Stride object, passing the strides.
162 * \param a_stride optional Stride object, passing the strides.
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
TaskChainedCompressImageToJpeg.java 60 int[] strides = new int[3]; local
66 strides[0] = planeList.get(0).getRowStride()
68 strides[1] = planeList.get(1).getRowStride()
70 strides[2] = 2 * planeList.get(2).getRowStride()
81 final int[] chainedStrides = strides;
  /external/deqp/modules/gles3/stress/
es3sVertexArrayTests.cpp 77 int strides[] = {0, -1, 17, 32}; // Tread negative value as sizeof input. Same as 0, but done outside of GL. local
84 for (int strideNdx = 0; strideNdx < DE_LENGTH_OF_ARRAY(strides); strideNdx++)
86 const int stride = (strides[strideNdx] < 0 ? Array::inputTypeSize(inputTypes[inputTypeNdx]) * 2 : strides[strideNdx]);
175 int strides[] = {/*0,*/ -1, 17, 32}; // Tread negative value as sizeof input. Same as 0, but done outside of GL. local
183 for (int strideNdx = 0; strideNdx < DE_LENGTH_OF_ARRAY(strides); strideNdx++)
186 const int stride = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)) : (strides[strideNdx]);
234 : TestCaseGroup(context, "strides", "Single stride vertex atribute")
281 int strides[] = {/*0,*/ -1, 17, 32}; // Tread negative value as sizeof input. Same as 0, but done outside of (…) local
384 int strides[] = {\/*0,*\/ -1, 17, 32}; \/\/ Tread negative value as sizeof input. Same as 0, but done outside of GL. local
    [all...]
  /external/deqp/modules/gles2/functional/
es2fVertexArrayTest.cpp 74 int strides[] = {0, -1, 17, 32}; // Tread negative value as sizeof input. Same as 0, but done outside of GL. local
81 for (int strideNdx = 0; strideNdx < DE_LENGTH_OF_ARRAY(strides); strideNdx++)
86 const int stride = (strides[strideNdx] < 0 ? Array::inputTypeSize(inputTypes[inputTypeNdx]) * componentCount : strides[strideNdx]);
129 : TestCaseGroup(context, "strides", "Single stride vertex atribute")
139 // Test strides with different input types, component counts and storage, Usage(?)
143 int strides[] = {/*0,*/ -1, 17, 32}; // Tread negative value as sizeof input. Same as 0, but done outside of GL. local
153 for (int strideNdx = 0; strideNdx < DE_LENGTH_OF_ARRAY(strides); strideNdx++)
155 const int stride = (strides[strideNdx] < 0 ? Array::inputTypeSize(inputTypes[inputTypeNdx]) * componentCount : strides[strideNdx])
214 int strides[] = {\/*0,*\/ -1, 17, 32}; \/\/ Tread negative value as sizeof input. Same as 0, but done outside of GL. local
284 int strides[] = {\/*0,*\/ -1, 17, 32}; \/\/ Tread negative value as sizeof input. Same as 0, but done outside of GL. local
723 int strides[] = {0, -1, 17, 32}; local
    [all...]
  /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/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/deqp/doc/testspecs/GLES2/
functional.vertex_arrays.multiple_attributes.txt 27 + Multiple attributes with different strides
55 Stride tests use three attributes with different strides. Two component float
56 data is used as vec2 in shader. Strides test uses npot stride, pot stride and types
  /external/deqp/doc/testspecs/GLES3/
functional.vertex_arrays.multiple_attributes.txt 27 + Multiple attributes with different strides
55 Stride tests use three attributes with different strides. Two component float
56 data is used as vec2 in shader. Strides test uses npot stride, pot stride and types
  /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
  /external/deqp/modules/gles3/functional/
es3fVertexArrayTest.cpp 74 int strides[] = {0, -1, 17, 32}; // Tread negative value as sizeof input. Same as 0, but done outside of GL. local
81 for (int strideNdx = 0; strideNdx < DE_LENGTH_OF_ARRAY(strides); strideNdx++)
83 const int stride = (strides[strideNdx] < 0 ? Array::inputTypeSize(inputTypes[inputTypeNdx]) * 2 : strides[strideNdx]);
172 int strides[] = {/*0,*/ -1, 17, 32}; // Tread negative value as sizeof input. Same as 0, but done outside of GL. local
180 for (int strideNdx = 0; strideNdx < DE_LENGTH_OF_ARRAY(strides); strideNdx++)
183 const int stride = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)) : (strides[strideNdx]);
231 : TestCaseGroup(context, "strides", "Single stride vertex atribute")
278 int strides[] = {/*0,*/ -1, 17, 32}; // Tread negative value as sizeof input. Same as 0, but done outside of (…) local
381 int strides[] = {\/*0,*\/ -1, 17, 32}; \/\/ Tread negative value as sizeof input. Same as 0, but done outside of GL. local
936 int strides[] = {0, -1, 17, 32}; local
    [all...]
  /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...]
  /external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 117 unsigned ASId, const ValueToValueMap &Strides) {
119 const SCEV *Sc = replaceSymbolicStrideSCEV(SE, Strides, Ptr);
226 Loop *TheLoop, const ValueToValueMap &Strides,
276 const ValueToValueMap &Strides, Value *Ptr) {
277 const SCEV *PtrScev = replaceSymbolicStrideSCEV(SE, Strides, Ptr);
673 const ValueToValueMap &Strides) {
690 const SCEV *AScev = replaceSymbolicStrideSCEV(SE, Strides, APtr);
691 const SCEV *BScev = replaceSymbolicStrideSCEV(SE, Strides, BPtr);
693 int StrideAPtr = isStridedPtr(SE, APtr, InnermostLoop, Strides);
694 int StrideBPtr = isStridedPtr(SE, BPtr, InnermostLoop, Strides);
    [all...]
  /external/libavc/encoder/
ime_structs.h 130 * (strides for luma and chroma are the same)
136 * (strides for luma and chroma are the same)

Completed in 534 milliseconds

1 2 3 4 5 6 7 8 910