/external/smali/util/src/main/java/org/jf/util/ |
D | IndentingWriter.java | 178 int bufferIndex = 23; in printUnsignedLongAsHex() local 182 buffer[bufferIndex--] = (char)(digit + '0'); in printUnsignedLongAsHex() 184 buffer[bufferIndex--] = (char)((digit - 10) + 'a'); in printUnsignedLongAsHex() 190 bufferIndex++; in printUnsignedLongAsHex() 192 writeLine(buffer, bufferIndex, 24-bufferIndex); in printUnsignedLongAsHex() 196 int bufferIndex = 23; in printSignedLongAsDec() local 205 buffer[bufferIndex--] = (char)(digit + '0'); in printSignedLongAsDec() 210 bufferIndex++; in printSignedLongAsDec() 212 writeLine(buffer, bufferIndex, 24-bufferIndex); in printSignedLongAsDec() 216 int bufferIndex = 15; in printSignedIntAsDec() local [all …]
|
/external/icu/icu4c/source/i18n/ |
D | ucoleitr.cpp | 62 int32_t bufferIndex; member 76 bufferIndex = 0; in RCEBuffer() 89 return bufferIndex <= 0; in empty() 94 if (bufferIndex >= bufferSize) { in put() 107 buffer[bufferIndex].ce = ce; in put() 108 buffer[bufferIndex].low = ixLow; in put() 109 buffer[bufferIndex].high = ixHigh; in put() 111 bufferIndex += 1; in put() 116 if (bufferIndex > 0) { in get() 117 return &buffer[--bufferIndex]; in get() [all …]
|
D | usrchimp.h | 65 int32_t bufferIndex; member
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | ucoleitr.cpp | 59 int32_t bufferIndex; member 73 bufferIndex = 0; in RCEBuffer() 86 return bufferIndex <= 0; in empty() 91 if (bufferIndex >= bufferSize) { in put() 104 buffer[bufferIndex].ce = ce; in put() 105 buffer[bufferIndex].low = ixLow; in put() 106 buffer[bufferIndex].high = ixHigh; in put() 108 bufferIndex += 1; in put() 113 if (bufferIndex > 0) { in get() 114 return &buffer[--bufferIndex]; in get() [all …]
|
/external/chromium_org/third_party/skia/src/utils/ |
D | SkMD5.cpp | 36 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F); in update() local 37 unsigned int bufferAvailable = 64 - bufferIndex; in update() 41 if (bufferIndex) { in update() 42 memcpy(&this->buffer[bufferIndex], input, bufferAvailable); in update() 53 bufferIndex = 0; in update() 58 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex); in update() 69 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F); in finish() local 70 unsigned int paddingLength = (bufferIndex < 56) ? (56 - bufferIndex) : (120 - bufferIndex); in finish()
|
D | SkSHA1.cpp | 34 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F); in update() local 35 unsigned int bufferAvailable = 64 - bufferIndex; in update() 39 if (bufferIndex) { in update() 40 memcpy(&this->buffer[bufferIndex], input, bufferAvailable); in update() 51 bufferIndex = 0; in update() 56 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex); in update() 67 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F); in finish() local 68 unsigned int paddingLength = (bufferIndex < 56) ? (56 - bufferIndex) : (120 - bufferIndex); in finish()
|
/external/skia/src/utils/ |
D | SkMD5.cpp | 36 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F); in update() local 37 unsigned int bufferAvailable = 64 - bufferIndex; in update() 41 if (bufferIndex) { in update() 42 memcpy(&this->buffer[bufferIndex], input, bufferAvailable); in update() 53 bufferIndex = 0; in update() 58 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex); in update() 69 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F); in finish() local 70 unsigned int paddingLength = (bufferIndex < 56) ? (56 - bufferIndex) : (120 - bufferIndex); in finish()
|
D | SkSHA1.cpp | 34 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F); in update() local 35 unsigned int bufferAvailable = 64 - bufferIndex; in update() 39 if (bufferIndex) { in update() 40 memcpy(&this->buffer[bufferIndex], input, bufferAvailable); in update() 51 bufferIndex = 0; in update() 56 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex); in update() 67 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F); in finish() local 68 unsigned int paddingLength = (bufferIndex < 56) ? (56 - bufferIndex) : (120 - bufferIndex); in finish()
|
/external/mesa3d/src/mesa/main/ |
D | buffers.h | 51 _mesa_readbuffer(struct gl_context *ctx, GLenum buffer, GLint bufferIndex);
|
D | buffers.c | 497 _mesa_readbuffer(struct gl_context *ctx, GLenum buffer, GLint bufferIndex) in _mesa_readbuffer() argument 509 fb->_ColorReadBufferIndex = bufferIndex; in _mesa_readbuffer()
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | buffers.h | 51 _mesa_readbuffer(struct gl_context *ctx, GLenum buffer, GLint bufferIndex);
|
D | buffers.c | 497 _mesa_readbuffer(struct gl_context *ctx, GLenum buffer, GLint bufferIndex) in _mesa_readbuffer() argument 509 fb->_ColorReadBufferIndex = bufferIndex; in _mesa_readbuffer()
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
D | GlyphPageTreeNodeTest.cpp | 46 unsigned bufferIndex = 0; in fillGlyphPage() local 49 UChar32 c = bufferString.characterStartingAt(bufferIndex); in fillGlyphPage() 50 bufferIndex += U16_LENGTH(c); in fillGlyphPage()
|
/external/deqp/modules/gles31/functional/ |
D | es31fBasicComputeShaderTests.cpp | 1493 …const deUint32 bufferIndex = getProgramResourceUint(gl, program.getProgram(), GL_UNIFORM, uniform… in iterate() local 1494 …rogramResourceUint(gl, program.getProgram(), GL_ATOMIC_COUNTER_BUFFER, bufferIndex, GL_BUFFER_DATA… in iterate() 1527 …const deUint32 bufferIndex = getProgramResourceUint(gl, program.getProgram(), GL_UNIFORM, unifor… in iterate() local 1528 …rogramResourceUint(gl, program.getProgram(), GL_ATOMIC_COUNTER_BUFFER, bufferIndex, GL_BUFFER_DATA… in iterate()
|
/external/deqp/framework/platform/null/ |
D | tcuNullRenderContextFuncs.inl | 3411 GLW_APICALL void GLW_APIENTRY glGetActiveAtomicCounterBufferiv (GLuint program, GLuint bufferIndex,… argument 3414 DE_UNREF(bufferIndex);
|
/external/deqp/framework/opengl/wrapper/ |
D | glwImpl.inl | 3901 void glwGetActiveAtomicCounterBufferiv (GLuint program, GLuint bufferIndex, GLenum pname, GLint* pa… argument 3906 gl->getActiveAtomicCounterBufferiv(program, bufferIndex, pname, params);
|
D | glwFunctionTypes.inl | 491 …NTRY* glGetActiveAtomicCounterBufferivFunc) (GLuint program, GLuint bufferIndex, GLenum pname, …
|
D | glwApi.inl | 1037 void glwGetActiveAtomicCounterBufferiv (GLuint program, GLuint bufferIndex, GLenum pname, GLin…
|
/external/deqp/framework/opengl/ |
D | gluCallLogWrapperApi.inl | 491 void glGetActiveAtomicCounterBufferiv (glw::GLuint program, glw::GLuint bufferIndex, glw::GLe…
|
/external/mesa3d/include/GL/ |
D | glext.h | 8522 GLAPI void APIENTRY glGetActiveAtomicCounterBufferiv (GLuint program, GLuint bufferIndex, GLenum pn… 8524 …NTRYP PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC) (GLuint program, GLuint bufferIndex, GLenum pname, …
|
/external/chromium_org/third_party/mesa/src/include/GL/ |
D | glext.h | 8532 GLAPI void APIENTRY glGetActiveAtomicCounterBufferiv (GLuint program, GLuint bufferIndex, GLenum pn… 8534 …NTRYP PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC) (GLuint program, GLuint bufferIndex, GLenum pname, …
|