Home
last modified time | relevance | path

Searched refs:intbuf (Results 1 – 5 of 5) sorted by relevance

/external/valgrind/VEX/priv/
Dmain_util.c344 HChar intbuf[100]; /* big enough for a 64-bit # in base 2 */ in vprintf_wrk() local
428 convert_int(intbuf, l, 10/*base*/, True/*signed*/, in vprintf_wrk()
431 len2 = vex_strlen(intbuf); in vprintf_wrk()
434 PAD(len1); PUTSTR(intbuf); PAD(len3); in vprintf_wrk()
450 convert_int(intbuf, l, base, False/*unsigned*/, hexcaps); in vprintf_wrk()
452 len2 = vex_strlen(intbuf); in vprintf_wrk()
455 PAD(len1); PUTSTR(intbuf); PAD(len3); in vprintf_wrk()
462 convert_int(intbuf, l, 16/*base*/, False/*unsigned*/, hexcaps); in vprintf_wrk()
464 len2 = vex_strlen(intbuf)+2; in vprintf_wrk()
467 PAD(len1); PUT('0'); PUT('x'); PUTSTR(intbuf); PAD(len3); in vprintf_wrk()
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
DShaderProgram.java205 IntBuffer intbuf = BufferUtils.newIntBuffer(1); in loadShader() local
212 gl.glGetShaderiv(shader, GL20.GL_COMPILE_STATUS, intbuf); in loadShader()
214 int compiled = intbuf.get(0); in loadShader()
244 IntBuffer intbuf = tmp.asIntBuffer(); in linkProgram() local
246 gl.glGetProgramiv(program, GL20.GL_LINK_STATUS, intbuf); in linkProgram()
247 int linked = intbuf.get(0); in linkProgram()
260 final static IntBuffer intbuf = BufferUtils.newIntBuffer(1); field in ShaderProgram
DGLFrameBuffer.java136 …IntBuffer intbuf = ByteBuffer.allocateDirect(16 * Integer.SIZE / 8).order(ByteOrder.nativeOrder())… in build() local
137 gl.glGetIntegerv(GL20.GL_FRAMEBUFFER_BINDING, intbuf); in build()
138 defaultFramebufferHandle = intbuf.get(0); in build()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_resize.c519 uint8_t *intbuf = (uint8_t *)malloc(sizeof(uint8_t) * width2 * height); in vp9_resize_plane() local
529 intbuf + width2 * i, width2, tmpbuf); in vp9_resize_plane()
531 fill_col_to_arr(intbuf + i, width2, height, arrbuf); in vp9_resize_plane()
535 free(intbuf); in vp9_resize_plane()
815 uint16_t *intbuf = (uint16_t *)malloc(sizeof(uint16_t) * width2 * height); in vp9_highbd_resize_plane() local
821 intbuf + width2 * i, width2, tmpbuf, bd); in vp9_highbd_resize_plane()
824 highbd_fill_col_to_arr(intbuf + i, width2, height, arrbuf); in vp9_highbd_resize_plane()
830 free(intbuf); in vp9_highbd_resize_plane()
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
DMultipleRenderTargetTest.java517 … IntBuffer intbuf = ByteBuffer.allocateDirect(16 * Integer.SIZE / 8).order(ByteOrder.nativeOrder()) in build() local
519 gl.glGetIntegerv(GL20.GL_FRAMEBUFFER_BINDING, intbuf); in build()
520 defaultFramebufferHandle = intbuf.get(0); in build()