Lines Matching refs:current
48 uint32_t *current;
51 #define CURRENT_LEN(s) (((char *)s->current - (char *)s->stream))
76 stream->current = stream->stream;
90 stream->current = stream->stream + (current_len>>2);
114 memcpy(stream->current, &header, sizeof(header));
115 stream->current += 2;
117 memcpy(stream->current, glyphs, header.count);
118 stream->current += ((int)header.count+3)>>2;
140 memcpy(stream->current, &header, sizeof(header));
141 stream->current += 2;
143 memcpy(stream->current, glyphs, header.count*sizeof(*glyphs));
144 stream->current += ((int)header.count*sizeof(*glyphs)+3)>>2;
166 memcpy(stream->current, &header, sizeof(header));
167 stream->current += 2;
169 memcpy(stream->current, glyphs, header.count*sizeof(*glyphs));
170 stream->current += header.count;
187 memcpy(stream->current, &header, sizeof(header));
188 stream->current += 2;
190 *stream->current = glyphset;
191 stream->current++;