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

  /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);
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeValue.java 293 int bufLength;
299 bufLength = buf.length();
300 if (bufLength == 0 || buf.charAt(bufLength - 1) == ' ') {
321 for (bufLength = buf.length() - 1; bufLength > -1
322 && buf.charAt(bufLength) == ' '; bufLength--) {
324 buf.setLength(bufLength + 1);
  /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);
  /development/perftests/panorama/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);
  /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/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);
  /frameworks/av/cmds/screenrecord/
Program.cpp 183 GLint bufLength = 0;
184 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
185 if (bufLength) {
186 char* buf = new char[bufLength];
188 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /external/chromium_org/third_party/webrtc/modules/video_render/android/
video_render_opengles20.cc 291 GLint bufLength = 0;
292 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
293 if (bufLength) {
294 char* buf = (char*) malloc(bufLength);
296 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /frameworks/native/libs/gui/tests/
GLTest.cpp 318 GLint bufLength = 0;
319 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
320 if (bufLength) {
321 char* buf = (char*) malloc(bufLength);
323 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /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);
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
mpeg_parser.js 274 var bufLength = buf.byteLength;
278 if (bufLength != atomEnd && bufLength != size) {
280 'requested ' + size + ', read ' + bufLength;
293 filePos += bufLength;
294 if (bufLength == size) {
  /frameworks/native/cmds/flatland/
GLHelper.cpp 388 GLint bufLength = 0;
389 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
390 if (bufLength) {
391 char* buf = new char[bufLength];
393 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);
  /frameworks/av/media/libstagefright/tests/
SurfaceMediaSource_test.cpp 266 GLint bufLength = 0;
267 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
268 if (bufLength) {
269 char* buf = (char*) malloc(bufLength);
271 glGetProgramInfoLog(program, bufLength, NULL, buf);
    [all...]
  /hardware/ti/omap4-aah/test/CameraHal/
camera_test_surfacetexture.cpp 477 GLint bufLength = 0;
478 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
479 if (bufLength) {
480 char* buf = (char*) malloc(bufLength);
482 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /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];
  /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...]
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 2023 milliseconds