/device/generic/goldfish/camera/fake-pipeline2/ |
Sensor.h | 114 // Buffer must be at least stride*height*2 bytes in size 233 void captureRaw(uint8_t *img, uint32_t gain, uint32_t stride); 234 void captureRGBA(uint8_t *img, uint32_t gain, uint32_t stride); 235 void captureRGB(uint8_t *img, uint32_t gain, uint32_t stride); 236 void captureNV21(uint8_t *img, uint32_t gain, uint32_t stride);
|
/external/aac/libFDK/include/ |
qmf.h | 173 UCHAR p_stride; /*!< Stride Factor of polyphase filters */ 185 const int stride, /*!< Stride factor of audio data */ 196 const int stride, /*!< Stride factor of audio data */ 214 const int stride, /*!< stride factor of input */ 233 const int stride,
|
/external/chromium/webkit/glue/ |
webvideoframe_impl.h | 26 virtual int stride(unsigned plane) const;
|
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/ |
ps_context_2d.h | 22 uint32_t stride; member in struct:__anon11527
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/ |
native_buffer.h | 53 unsigned stride; member in struct:native_buffer::__anon15739::__anon15740
|
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/sw/ |
i915_sw_buffer.c | 32 unsigned *stride, unsigned height, 43 buf->ptr = CALLOC(*stride * height, 1); 45 buf->stride = *stride;
|
/external/mesa3d/src/gallium/state_trackers/egl/common/ |
native_buffer.h | 53 unsigned stride; member in struct:native_buffer::__anon26206::__anon26207
|
/external/mesa3d/src/gallium/winsys/i915/sw/ |
i915_sw_buffer.c | 32 unsigned *stride, unsigned height, 43 buf->ptr = CALLOC(*stride * height, 1); 45 buf->stride = *stride;
|
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/ |
GL11Ext.java | 128 int stride, 135 int stride, 142 int stride, 149 int stride,
|
/sdk/emulator/opengl/host/libs/Translator/GLcommon/ |
GLESpointer.cpp | 84 void GLESpointer::setArray(GLint size,GLenum type,GLsizei stride,const GLvoid* data,bool normalize) { 87 m_stride = stride; 95 void GLESpointer::setBuffer(GLint size,GLenum type,GLsizei stride,GLESbuffer* buf,GLuint bufferName,int offset,bool normalize) { 98 m_stride = stride;
|
/external/chromium_org/remoting/base/ |
util.h | 19 int CalculateRGBOffset(int x, int y, int stride); 23 int CalculateYOffset(int x, int y, int stride); 24 int CalculateUVOffset(int x, int y, int stride);
|
/external/chromium_org/third_party/opus/src/silk/ |
biquad_alt.c | 49 opus_int stride /* I Operate on interleaved signal if > 1 */ 64 inval = in[ k * stride ]; 76 out[ k * stride ] = (opus_int16)silk_SAT16( silk_RSHIFT( out32_Q14 + (1<<14) - 1, 14 ) );
|
/external/chromium_org/third_party/skia/src/core/ |
SkPoint.cpp | 32 void SkPoint::setIRectFan(int l, int t, int r, int b, size_t stride) { 33 SkASSERT(stride >= sizeof(SkPoint)); 35 ((SkPoint*)((intptr_t)this + 0 * stride))->set(SkIntToScalar(l), 37 ((SkPoint*)((intptr_t)this + 1 * stride))->set(SkIntToScalar(l), 39 ((SkPoint*)((intptr_t)this + 2 * stride))->set(SkIntToScalar(r), 41 ((SkPoint*)((intptr_t)this + 3 * stride))->set(SkIntToScalar(r), 46 size_t stride) { 47 SkASSERT(stride >= sizeof(SkPoint)); 49 ((SkPoint*)((intptr_t)this + 0 * stride))->set(l, t); 50 ((SkPoint*)((intptr_t)this + 1 * stride))->set(l, b) [all...] |
/external/skia/src/core/ |
SkPoint.cpp | 32 void SkPoint::setIRectFan(int l, int t, int r, int b, size_t stride) { 33 SkASSERT(stride >= sizeof(SkPoint)); 35 ((SkPoint*)((intptr_t)this + 0 * stride))->set(SkIntToScalar(l), 37 ((SkPoint*)((intptr_t)this + 1 * stride))->set(SkIntToScalar(l), 39 ((SkPoint*)((intptr_t)this + 2 * stride))->set(SkIntToScalar(r), 41 ((SkPoint*)((intptr_t)this + 3 * stride))->set(SkIntToScalar(r), 46 size_t stride) { 47 SkASSERT(stride >= sizeof(SkPoint)); 49 ((SkPoint*)((intptr_t)this + 0 * stride))->set(l, t); 50 ((SkPoint*)((intptr_t)this + 1 * stride))->set(l, b) [all...] |
/sdk/emulator/opengl/host/libs/Translator/GLES_CM/ |
GLEScmValidate.h | 28 static bool vertexPointerParams(GLint size,GLsizei stride); 29 static bool colorPointerParams(GLint size,GLsizei stride); 34 static bool texCoordPointerParams(GLint size,GLsizei stride);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_dma.c | 58 void radeonEmitVec4(uint32_t *out, const GLvoid * data, int stride, int count) 63 fprintf(stderr, "%s count %d stride %d out %p data %p\n", 64 __FUNCTION__, count, stride, (void *)out, (void *)data); 66 if (stride == 4) 72 data += stride; 76 void radeonEmitVec8(uint32_t *out, const GLvoid * data, int stride, int count) 81 fprintf(stderr, "%s count %d stride %d out %p data %p\n", 82 __FUNCTION__, count, stride, (void *)out, (void *)data); 84 if (stride == 8) 91 data += stride; [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_dma.c | 58 void radeonEmitVec4(uint32_t *out, const GLvoid * data, int stride, int count) 63 fprintf(stderr, "%s count %d stride %d out %p data %p\n", 64 __FUNCTION__, count, stride, (void *)out, (void *)data); 66 if (stride == 4) 72 data += stride; 76 void radeonEmitVec8(uint32_t *out, const GLvoid * data, int stride, int count) 81 fprintf(stderr, "%s count %d stride %d out %p data %p\n", 82 __FUNCTION__, count, stride, (void *)out, (void *)data); 84 if (stride == 8) 91 data += stride; [all...] |
/external/pixman/test/ |
stress-test.c | 243 int width, height, stride; local 294 stride = width * PIXMAN_FORMAT_BPP (format) + prng_rand_n (17); 295 stride = (stride + 3) & (~3); 296 bits = (uint32_t *)make_random_bytes (height * stride); 300 stride = 0; 305 stride = width * PIXMAN_FORMAT_BPP (format) + prng_rand_n (17); 306 stride = (stride + 3) & (~3); 307 bits = fence_malloc (height * stride); [all...] |
/external/chromium_org/media/base/ |
video_frame_unittest.cc | 31 memset(y_plane, color, frame->stride(VideoFrame::kYPlane)); 32 y_plane += frame->stride(VideoFrame::kYPlane); 37 memset(u_plane, 0x80, frame->stride(VideoFrame::kUPlane)); 38 memset(v_plane, 0x80, frame->stride(VideoFrame::kVPlane)); 39 u_plane += frame->stride(VideoFrame::kUPlane); 40 v_plane += frame->stride(VideoFrame::kVPlane); 48 ASSERT_EQ(yv12_frame->stride(VideoFrame::kUPlane), 49 yv12_frame->stride(VideoFrame::kVPlane)); 69 yv12_frame->stride(VideoFrame::kYPlane), 70 yv12_frame->stride(VideoFrame::kUPlane) [all...] |
/device/asus/flo/camera/QCamera2/stack/mm-camera-interface/src/ |
mm_camera_stream.c | 1661 int stride = 0, scanline = 0; local 1821 int stride = 0, scanline = 0; local 1973 int stride = 0; local 2168 int stride = 0, scanline = 0; local 2199 int stride = 0, scanline = 0; local [all...] |
/hardware/qcom/camera/QCamera2/stack/mm-camera-interface/src/ |
mm_camera_stream.c | 1662 int stride = 0, scanline = 0; local 1822 int stride = 0, scanline = 0; local 1974 int stride = 0; local 2169 int stride = 0, scanline = 0; local 2200 int stride = 0, scanline = 0; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
WebGLVertexArrayObjectOES.cpp | 96 GC3Duint index, GC3Dsizei bytesPerElement, GC3Dint size, GC3Denum type, GC3Dboolean normalized, GC3Dsizei stride, GC3Dintptr offset, PassRefPtr<WebGLBuffer> buffer) 98 GC3Dsizei validatedStride = stride ? stride : bytesPerElement; 112 state.stride = validatedStride; 113 state.originalStride = stride;
|
/hardware/qcom/display/msm8974/libgralloc/ |
alloc_controller.cpp | 105 int stride = ALIGN(width, 32); local 114 return stride; 133 // 32 pixels, hence we pass stride instead of width. 134 stride = LINK_adreno_compute_padding(stride, bpp, 143 stride = ALIGN(width, 32); 146 stride = ALIGN(width, 128); 153 stride = ALIGN(width, 16); 157 stride = VENUS_Y_STRIDE(COLOR_FMT_NV12, width); 160 stride = width [all...] |
/external/pixman/demos/ |
gtk-utils.c | 16 int stride; local 27 stride = gdk_pixbuf_get_rowstride (pixbuf); 61 gdk_data += stride; 76 int stride) 86 uint32_t *src_row = &bits[i * (stride / 4)]; 101 int stride = pixman_image_get_stride (pimage); local 113 format, width, height, stride);
|
/external/chromium_org/third_party/mesa/src/src/mesa/math/ |
m_xform_tmp.h | 37 /* KW: Fixed stride, now measured in bytes as is the OpenGL array stride. 78 const GLuint stride = from_vec->stride; local 104 const GLuint stride = from_vec->stride; local 124 const GLuint stride = from_vec->stride; local 146 const GLuint stride = from_vec->stride; local 167 const GLuint stride = from_vec->stride; local 191 const GLuint stride = from_vec->stride; local 214 const GLuint stride = from_vec->stride; local 244 const GLuint stride = from_vec->stride; local 270 const GLuint stride = from_vec->stride; local 291 const GLuint stride = from_vec->stride; local 313 const GLuint stride = from_vec->stride; local 334 const GLuint stride = from_vec->stride; local 361 const GLuint stride = from_vec->stride; local 390 const GLuint stride = from_vec->stride; local 415 const GLuint stride = from_vec->stride; local 441 const GLuint stride = from_vec->stride; local 463 const GLuint stride = from_vec->stride; local 486 const GLuint stride = from_vec->stride; local 508 const GLuint stride = from_vec->stride; local 534 const GLuint stride = from_vec->stride; local 557 const GLuint stride = from_vec->stride; local 583 const GLuint stride = from_vec->stride; local 609 const GLuint stride = from_vec->stride; local 632 const GLuint stride = from_vec->stride; local 656 const GLuint stride = from_vec->stride; local 679 const GLuint stride = from_vec->stride; local 704 const GLuint stride = from_vec->stride; local 728 const GLuint stride = from_vec->stride; local [all...] |