HomeSort by relevance Sort by last modified time
    Searched defs:bufLength (Results 1 - 10 of 10) sorted by null

  /frameworks/base/libs/rs/
rsShaderCache.cpp 115 GLint bufLength = 0;
116 glGetProgramiv(pgm, GL_INFO_LOG_LENGTH, &bufLength);
117 if (bufLength) {
118 char* buf = (char*) malloc(bufLength);
120 glGetProgramInfoLog(pgm, bufLength, NULL, buf);
  /frameworks/base/opengl/tests/gl2_jni/jni/
gl_code.cpp 84 GLint bufLength = 0;
85 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
86 if (bufLength) {
87 char* buf = (char*) malloc(bufLength);
89 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /frameworks/base/opengl/tests/gldual/jni/
gl_code.cpp 84 GLint bufLength = 0;
85 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
86 if (bufLength) {
87 char* buf = (char*) malloc(bufLength);
89 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /ndk/samples/hello-gl2/jni/
gl_code.cpp 104 GLint bufLength = 0;
105 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
106 if (bufLength) {
107 char* buf = (char*) malloc(bufLength);
109 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x501/
AttributeValue.java 235 int bufLength;
243 bufLength = buf.length();
244 if (bufLength == 0 || buf.charAt(bufLength - 1) == ' ') {
265 for (bufLength = buf.length() - 1; bufLength > -1
266 && buf.charAt(bufLength) == ' '; bufLength--) {
268 buf.setLength(bufLength + 1);
  /frameworks/base/opengl/tests/gl2_basic/
gl2_basic.cpp 123 GLint bufLength = 0;
124 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
125 if (bufLength) {
126 char* buf = (char*) malloc(bufLength);
128 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /dalvik/libcore/math/src/main/java/java/math/
BigDecimal.java 321 int bufLength = 0;
342 bufLength += offset - begin;
359 bufLength +=scale;
386 if (bufLength < 19) {
    [all...]
  /hardware/ti/wlan/wl1271/stad/Export_Inc/
paramOut.h 363 TI_UINT16 bufLength;
    [all...]
  /system/wlan/ti/wilink_6_1/stad/Export_Inc/
paramOut.h 363 TI_UINT16 bufLength;
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/inc/
paramOut.h 464 UINT16 bufLength;
    [all...]

Completed in 1666 milliseconds