HomeSort by relevance Sort by last modified time
    Searched refs:outc (Results 1 - 7 of 7) 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);
output.c 137 outc(*p++, file);
254 outc('\0', &strout);
314 outc(c, dest);
388 outc('0', dest);
389 outc('x', dest);
427 outc(' ', dest);
431 outc('-', dest);
434 outc('0', dest);
436 outc(*p++, dest);
438 outc(' ', dest)
    [all...]
jobs.c 478 outc(' ', out);
484 outc(' ', out);
485 outc('|', out);
491 outc('\n', out);
eval.c 767 outc(sep, &errout);
773 outc(sep, &errout);
777 outc('\n', &errout);
  /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...]
  /system/core/sh/bltin/
bltin.h 56 #define putc(c, file) outc(c, file)
  /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 382 milliseconds