HomeSort by relevance Sort by last modified time
    Searched defs:outc (Results 1 - 4 of 4) 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);
  /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' );
  /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...]
  /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...]

Completed in 75 milliseconds