HomeSort by relevance Sort by last modified time
    Searched refs:stride (Results 76 - 100 of 1748) sorted by null

1 2 34 5 6 7 8 91011>>

  /sdk/emulator/opengl/host/libs/GLESv1_dec/
GLDecoder.cpp 88 void GLDecoder::s_glVertexPointerOffset(void *self, GLint size, GLenum type, GLsizei stride, GLuint offset)
91 ctx->glVertexPointer(size, type, stride, (void *)offset);
94 void GLDecoder::s_glColorPointerOffset(void *self, GLint size, GLenum type, GLsizei stride, GLuint offset)
97 ctx->glColorPointer(size, type, stride, (void *)offset);
100 void GLDecoder::s_glTexCoordPointerOffset(void *self, GLint size, GLenum type, GLsizei stride, GLuint offset)
103 ctx->glTexCoordPointer(size, type, stride, (void *) offset);
106 void GLDecoder::s_glNormalPointerOffset(void *self, GLenum type, GLsizei stride, GLuint offset)
109 ctx->glNormalPointer(type, stride, (void *)offset);
112 void GLDecoder::s_glPointSizePointerOffset(void *self, GLenum type, GLsizei stride, GLuint offset)
115 ctx->glPointSizePointerOES(type, stride, (void *)offset)
    [all...]
  /bionic/libc/kernel/common/linux/
omap_ion.h 30 size_t stride; member in struct:omap_ion_tiler_alloc_data
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
ShadowBlur.h 50 void blurLayerImage(unsigned char*, const IntSize&, int stride);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_tile_image.h 54 unsigned stride);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_span.h 41 intptr_t intel_offset_S8(uint32_t stride, uint32_t x, uint32_t y, bool swizzled);
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_trans_tmp.h 33 GLuint stride,
36 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
59 GLuint stride,
62 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
84 GLuint stride,
87 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
106 GLuint stride,
109 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
126 GLuint stride,
129 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
    [all...]
  /external/harfbuzz_ng/util/
helper-cairo-ansi.cc 59 unsigned int stride = cairo_image_surface_get_stride (surface); local
77 data += stride / 4;
85 const uint32_t *row = data + (height - 1) * stride / 4;
98 ansi_print_image_rgb24 (data, width, height, stride / 4);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_tile_image.h 54 unsigned stride);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_span.h 41 intptr_t intel_offset_S8(uint32_t stride, uint32_t x, uint32_t y, bool swizzled);
  /external/mesa3d/src/mesa/math/
m_trans_tmp.h 33 GLuint stride,
36 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
59 GLuint stride,
62 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
84 GLuint stride,
87 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
106 GLuint stride,
109 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
126 GLuint stride,
129 const GLubyte *f = (GLubyte *) ptr + SRC_START * stride;
    [all...]
  /external/pixman/test/
oob-test.c 9 int stride; member in struct:__anon26243
68 char *data = malloc (info->stride * info->height);
71 for (i = 0; i < info->height * info->stride; ++i)
74 return pixman_image_create_bits (info->format, info->width, info->height, (uint32_t *)data, info->stride);
  /frameworks/native/opengl/libagl/
dxt.h 29 void *surface, int stride, int format);
  /hardware/ti/omap4xxx/ion/
omap_ion.h 30 size_t stride; member in struct:omap_ion_tiler_alloc_data
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
FmaTest.java 68 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
69 float[] ref = new float[input_size * stride];
71 for (int j = 0; j < stride - skip; j++) {
72 int idx = i * stride * 3 + j;
73 ref[i * (stride - skip) + j] = (float)((double)in[idx] * (double)in[idx+stride] + (double)in[idx+stride*2]);
MadTest.java 68 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
69 float[] ref = new float[input_size * stride];
71 for (int j = 0; j < stride - skip; j++) {
72 int idx = i * stride * 3 + j;
73 ref[i * (stride - skip) + j] = (float)((double)in[idx] * (double)in[idx+stride] + (double)in[idx+stride*2]);
AcosPiTest.java 66 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
67 float[] ref = new float[input_size * stride];
69 for (int j = 0; j < stride - skip; j++) {
70 int idx= i * stride + j;
71 int idxRef = i * (stride - skip) + j;
AcosTest.java 66 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
67 float[] ref = new float[input_size * stride];
69 for (int j = 0; j < stride - skip; j++) {
70 int idx= i * stride + j;
71 int idxRef = i * (stride - skip) + j;
AcoshTest.java 66 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
67 float[] ref = new float[input_size * stride];
69 for (int j = 0; j < stride - skip; j++) {
70 int idx= i * stride + j;
71 int idxRef = i * (stride - skip) + j;
AsinPiTest.java 66 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
67 float[] ref = new float[input_size * stride];
69 for (int j = 0; j < stride - skip; j++) {
70 int idx= i * stride + j;
71 int idxRef = i * (stride - skip) + j;
AsinTest.java 66 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
67 float[] ref = new float[input_size * stride];
69 for (int j = 0; j < stride - skip; j++) {
70 int idx= i * stride + j;
71 int idxRef = i * (stride - skip) + j;
AsinhTest.java 66 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
67 float[] ref = new float[input_size * stride];
69 for (int j = 0; j < stride - skip; j++) {
70 int idx= i * stride + j;
71 int idxRef = i * (stride - skip) + j;
AtanPiTest.java 66 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
67 float[] ref = new float[input_size * stride];
69 for (int j = 0; j < stride - skip; j++) {
70 int idx= i * stride + j;
71 int idxRef = i * (stride - skip) + j;
AtanTest.java 66 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
67 float[] ref = new float[input_size * stride];
69 for (int j = 0; j < stride - skip; j++) {
70 int idx= i * stride + j;
71 int idxRef = i * (stride - skip) + j;
AtanhTest.java 66 protected float[] getRefArray(float[] in, int input_size, int stride, int skip) {
67 float[] ref = new float[input_size * stride];
69 for (int j = 0; j < stride - skip; j++) {
70 int idx= i * stride + j;
71 int idxRef = i * (stride - skip) + j;
  /hardware/samsung_slsi/exynos5/include/
gralloc_priv.h 90 int stride; member in struct:private_handle_t
110 int h, int format, int stride, int vstride) :
112 offset(0), format(format), width(w), height(h), stride(stride),
122 int h, int format, int stride, int vstride) :
124 offset(0), format(format), width(w), height(h), stride(stride),
134 int h, int format, int stride, int vstride) :
136 offset(0), format(format), width(w), height(h), stride(stride),
    [all...]

Completed in 1103 milliseconds

1 2 34 5 6 7 8 91011>>