Searched refs:iout (Results 1 – 4 of 4) sorted by relevance
/external/qemu/distrib/libpng-1.2.19/ |
D | pngerror.c | 130 int iout = 0, iin = 0; in png_format_buffer() local 137 buffer[iout++] = '['; in png_format_buffer() 138 buffer[iout++] = png_digit[(c & 0xf0) >> 4]; in png_format_buffer() 139 buffer[iout++] = png_digit[c & 0x0f]; in png_format_buffer() 140 buffer[iout++] = ']'; in png_format_buffer() 144 buffer[iout++] = (png_byte)c; in png_format_buffer() 149 buffer[iout] = 0; in png_format_buffer() 152 buffer[iout++] = ':'; in png_format_buffer() 153 buffer[iout++] = ' '; in png_format_buffer() 154 png_strncpy(buffer+iout, error_message, 63); in png_format_buffer() [all …]
|
/external/libpng/ |
D | pngerror.c | 165 int iout = 0, iin = 0; in png_format_buffer() local 172 buffer[iout++] = PNG_LITERAL_LEFT_SQUARE_BRACKET; in png_format_buffer() 173 buffer[iout++] = png_digit[(c & 0xf0) >> 4]; in png_format_buffer() 174 buffer[iout++] = png_digit[c & 0x0f]; in png_format_buffer() 175 buffer[iout++] = PNG_LITERAL_RIGHT_SQUARE_BRACKET; in png_format_buffer() 179 buffer[iout++] = (png_byte)c; in png_format_buffer() 184 buffer[iout] = '\0'; in png_format_buffer() 187 buffer[iout++] = ':'; in png_format_buffer() 188 buffer[iout++] = ' '; in png_format_buffer() 192 buffer[iout++] = error_message[iin++]; in png_format_buffer() [all …]
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
D | VertexBuffer.java | 823 IntBuffer iout = (IntBuffer) outVb.data; in copyElements() local 825 iout.position(outPos).limit(outPos + elementSz * len); in copyElements() 826 iout.put(iin); in copyElements()
|
/external/libvorbis/lib/ |
D | psy.c | 1073 int *iout = &iwork[k][i]; in _vp_couple_quantize_normalize() local 1077 floor[k][j] = FLOOR1_fromdB_LOOKUP[iout[j]]; in _vp_couple_quantize_normalize() 1087 acc[track]=noise_normalize(p,limit,raw[k],quant[k],floor[k],NULL,acc[track],i,jn,iout); in _vp_couple_quantize_normalize() 1095 iout[j]=0; in _vp_couple_quantize_normalize()
|