Searched refs:outc (Results 1 – 2 of 2) sorted by relevance
275 struct output_file_callback *outc = to_output_file_callback(out); in callback_file_skip() local281 ret = outc->write(outc->priv, NULL, to_write); in callback_file_skip()298 struct output_file_callback *outc = to_output_file_callback(out); in callback_file_write() local300 return outc->write(outc->priv, data, len); in callback_file_write()305 struct output_file_callback *outc = to_output_file_callback(out); in callback_file_close() local307 free(outc); in callback_file_close()635 struct output_file_callback *outc; in output_file_open_callback() local637 outc = calloc(1, sizeof(struct output_file_callback)); in output_file_open_callback()638 if (!outc) { in output_file_open_callback()643 outc->out.ops = &callback_file_ops; in output_file_open_callback()[all …]
913 unsigned outc = from - characters; in removeCharacters() local915 if (outc) in removeCharacters()916 memcpy(to, characters, outc * sizeof(CharType)); in removeCharacters()922 to[outc++] = *from++; in removeCharacters()927 data.shrink(outc); in removeCharacters()946 int outc = 0; in simplifyMatchedCharactersToSpace() local959 to[outc++] = *from++; in simplifyMatchedCharactersToSpace()961 to[outc++] = ' '; in simplifyMatchedCharactersToSpace()966 if (outc > 0 && to[outc - 1] == ' ') in simplifyMatchedCharactersToSpace()967 --outc; in simplifyMatchedCharactersToSpace()[all …]