HomeSort by relevance Sort by last modified time
    Searched full:outchar (Results 1 - 6 of 6) sorted by null

  /external/ppp/pppd/
utils.c 153 #define OUTCHAR(c) (buflen > 0? (--buflen, *buf++ = (c)): 0)
248 OUTCHAR('%');
249 OUTCHAR('l');
322 OUTCHAR('M');
323 OUTCHAR('-');
327 OUTCHAR('\\');
330 OUTCHAR('\\');
332 case '\t': OUTCHAR('t'); break;
333 case '\n': OUTCHAR('n'); break;
334 case '\b': OUTCHAR('b'); break
    [all...]
  /external/curl/lib/
mprintf.c 108 #define OUTCHAR(x) \
624 OUTCHAR(*f);
637 OUTCHAR('%');
695 OUTCHAR(' ');
696 OUTCHAR((char) num);
699 OUTCHAR(' ');
773 OUTCHAR(' ');
776 OUTCHAR('-');
778 OUTCHAR('+');
780 OUTCHAR(' ');
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c 46 * values and during the floating point conversion; use the OUTCHAR() macro
437 #ifdef OUTCHAR
438 #undef OUTCHAR
439 #endif /* defined(OUTCHAR) */
440 #define OUTCHAR(str, len, size, ch) \
500 OUTCHAR(str, len, size, ch);
759 OUTCHAR(str, len, size, cvalue);
837 OUTCHAR(str, len, size, ch);
881 OUTCHAR(str, *len, size, ' ');
885 OUTCHAR(str, *len, size, *value)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstUtf8.java 273 char outChar = (char) (((c >> shift) & 7) + '0');
274 if ((outChar != '0') || displayZero) {
275 sb.append(outChar);
  /dalvik/dx/src/com/android/dx/rop/cst/
CstString.java 273 char outChar = (char) (((c >> shift) & 7) + '0');
274 if ((outChar != '0') || displayZero) {
275 sb.append(outChar);
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstString.java 273 char outChar = (char) (((c >> shift) & 7) + '0');
274 if ((outChar != '0') || displayZero) {
275 sb.append(outChar);

Completed in 167 milliseconds