Home
last modified time | relevance | path

Searched refs:bufLength (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/
DShaderProgram.cpp178 GLint bufLength = 0; in createProgram() local
179 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength); in createProgram()
180 if (bufLength) { in createProgram()
181 char* buf = (char*) malloc(bufLength); in createProgram()
183 glGetProgramInfoLog(program, bufLength, 0, buf); in createProgram()
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
DGCMBlockCipher.java116 int bufLength = forEncryption ? BLOCK_SIZE : (BLOCK_SIZE + macSize); in init() local
117 this.bufBlock = new byte[bufLength]; in init()