HomeSort by relevance Sort by last modified time
    Searched refs:indx (Results 26 - 50 of 270) sorted by null

12 3 4 5 6 7 8 91011

  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSGLES20.java 340 public native void glVertexAttrib1f ( int indx, float x );
342 public native void glVertexAttrib1fv ( int indx, FloatBuffer values );
344 public native void glVertexAttrib2f ( int indx, float x, float y );
346 public native void glVertexAttrib2fv ( int indx, FloatBuffer values );
348 public native void glVertexAttrib3f ( int indx, float x, float y, float z );
350 public native void glVertexAttrib3fv ( int indx, FloatBuffer values );
352 public native void glVertexAttrib4f ( int indx, float x, float y, float z, float w );
354 public native void glVertexAttrib4fv ( int indx, FloatBuffer values );
356 public native void glVertexAttribPointer ( int indx, int size, int type, boolean normalized, int stride, Buffer ptr );
358 public native void glVertexAttribPointer ( int indx, int size, int type, boolean normalized, int stride, int ptr )
    [all...]
  /external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
JglfwGL20.java 696 public void glVertexAttrib1f (int indx, float x) {
697 GL.glVertexAttrib1f(indx, x);
700 public void glVertexAttrib1fv (int indx, FloatBuffer values) {
701 GL.glVertexAttrib1fv(indx, values, getPosition(values));
704 public void glVertexAttrib2f (int indx, float x, float y) {
705 GL.glVertexAttrib2f(indx, x, y);
708 public void glVertexAttrib2fv (int indx, FloatBuffer values) {
709 GL.glVertexAttrib2fv(indx, values, getPosition(values));
712 public void glVertexAttrib3f (int indx, float x, float y, float z) {
713 GL.glVertexAttrib3f(indx, x, y, z);
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
GwtGL20Debug.java 986 public void glVertexAttrib1f (int indx, float x) {
988 super.glVertexAttrib1f(indx, x);
993 public void glVertexAttrib1fv (int indx, FloatBuffer values) {
995 super.glVertexAttrib1fv(indx, values);
1000 public void glVertexAttrib2f (int indx, float x, float y) {
1002 super.glVertexAttrib2f(indx, x, y);
1007 public void glVertexAttrib2fv (int indx, FloatBuffer values) {
1009 super.glVertexAttrib2fv(indx, values);
1014 public void glVertexAttrib3f (int indx, float x, float y, float z) {
1016 super.glVertexAttrib3f(indx, x, y, z);
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/profiling/
GL20Profiler.java 1142 public void glVertexAttrib1f (int indx, float x) {
1144 gl20.glVertexAttrib1f(indx, x);
1149 public void glVertexAttrib1fv (int indx, FloatBuffer values) {
1151 gl20.glVertexAttrib1fv(indx, values);
1156 public void glVertexAttrib2f (int indx, float x, float y) {
1158 gl20.glVertexAttrib2f(indx, x, y);
1163 public void glVertexAttrib2fv (int indx, FloatBuffer values) {
1165 gl20.glVertexAttrib2fv(indx, values);
1170 public void glVertexAttrib3f (int indx, float x, float y, float z) {
1172 gl20.glVertexAttrib3f(indx, x, y, z)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c2_11pf.cpp 630 Word16 indx; local
644 indx = 0;
803 indx =
805 indx,
838 return indx;
c2_9pf.cpp 854 indx = codebook index (Word16)
891 Word16 i, j, k, track, first, index, _sign[NB_PULSE], indx, rsign;
906 indx = 0;
1003 Word16 indx; local
    [all...]
c3_14pf.cpp 617 indx
684 Word16 indx; local
698 indx = 0;
770 /* indx = add(indx, index, pOverflow); */
771 indx += index;
809 return indx;
c4_17pf.cpp 688 indx
754 Word16 indx; local
770 indx = 0;
837 /* indx = add(indx, index, pOverflow); */
838 indx += index;
885 return indx;
  /frameworks/native/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...]
  /external/lzma/C/
Ppmd7.c 19 #define I2U(indx) (p->Indx2Units[indx])
120 static void InsertNode(CPpmd7 *p, void *node, unsigned indx)
122 *((CPpmd_Void_Ref *)node) = p->FreeList[indx];
123 p->FreeList[indx] = REF(node);
126 static void *RemoveNode(CPpmd7 *p, unsigned indx)
128 CPpmd_Void_Ref *node = (CPpmd_Void_Ref *)Ppmd7_GetPtr(p, p->FreeList[indx]);
129 p->FreeList[indx] = *node;
217 static void *AllocUnitsRare(CPpmd7 *p, unsigned indx)
224 if (p->FreeList[indx] != 0)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
vlc_decode.cpp 374 int indx; local
376 indx = ((mbnum_col << 1) + (block & 1)) + ((mbnum_row << 1) + (block >> 1)) * nMVPerRow - 1; /* left block */
380 p1x = motxdata[indx];
381 p1y = motydata[indx];
388 p1x = motxdata[indx];
389 p1y = motydata[indx];
394 indx = indx + 1 - nMVPerRow; /* upper_block */
397 indx -= (block & 1);
398 p2x = motxdata[indx];
    [all...]
  /external/libdrm/tests/modetest/
cursor.c 79 static uint32_t indx, count; variable
148 const struct cursor_step *step = &steps[indx % ARRAY_SIZE(steps)];
161 indx++;
  /cts/tools/dasm/src/java_cup/
terminal_set.java 86 * @param indx the index of the terminal in question.
88 public boolean contains(int indx)
90 return _elements.get(indx);
production.java 175 public production_part rhs(int indx) throws internal_error
177 if (indx >= 0 && indx < _rhs_length)
178 return _rhs[indx];
  /libcore/luni/src/test/java/tests/security/cert/
CertPathValidatorExceptionTest.java 218 int[] indx = { 0, 1, 100, Integer.MAX_VALUE, Integer.MIN_VALUE }; local
219 for (int j = 0; j < indx.length; j++) {
222 new CertPathValidatorException(msgs[i], tCause, null, indx[j]);
226 + ", certPath is null and index is " + indx[j]);
280 int[] indx = { -2, -100, 0, 1, 100, Integer.MAX_VALUE, local
282 for (int j = 0; j < indx.length; j++) {
285 new CertPathValidatorException(msgs[i], tCause, cp, indx[j]);
289 + ", certPath is null and index is " + indx[j]);
  /frameworks/base/opengl/java/android/opengl/
GLES20.java     [all...]
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
VirtualThermalZone.java 55 int indx = ThermalUtils.getThermalZoneIndex(getZoneName()); local
56 if (indx == -1) {
60 String uEventDevPath = ThermalManager.sUEventDevPath + indx;
61 setEmulTempPath(ThermalManager.sSysfsSensorBasePath + indx + "/emul_temp");
  /external/opencv3/modules/calib3d/src/
homography_decomp.cpp 350 int indx = 0; local
352 indx = 1;
354 indx = 2;
358 indx = 2;
361 switch (indx) {
384 double ESii = signd(S(indx, indx)) ;
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
GL20.java 651 public void glVertexAttrib1f (int indx, float x);
653 public void glVertexAttrib1fv (int indx, FloatBuffer values);
655 public void glVertexAttrib2f (int indx, float x, float y);
657 public void glVertexAttrib2fv (int indx, FloatBuffer values);
659 public void glVertexAttrib3f (int indx, float x, float y, float z);
661 public void glVertexAttrib3fv (int indx, FloatBuffer values);
663 public void glVertexAttrib4f (int indx, float x, float y, float z, float w);
665 public void glVertexAttrib4fv (int indx, FloatBuffer values);
672 public void glVertexAttribPointer (int indx, int size, int type, boolean normalized, int stride, Buffer ptr);
674 public void glVertexAttribPointer (int indx, int size, int type, boolean normalized, int stride, int ptr);
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ppc/
test1xcoff32.d 27 AUX indx 4 prmhsh 0 snhsh 0 typ 2 algn 0 clss 0 stb 0 snstb 0
29 AUX indx 4 prmhsh 0 snhsh 0 typ 2 algn 0 clss 0 stb 0 snstb 0
31 AUX indx 4 prmhsh 0 snhsh 0 typ 2 algn 0 clss 0 stb 0 snstb 0
33 AUX indx 4 prmhsh 0 snhsh 0 typ 2 algn 0 clss 0 stb 0 snstb 0
35 AUX indx 4 prmhsh 0 snhsh 0 typ 2 algn 0 clss 0 stb 0 snstb 0
  /external/skia/src/gpu/gl/
GrGLNoOpInterface.h 282 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib1f(GrGLuint indx, const GrGLfloat value);
284 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib2fv(GrGLuint indx, const GrGLfloat* values);
286 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib3fv(GrGLuint indx, const GrGLfloat* values);
288 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib4fv(GrGLuint indx, const GrGLfloat* values);
290 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribIPointer(GrGLuint indx,
296 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribPointer(GrGLuint indx,
  /toolchain/binutils/binutils-2.25/bfd/
xcofflink.c 564 ret->indx = -1;
3919 bfd_size_type indx; local
4358 bfd_size_type indx; local
4440 bfd_vma indx; local
4487 bfd_size_type indx; local
4522 unsigned long indx; local
4543 unsigned long indx; local
4888 long indx; local
5933 int indx; local
    [all...]
elf32-i370.c 970 int indx, dindx;
975 indx = elf_section_data (s)->this_idx;
979 BFD_ASSERT(indx > 0);
985 sym.st_shndx = indx;
962 int indx, dindx; local
1235 long indx; local
    [all...]
  /device/generic/goldfish-opengl/system/GLESv2_enc/
gl2_entry.cpp 141 void glVertexAttrib1f(GLuint indx, GLfloat x);
142 void glVertexAttrib1fv(GLuint indx, const GLfloat* values);
143 void glVertexAttrib2f(GLuint indx, GLfloat x, GLfloat y);
144 void glVertexAttrib2fv(GLuint indx, const GLfloat* values);
145 void glVertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z);
146 void glVertexAttrib3fv(GLuint indx, const GLfloat* values);
147 void glVertexAttrib4f(GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
148 void glVertexAttrib4fv(GLuint indx, const GLfloat* values);
149 void glVertexAttribPointer(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr);
210 void glVertexAttribPointerData(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, void* data, GLuint datalen)
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/include/
avcapi_common.h 198 @param indx Index of a frame in DPB (AVC library keeps track of the index).
202 typedef int (*FunctionType_FrameBind)(void *userData, int indx, uint8 **yuv);
207 @param indx Index of frame to be unbound (AVC library keeps track of the index).

Completed in 1308 milliseconds

12 3 4 5 6 7 8 91011