/libcore/luni/src/main/java/org/apache/harmony/security/x501/ |
AttributeValue.java | 244 int bufLength; 250 bufLength = buf.length(); 251 if (bufLength == 0 || buf.charAt(bufLength - 1) == ' ') { 272 for (bufLength = buf.length() - 1; bufLength > -1 273 && buf.charAt(bufLength) == ' '; bufLength--) { 275 buf.setLength(bufLength + 1);
|
/cts/tests/tests/opengl/libopengltest/ |
color_one.cpp | 55 GLint bufLength = 0; 56 glGetProgramiv(gProgram, GL_INFO_LOG_LENGTH, &bufLength); 57 if (bufLength) { 58 char* buf = (char*) malloc(bufLength); 60 glGetProgramInfoLog(gProgram, bufLength, NULL, buf);
|
/development/ndk/platforms/android-5/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);
|
/frameworks/native/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/native/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);
|
/packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/ |
Renderer.cpp | 94 GLint bufLength = 0; 95 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); 96 if (bufLength) 98 char* buf = (char*) malloc(bufLength); 101 glGetProgramInfoLog(program, bufLength, NULL, buf);
|
/packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic_renderer/ |
Renderer.cpp | 94 GLint bufLength = 0; 95 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); 96 if (bufLength) 98 char* buf = (char*) malloc(bufLength); 101 glGetProgramInfoLog(program, bufLength, NULL, buf);
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic_renderer/ |
Renderer.cpp | 94 GLint bufLength = 0; 95 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); 96 if (bufLength) 98 char* buf = (char*) malloc(bufLength); 101 glGetProgramInfoLog(program, bufLength, NULL, buf);
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
SkeletonControl.java | 333 int bufLength = posBuf.length; 336 bufLength = Math.min(posBuf.length, fvb.remaining()); 337 fvb.get(posBuf, 0, bufLength); 338 fnb.get(normBuf, 0, bufLength); 339 int verts = bufLength / 3; 377 fvb.position(fvb.position() - bufLength); 378 fvb.put(posBuf, 0, bufLength); 379 fnb.position(fnb.position() - bufLength); 380 fnb.put(normBuf, 0, bufLength); 443 int bufLength = 0; [all...] |
/frameworks/native/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);
|
/frameworks/native/opengl/tests/gl_perf/ |
fill_common.cpp | 91 GLint bufLength = 0; 92 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); 93 if (bufLength) { 94 char* buf = (char*) malloc(bufLength); 96 glGetProgramInfoLog(program, bufLength, NULL, buf);
|
/frameworks/rs/driver/ |
rsdShaderCache.cpp | 157 GLint bufLength = 0; 158 glGetProgramiv(pgm, GL_INFO_LOG_LENGTH, &bufLength); 159 if (bufLength) { 160 char* buf = (char*) malloc(bufLength); 162 glGetProgramInfoLog(pgm, bufLength, NULL, buf);
|
/frameworks/native/cmds/flatland/ |
GLHelper.cpp | 383 GLint bufLength = 0; 384 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); 385 if (bufLength) { 386 char* buf = new char[bufLength]; 388 glGetProgramInfoLog(program, bufLength, NULL, buf);
|
/frameworks/native/opengl/tests/gl2_copyTexImage/ |
gl2_copyTexImage.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);
|
/frameworks/native/opengl/tests/gl2_yuvtex/ |
gl2_yuvtex.cpp | 139 GLint bufLength = 0; 140 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); 141 if (bufLength) { 142 char* buf = (char*) malloc(bufLength); 144 glGetProgramInfoLog(program, bufLength, NULL, buf);
|
/external/grub/netboot/ |
epic100.c | 32 unsigned short buflength; member in struct:epic_rx_desc 44 unsigned short buflength; member in struct:epic_tx_desc 262 rx_ring[i].buflength = PKT_BUF_SZ; 329 tx_ring[entry].buflength = len;
|
/frameworks/av/media/libstagefright/tests/ |
SurfaceMediaSource_test.cpp | 265 GLint bufLength = 0; 266 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); 267 if (bufLength) { 268 char* buf = (char*) malloc(bufLength); 270 glGetProgramInfoLog(program, bufLength, NULL, buf); [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
ShaderProgram.cpp | 240 GLint bufLength = 0; 241 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); 242 if (bufLength) { 243 char* buf = (char*) malloc(bufLength); 245 glGetProgramInfoLog(program, bufLength, 0, buf); [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
GCMBlockCipher.java | 122 int bufLength = forEncryption ? BLOCK_SIZE : (BLOCK_SIZE + macSize); 123 this.bufBlock = new byte[bufLength];
|
/frameworks/native/libs/gui/tests/ |
SurfaceTexture_test.cpp | 354 GLint bufLength = 0; 355 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); 356 if (bufLength) { 357 char* buf = (char*) malloc(bufLength); 359 glGetProgramInfoLog(program, bufLength, NULL, buf); [all...] |
/libcore/luni/src/main/java/java/math/ |
BigDecimal.java | 280 int bufLength = 0; 300 bufLength += offset - begin; 317 bufLength +=scale; 343 if (bufLength < 19) { [all...] |
/external/clang/lib/Basic/ |
SourceManager.cpp | [all...] |