HomeSort by relevance Sort by last modified time
    Searched defs:outc (Results 1 - 3 of 3) sorted by null

  /system/core/sh/
output.h 76 #define outc(c, file) (--(file)->nleft < 0? (emptyoutbuf(file), *(file)->nextc++ = (c)) : (*(file)->nextc++ = (c))) macro
77 #define out1c(c) outc(c, out1);
78 #define out2c(c) outc(c, out2);
  /system/core/libsparse/
output_file.c 282 struct output_file_callback *outc = to_output_file_callback(out); local
288 ret = outc->write(outc->priv, NULL, to_write);
306 struct output_file_callback *outc = to_output_file_callback(out); local
308 return outc->write(outc->priv, data, len);
313 struct output_file_callback *outc = to_output_file_callback(out); local
315 free(outc);
646 struct output_file_callback *outc; local
648 outc = calloc(1, sizeof(struct output_file_callback))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.cpp 776 unsigned outc = from - characters; local
778 if (outc)
779 memcpy(to, characters, outc * sizeof(CharType));
785 to[outc++] = *from++;
790 data.shrink(outc);
809 int outc = 0; local
821 to[outc++] = *from++;
823 to[outc++] = ' ';
828 if (outc > 0 && to[outc - 1] == ' '
    [all...]

Completed in 456 milliseconds