OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bufLength
(Results
1 - 6
of
6
) 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);
/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);
/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);
/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) {
/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
];
Completed in 2887 milliseconds