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

1 2 3 4 5 6 7 8

  /development/tools/emulator/opengl/host/libs/GLESv2_dec/
GL2Decoder.cpp 86 void GL2Decoder::s_glVertexAttribPointerData(void *self, GLuint indx, GLint size, GLenum type,
91 ctx->m_contextData->storePointerData(indx, data, datalen);
94 ctx->glVertexAttribPointer(indx, size, type, normalized, 0, ctx->m_contextData->pointerData(indx));
98 void GL2Decoder::s_glVertexAttribPointerOffset(void *self, GLuint indx, GLint size, GLenum type,
102 ctx->glVertexAttribPointer(indx, size, type, normalized, stride, (GLvoid *)data);
GL2Decoder.h 26 static void gl2_APIENTRY s_glVertexAttribPointerData(void *self, GLuint indx, GLint size, GLenum type,
28 static void gl2_APIENTRY s_glVertexAttribPointerOffset(void *self, GLuint indx, GLint size, GLenum type,
  /external/valgrind/main/cachegrind/
cg_branchpred.c 91 UWord indx; local
102 indx = (hist_bits << N_IADD_BITS) | iadd_bits;
103 tl_assert(indx < N_COUNTERS);
104 if (0) VG_(printf)("index = %d\n", (Int)indx);
107 predicted_taken = counters[ indx ] >= 2;
117 if (counters[indx] < 3)
118 counters[indx]++;
120 if (counters[indx] > 0)
121 counters[indx]--;
124 tl_assert(counters[indx] <= 3)
142 UWord indx = (instr_addr >> N_IADDR_LO_ZERO_BITS) local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
bitmap.h 68 unsigned int indx; /* regno/BITMAP_ELEMENT_ALL_BITS. */ local
80 unsigned int indx; /* Index of last element looked at. */ local
238 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
244 if (bi->elt1->indx != start_bit / BITMAP_ELEMENT_ALL_BITS)
245 start_bit = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
281 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
295 if (bi->elt2->indx >= bi->elt1->indx)
301 if (bi->elt1->indx == bi->elt2->indx)
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
bitmap.h 68 unsigned int indx; /* regno/BITMAP_ELEMENT_ALL_BITS. */ local
80 unsigned int indx; /* Index of last element looked at. */ local
238 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
244 if (bi->elt1->indx != start_bit / BITMAP_ELEMENT_ALL_BITS)
245 start_bit = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
281 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
295 if (bi->elt2->indx >= bi->elt1->indx)
301 if (bi->elt1->indx == bi->elt2->indx)
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
bitmap.h 68 unsigned int indx; /* regno/BITMAP_ELEMENT_ALL_BITS. */ local
80 unsigned int indx; /* Index of last element looked at. */ local
238 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
244 if (bi->elt1->indx != start_bit / BITMAP_ELEMENT_ALL_BITS)
245 start_bit = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
281 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
295 if (bi->elt2->indx >= bi->elt1->indx)
301 if (bi->elt1->indx == bi->elt2->indx)
    [all...]
  /frameworks/base/opengl/libs/GLES2_dbg/src/
dbgcontext.cpp 302 void DbgContext::glVertexAttribPointer(GLuint indx, GLint size, GLenum type,
306 assert(indx < MAX_VERTEX_ATTRIBS);
307 vertexAttribs[indx].size = size;
308 vertexAttribs[indx].type = type;
309 vertexAttribs[indx].normalized = normalized;
312 vertexAttribs[indx].elemSize = sizeof(GLfloat) * size;
316 vertexAttribs[indx].elemSize = sizeof(GLint) * size;
320 vertexAttribs[indx].elemSize = sizeof(GLshort) * size;
324 vertexAttribs[indx].elemSize = sizeof(GLbyte) * size;
330 stride = vertexAttribs[indx].elemSize
    [all...]
api.cpp 3260 GLuint indx; member in struct:__anon15411
3281 GLuint indx; member in struct:__anon15412
3304 GLuint indx; member in struct:__anon15413
3328 GLuint indx; member in struct:__anon15414
3351 GLuint indx; member in struct:__anon15415
3378 GLuint indx; member in struct:__anon15416
3401 GLuint indx; member in struct:__anon15417
3431 GLuint indx; member in struct:__anon15418
3455 GLuint indx; member in struct:__anon15419
    [all...]
  /frameworks/base/opengl/tools/glgen/specs/gles11/
GLES20.spec 134 void glVertexAttrib1f ( GLuint indx, GLfloat x )
135 void glVertexAttrib1fv ( GLuint indx, const GLfloat *values )
136 void glVertexAttrib2f ( GLuint indx, GLfloat x, GLfloat y )
137 void glVertexAttrib2fv ( GLuint indx, const GLfloat *values )
138 void glVertexAttrib3f ( GLuint indx, GLfloat x, GLfloat y, GLfloat z )
139 void glVertexAttrib3fv ( GLuint indx, const GLfloat *values )
140 void glVertexAttrib4f ( GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w )
141 void glVertexAttrib4fv ( GLuint indx, const GLfloat *values )
142 void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLint offset )
143 void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *ptr )
    [all...]
  /frameworks/base/opengl/libagl2/src/
vertex.cpp 331 void glVertexAttrib1f(GLuint indx, GLfloat x)
333 glVertexAttrib4f(indx, x,0,0,1);
336 void glVertexAttrib1fv(GLuint indx, const GLfloat* values)
338 glVertexAttrib4f(indx, values[0],0,0,1);
341 void glVertexAttrib2f(GLuint indx, GLfloat x, GLfloat y)
343 glVertexAttrib4f(indx, x,y,0,1);
346 void glVertexAttrib2fv(GLuint indx, const GLfloat* values)
348 glVertexAttrib4f(indx, values[0],values[1],0,1);
351 void glVertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z)
353 glVertexAttrib4f(indx, x,y,z,1)
    [all...]
  /frameworks/base/opengl/libs/GLES2/
gl2_api.in 397 void API_ENTRY(glVertexAttrib1f)(GLuint indx, GLfloat x) {
398 CALL_GL_API(glVertexAttrib1f, indx, x);
400 void API_ENTRY(glVertexAttrib1fv)(GLuint indx, const GLfloat* values) {
401 CALL_GL_API(glVertexAttrib1fv, indx, values);
403 void API_ENTRY(glVertexAttrib2f)(GLuint indx, GLfloat x, GLfloat y) {
404 CALL_GL_API(glVertexAttrib2f, indx, x, y);
406 void API_ENTRY(glVertexAttrib2fv)(GLuint indx, const GLfloat* values) {
407 CALL_GL_API(glVertexAttrib2fv, indx, values);
409 void API_ENTRY(glVertexAttrib3f)(GLuint indx, GLfloat x, GLfloat y, GLfloat z) {
410 CALL_GL_API(glVertexAttrib3f, indx, x, y, z)
    [all...]
  /frameworks/base/opengl/libs/GLES2_dbg/
gl2_api_annotated.in 397 void API_ENTRY(glVertexAttrib1f)(GLuint indx, GLfloat x) {
398 CALL_GL_API(glVertexAttrib1f, indx, x);
400 void API_ENTRY(glVertexAttrib1fv)(GLuint indx, const GLfloat:1:in values) {
401 CALL_GL_API(glVertexAttrib1fv, indx, values);
403 void API_ENTRY(glVertexAttrib2f)(GLuint indx, GLfloat x, GLfloat y) {
404 CALL_GL_API(glVertexAttrib2f, indx, x, y);
406 void API_ENTRY(glVertexAttrib2fv)(GLuint indx, const GLfloat:2:in values) {
407 CALL_GL_API(glVertexAttrib2fv, indx, values);
409 void API_ENTRY(glVertexAttrib3f)(GLuint indx, GLfloat x, GLfloat y, GLfloat z) {
410 CALL_GL_API(glVertexAttrib3f, indx, x, y, z)
    [all...]
  /external/opencv/cvaux/src/
cvbgfg_acmmm2003.cpp 501 int dist, min_dist = 2147483647, indx = -1; local
536 indx = k;
541 if( indx < 0 )
543 indx = model->params.N2cc - 1;
544 PV_CC(indx) = alpha;
545 PVB_CC(indx) = alpha;
549 V_CC(indx,l) = prev_data[l];
550 V_CC(indx,l+3) = curr_data[l];
555 PV_CC(indx) += alpha;
558 PVB_CC(indx) += alpha
609 int dist, min_dist = 2147483647, indx = -1; local
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
GLServerVertex.java 469 // void glVertexAttrib1f(GLuint indx, GLfloat x)
475 // void glVertexAttrib1fv(GLuint indx, const GLfloat* values)
484 // void glVertexAttrib2f(GLuint indx, GLfloat x, GLfloat y)
490 // void glVertexAttrib2fv(GLuint indx, const GLfloat* values)
499 // void glVertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z)
506 // void glVertexAttrib3fv(GLuint indx, const GLfloat* values)
523 void glVertexAttrib4f(int indx, float x, float y, float z, float w) {
524 if (indx < 0 || indx >= defaultAttribs.length)
526 defaultAttribs[indx][0] = x
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerVertex.java 469 // void glVertexAttrib1f(GLuint indx, GLfloat x)
475 // void glVertexAttrib1fv(GLuint indx, const GLfloat* values)
484 // void glVertexAttrib2f(GLuint indx, GLfloat x, GLfloat y)
490 // void glVertexAttrib2fv(GLuint indx, const GLfloat* values)
499 // void glVertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z)
506 // void glVertexAttrib3fv(GLuint indx, const GLfloat* values)
523 void glVertexAttrib4f(int indx, float x, float y, float z, float w) {
524 if (indx < 0 || indx >= defaultAttribs.length)
526 defaultAttribs[indx][0] = x
    [all...]
  /external/ppp/pppd/
ipxcp.c 264 int indx; local
271 for (indx = 0; indx < 5; ++indx) {
272 dst[indx] <<= 4;
273 dst[indx] |= (dst[indx + 1] >> 4) & 0x0F;
442 int indx; local
443 for (indx = 0; indx < sizeof (ipxcp_wantoptions[0].our_node); ++indx
625 int indx; local
634 int indx; local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertPathValidatorExceptionTest.java 223 int[] indx = { 0, 1, 100, Integer.MAX_VALUE, Integer.MIN_VALUE }; local
224 for (int j = 0; j < indx.length; j++) {
227 new CertPathValidatorException(msgs[i], tCause, null, indx[j]);
231 + ", certPath is null and index is " + indx[j]);
285 int[] indx = { -2, -100, 0, 1, 100, Integer.MAX_VALUE, local
287 for (int j = 0; j < indx.length; j++) {
290 new CertPathValidatorException(msgs[i], tCause, cp, indx[j]);
294 + ", certPath is null and index is " + indx[j]);
  /development/tools/emulator/opengl/system/GLESv2_enc/
gl2.in 133 GL_ENTRY(void, glVertexAttrib1f, GLuint indx, GLfloat x)
134 GL_ENTRY(void, glVertexAttrib1fv, GLuint indx, const GLfloat* values)
135 GL_ENTRY(void, glVertexAttrib2f, GLuint indx, GLfloat x, GLfloat y)
136 GL_ENTRY(void, glVertexAttrib2fv, GLuint indx, const GLfloat* values)
137 GL_ENTRY(void, glVertexAttrib3f, GLuint indx, GLfloat x, GLfloat y, GLfloat z)
138 GL_ENTRY(void, glVertexAttrib3fv, GLuint indx, const GLfloat* values)
139 GL_ENTRY(void, glVertexAttrib4f, GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
140 GL_ENTRY(void, glVertexAttrib4fv, GLuint indx, const GLfloat* values)
141 GL_ENTRY(void, glVertexAttribPointer, GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr)
208 GL_ENTRY(void, glVertexAttribPointerData, GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, void * data, GLuint datalen
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES20.java     [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
c1035pf.cpp 268 Word16 indx[] // (o) : index of 10 pulses (sign+position)
281 indx[i] = -1;
308 if (indx[track] < 0)
310 indx[track] = index;
314 if (((index ^ indx[track]) & 8) == 0)
318 if (sub (indx[track], index) <= 0)
320 indx[track + 5] = index;
324 indx[track + 5] = indx[track];
325 indx[track] = index
    [all...]
  /frameworks/base/opengl/libs/
trace.in     [all...]
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
DummyGLfuncs.cpp 189 void GL_APIENTRY dummy_glVertexAttrib1f(GLuint indx, GLfloat x){}
190 void GL_APIENTRY dummy_glVertexAttrib1fv(GLuint indx, const GLfloat* values){}
191 void GL_APIENTRY dummy_glVertexAttrib2f(GLuint indx, GLfloat x, GLfloat y){}
192 void GL_APIENTRY dummy_glVertexAttrib2fv(GLuint indx, const GLfloat* values){}
193 void GL_APIENTRY dummy_glVertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z){}
194 void GL_APIENTRY dummy_glVertexAttrib3fv(GLuint indx, const GLfloat* values){}
195 void GL_APIENTRY dummy_glVertexAttrib4f(GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w){}
196 void GL_APIENTRY dummy_glVertexAttrib4fv(GLuint indx, const GLfloat* values){}
197 void GL_APIENTRY dummy_glVertexAttribPointer(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr){}
DummyGLfuncs.h 196 void GL_APIENTRY dummy_glVertexAttrib1f(GLuint indx, GLfloat x);
197 void GL_APIENTRY dummy_glVertexAttrib1fv(GLuint indx, const GLfloat* values);
198 void GL_APIENTRY dummy_glVertexAttrib2f(GLuint indx, GLfloat x, GLfloat y);
199 void GL_APIENTRY dummy_glVertexAttrib2fv(GLuint indx, const GLfloat* values);
200 void GL_APIENTRY dummy_glVertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z);
201 void GL_APIENTRY dummy_glVertexAttrib3fv(GLuint indx, const GLfloat* values);
202 void GL_APIENTRY dummy_glVertexAttrib4f(GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
203 void GL_APIENTRY dummy_glVertexAttrib4fv(GLuint indx, const GLfloat* values);
204 void GL_APIENTRY dummy_glVertexAttribPointer(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr);
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
GLDispatch.h 201 static void (GL_APIENTRY *glVertexAttrib1f)(GLuint indx, GLfloat x);
202 static void (GL_APIENTRY *glVertexAttrib1fv)(GLuint indx, const GLfloat* values);
203 static void (GL_APIENTRY *glVertexAttrib2f)(GLuint indx, GLfloat x, GLfloat y);
204 static void (GL_APIENTRY *glVertexAttrib2fv)(GLuint indx, const GLfloat* values);
205 static void (GL_APIENTRY *glVertexAttrib3f)(GLuint indx, GLfloat x, GLfloat y, GLfloat z);
206 static void (GL_APIENTRY *glVertexAttrib3fv)(GLuint indx, const GLfloat* values);
207 static void (GL_APIENTRY *glVertexAttrib4f)(GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
208 static void (GL_APIENTRY *glVertexAttrib4fv)(GLuint indx, const GLfloat* values);
209 static void (GL_APIENTRY *glVertexAttribPointer)(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr);
  /frameworks/base/opengl/tools/glgen/stubs/gles11/
GLES20cHeader.cpp 123 static void glVertexAttribPointerBounds(GLuint indx, GLint size, GLenum type,
125 glVertexAttribPointer(indx, size, type, normalized, stride, pointer);

Completed in 2148 milliseconds

1 2 3 4 5 6 7 8