HomeSort by relevance Sort by last modified time
    Searched refs:outc (Results 1 - 10 of 10) 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...]
  /external/webkit/Tools/android/flex-2.5.4a/
misc.c 308 outc( '\n' );
315 outc( '\n' );
470 outc( ',' );
479 outc( ',' );
497 outc( ',' );
505 outc( ',' );
690 void outc( c ) function
844 outc( '\n' );
847 outc( '\n' );
gen.c 68 outc( '\t' );
74 outc( ' ' );
124 outc( '\n' );
514 outc( '\n' );
525 outc( '\n' );
550 outc( '\n' );
677 outc( '\n' );
738 outc( '\n' );
    [all...]
flexdef.h 895 extern void outc PROTO((int));
    [all...]
  /system/core/sh/bltin/
bltin.h 56 #define putc(c, file) outc(c, file)
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringImpl.cpp 356 unsigned outc = from - m_data; local
358 if (outc)
359 memcpy(to, m_data, outc * sizeof(UChar));
365 to[outc++] = *from++;
370 data.shrink(outc);
381 int outc = 0; local
393 to[outc++] = *from++;
395 to[outc++] = ' ';
400 if (outc > 0 && to[outc - 1] == ' '
    [all...]

Completed in 153 milliseconds