HomeSort by relevance Sort by last modified time
    Searched full:buflength (Results 1 - 17 of 17) sorted by null

  /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);
  /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/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);
  /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);
  /frameworks/base/libs/rs/driver/
rsdShaderCache.cpp 164 GLint bufLength = 0;
165 glGetProgramiv(pgm, GL_INFO_LOG_LENGTH, &bufLength);
166 if (bufLength) {
167 char* buf = (char*) malloc(bufLength);
169 glGetProgramInfoLog(pgm, bufLength, NULL, buf);
  /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);
  /frameworks/base/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/base/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/base/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;
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 116 int bufLength = forEncryption ? BLOCK_SIZE : (BLOCK_SIZE + macSize);
117 this.bufBlock = new byte[bufLength];
  /external/webkit/Source/WebCore/platform/graphics/android/
ShaderProgram.cpp 178 GLint bufLength = 0;
179 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
180 if (bufLength) {
181 char* buf = (char*) malloc(bufLength);
183 glGetProgramInfoLog(program, bufLength, 0, buf);
  /frameworks/base/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...]
  /frameworks/base/libs/gui/tests/
SurfaceTexture_test.cpp 253 GLint bufLength = 0;
254 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
255 if (bufLength) {
256 char* buf = (char*) malloc(bufLength);
258 glGetProgramInfoLog(program, bufLength, NULL, buf);
    [all...]
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 286 int bufLength = 0;
306 bufLength += offset - begin;
323 bufLength +=scale;
349 if (bufLength < 19) {
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]

Completed in 1224 milliseconds