HomeSort by relevance Sort by last modified time
    Searched refs:arrays (Results 51 - 75 of 711) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/pdfium/core/
pdfiumfpdftext.mk 10 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays -fexceptions
pdfiumfpdfdoc.mk 10 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays -fexceptions
pdfiumfxcrt.mk 10 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays -fexceptions
  /external/pdfium/fpdfsdk/
pdfiumformfiller.mk 10 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays -fexceptions
pdfiumfxedit.mk 10 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays -fexceptions
pdfiumpdfwindow.mk 10 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays -fexceptions
  /external/pdfium/third_party/
pdfiumopenjpeg.mk 10 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays -fexceptions
pdfiumzlib.mk 10 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays -fexceptions
pdfiumjpeg.mk 10 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays -fexceptions
pdfiumlcms.mk 10 LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays -fexceptions
  /external/v8/tools/
consarray.js 31 * In this use case we have lots of arrays that we need to iterate
33 * when concatenating on large (10K items) arrays due to memory copying.
35 * of arrays to iterate through.
47 * Concatenates another array for iterating. Empty arrays are ignored.
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue8428.go 11 // Issue 8428. Cgo inconsistently translated zero size arrays.
  /prebuilts/go/linux-x86/misc/cgo/test/
issue8428.go 11 // Issue 8428. Cgo inconsistently translated zero size arrays.
  /frameworks/native/opengl/libagl/
primitives.cpp 78 const GLvoid* cp = c->arrays.color.element(
80 c->arrays.color.fetch(c, v0->color.v, cp);
84 const GLvoid* cp = c->arrays.color.element(
86 c->arrays.color.fetch(c, v1->color.v, cp);
90 const GLvoid* cp = c->arrays.color.element(
92 c->arrays.color.fetch(c, v2->color.v, cp);
101 const GLvoid* cp = c->arrays.color.element(
103 c->arrays.color.fetch(c, v2->color.v, cp);
137 const GLvoid* cp = c->arrays.color.element(
139 c->arrays.color.fetch(c, v->color.v, cp)
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_split_copy.c 141 const struct gl_client_array **arrays,
156 printf(" array %d at %p:\n", j, (void*) arrays[j]);
158 arrays[j]->Enabled, arrays[j]->Ptr,
159 arrays[j]->Size, arrays[j]->Type, arrays[j]->StrideB);
162 GLfloat *last = (GLfloat *) (arrays[j]->Ptr + arrays[j]->Stride * k);
515 /* Setup new vertex arrays to point into the output buffer:
    [all...]
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosrobovm/
IOSGLES30.java 96 public native void glDeleteVertexArrays(int n, int[] arrays, int offset);
98 public native void glDeleteVertexArrays(int n, IntBuffer arrays);
100 public native void glGenVertexArrays(int n, int[] arrays, int offset);
102 public native void glGenVertexArrays(int n, IntBuffer arrays);
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSGLES30.java 80 public native void glDeleteVertexArrays(int n, int[] arrays, int offset);
82 public native void glDeleteVertexArrays(int n, IntBuffer arrays);
84 public native void glGenVertexArrays(int n, int[] arrays, int offset);
86 public native void glGenVertexArrays(int n, IntBuffer arrays);
  /external/mesa3d/src/glx/
indirect_vertex_array_priv.h 114 * Per-array-type key. For most arrays, this will be the GL enum for
158 * Per-array-type key. For most arrays, this will be the GL enum for
185 * Number of arrays tracked by \c ::arrays.
191 * vertex arrays. If a vertex array isn't in this array, then it isn't
196 struct array_state *arrays; member in struct:array_state_vector
199 * Number of currently enabled client-side arrays. The value of this
  /external/mesa3d/src/mesa/main/
arrayobj.h 79 /** Returns the bitmask of all enabled arrays in fixed function mode.
81 * In fixed function mode only the traditional fixed function arrays
90 /** Returns the bitmask of all enabled arrays in nv shader mode.
92 * In nv shader mode, the nv generic arrays take precedence over
93 * the legacy arrays.
102 /** Returns the bitmask of all enabled arrays in arb/glsl shader mode.
105 * arrays are available. Only the first generic array takes
127 void GLAPIENTRY _mesa_GenVertexArrays(GLsizei n, GLuint *arrays);
  /external/mesa3d/src/mesa/tnl/
tnl.h 80 const struct gl_client_array *arrays[],
t_draw.c 301 * client arrays.
419 const struct gl_client_array **arrays = ctx->Array._DrawArrays; local
424 _tnl_draw_prims(ctx, arrays, prim, nr_prims, ib, min_index, max_index);
432 const struct gl_client_array *arrays[],
467 vbo_rebase_prims( ctx, arrays, prim, nr_prims, ib,
485 vbo_split_prims( ctx, arrays, prim, nr_prims, ib,
519 bind_inputs(ctx, arrays, max_index + prim[i].basevertex + 1,
  /external/opencv3/modules/ts/src/
ts_func.cpp 180 const Mat *arrays[] = {&a, &b, &c, 0}; local
183 NAryMatIterator it(arrays, planes);
297 const Mat *arrays[]={&src, &dst, 0}; local
300 NAryMatIterator it(arrays, planes);
343 const Mat* arrays[] = {&src, &dst, 0}; local
345 NAryMatIterator it(arrays, planes);
357 const Mat *arrays[]={&src, &dst, &mask, 0}; local
360 NAryMatIterator it(arrays, planes);
388 const Mat* arrays[] = {&dst, 0}; local
390 NAryMatIterator it(arrays, &plane)
418 const Mat *arrays[]={&dst, &mask, 0}; local
445 const Mat* arrays[] = {&src, &dst, 0}; local
470 const Mat* arrays[] = {&src, &dst, 0}; local
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btCollisionWorldImporter.cpp 39 bool btCollisionWorldImporter::convertAllObjects( btBulletSerializedArrays* arrays)
47 for (i=0;i<arrays->m_bvhsDouble.size();i++)
50 btQuantizedBvhDoubleData* bvhData = arrays->m_bvhsDouble[i];
52 m_bvhMap.insert(arrays->m_bvhsDouble[i],bvh);
54 for (i=0;i<arrays->m_bvhsFloat.size();i++)
57 btQuantizedBvhFloatData* bvhData = arrays->m_bvhsFloat[i];
59 m_bvhMap.insert(arrays->m_bvhsFloat[i],bvh);
66 for (i=0;i<arrays->m_colShapeData.size();i++)
68 btCollisionShapeData* shapeData = arrays->m_colShapeData[i];
85 for (i=0;i<arrays->m_collisionObjectDataDouble.size();i++
    [all...]
  /external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
PartiallyCompressingOutputStreamTest.java 30 import java.util.Arrays;
67 private byte[] fuse(byte[]... arrays) throws IOException {
69 for (byte[] array : arrays) {
151 Arrays.asList(COMPRESS_RANGE_1, COMPRESS_RANGE_2), outBuffer, 32768);
  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidGL30.java 262 public void glDeleteVertexArrays (int n, int[] arrays, int offset) {
263 GLES30.glDeleteVertexArrays(n, arrays, offset);
267 public void glDeleteVertexArrays (int n, java.nio.IntBuffer arrays) {
268 GLES30.glDeleteVertexArrays(n, arrays);
272 public void glGenVertexArrays (int n, int[] arrays, int offset) {
273 GLES30.glGenVertexArrays(n, arrays, offset);
277 public void glGenVertexArrays (int n, java.nio.IntBuffer arrays) {
278 GLES30.glGenVertexArrays(n, arrays);

Completed in 1687 milliseconds

1 23 4 5 6 7 8 91011>>