OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iout
(Results
1 - 3
of
3
) sorted by null
/external/libpng/
pngerror.c
165
int
iout
= 0, iin = 0;
local
172
buffer[
iout
++] = PNG_LITERAL_LEFT_SQUARE_BRACKET;
173
buffer[
iout
++] = png_digit[(c & 0xf0) >> 4];
174
buffer[
iout
++] = png_digit[c & 0x0f];
175
buffer[
iout
++] = PNG_LITERAL_RIGHT_SQUARE_BRACKET;
179
buffer[
iout
++] = (png_byte)c;
184
buffer[
iout
] = '\0';
187
buffer[
iout
++] = ':';
188
buffer[
iout
++] = ' ';
192
buffer[
iout
++] = error_message[iin++]
[
all
...]
/external/qemu/distrib/libpng-1.2.19/
pngerror.c
130
int
iout
= 0, iin = 0;
local
137
buffer[
iout
++] = '[';
138
buffer[
iout
++] = png_digit[(c & 0xf0) >> 4];
139
buffer[
iout
++] = png_digit[c & 0x0f];
140
buffer[
iout
++] = ']';
144
buffer[
iout
++] = (png_byte)c;
149
buffer[
iout
] = 0;
152
buffer[
iout
++] = ':';
153
buffer[
iout
++] = ' ';
154
png_strncpy(buffer+
iout
, error_message, 63)
[
all
...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
VertexBuffer.java
823
IntBuffer
iout
= (IntBuffer) outVb.data;
local
825
iout
.position(outPos).limit(outPos + elementSz * len);
826
iout
.put(iin);
[
all
...]
Completed in 77 milliseconds