Home
last modified time | relevance | path

Searched refs:outc (Results 1 – 2 of 2) sorted by relevance

/external/qemu/distrib/libsparse/src/
Doutput_file.c275 struct output_file_callback *outc = to_output_file_callback(out); in callback_file_skip() local
281 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() local
300 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() local
307 free(outc); in callback_file_close()
635 struct output_file_callback *outc; in output_file_open_callback() local
637 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 …]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
DStringImpl.cpp913 unsigned outc = from - characters; in removeCharacters() local
915 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() local
959 to[outc++] = *from++; in simplifyMatchedCharactersToSpace()
961 to[outc++] = ' '; in simplifyMatchedCharactersToSpace()
966 if (outc > 0 && to[outc - 1] == ' ') in simplifyMatchedCharactersToSpace()
967 --outc; in simplifyMatchedCharactersToSpace()
[all …]