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

1 2

  /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/ojluni/src/main/java/java/net/
DatagramPacket.java 70 int bufLength;
287 this.bufLength = length;
380 this.bufLength = buf.length;
407 this.bufLength = this.length;
PlainDatagramSocketImpl.java 153 IoBridge.recvfrom(false, fd, p.getData(), p.getOffset(), p.bufLength, flags, p,
  /frameworks/native/opengl/tests/gl2_jni/jni/
gl_code.cpp 89 GLint bufLength = 0;
90 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
91 if (bufLength) {
92 char* buf = (char*) malloc(bufLength);
94 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /frameworks/native/opengl/tests/gldual/jni/
gl_code.cpp 89 GLint bufLength = 0;
90 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
91 if (bufLength) {
92 char* buf = (char*) malloc(bufLength);
94 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/webrtc/webrtc/modules/video_render/android/
video_render_opengles20.cc 290 GLint bufLength = 0;
291 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
292 if (bufLength) {
293 char* buf = (char*) malloc(bufLength);
295 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /frameworks/native/libs/gui/tests/
GLTest.cpp 320 GLint bufLength = 0;
321 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
322 if (bufLength) {
323 char* buf = (char*) malloc(bufLength);
325 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 160 GLint bufLength = 0;
161 glGetProgramiv(pgm, GL_INFO_LOG_LENGTH, &bufLength);
162 if (bufLength) {
163 char* buf = (char*) malloc(bufLength);
165 glGetProgramInfoLog(pgm, bufLength, nullptr, buf);
  /frameworks/native/cmds/flatland/
GLHelper.cpp 374 GLint bufLength = 0;
375 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
376 if (bufLength) {
377 char* buf = new char[bufLength];
379 glGetProgramInfoLog(program, bufLength, NULL, buf);
  /frameworks/native/opengl/tests/gl2_basic/
gl2_basic.cpp 132 GLint bufLength = 0;
133 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
134 if (bufLength) {
135 char* buf = (char*) malloc(bufLength);
137 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 138 int bufLength = forEncryption ? BLOCK_SIZE : (BLOCK_SIZE + macSize);
139 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/misc/common/robolectric/android-all/
android-all-6.0.1_r3-robolectric-0.jar 
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-7.0.0_r1-robolectric-0.jar 

Completed in 683 milliseconds

1 2