HomeSort by: relevance | last modified time | path
    Searched refs:outc (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/external/gpl3/gdb/dist/sim/testsuite/avr/
testutils.inc 1 # MACRO: outc
3 .macro outc ch
17 outc 'p'
18 outc 'a'
19 outc 's'
20 outc 's'
21 outc '\n'
28 outc 'f'
29 outc 'a'
30 outc 'i
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/testsuite/avr/
testutils.inc 1 # MACRO: outc
3 .macro outc ch
17 outc 'p'
18 outc 'a'
19 outc 's'
20 outc 's'
21 outc '\n'
28 outc 'f'
29 outc 'a'
30 outc 'i
    [all...]
  /src/usr.bin/tset/
extern.h 41 int outc(int);
misc.c 62 outc(int c) function
set.c 220 tputs(reset_1string, 0, outc);
224 tputs(reset_2string, 0, outc);
255 tputs(clear_all_tabs, 0, outc);
264 tputs(out, 1, outc);
268 tputs(set_tab, 0, outc);
  /src/lib/libterminfo/
tputs.c 82 int (*outc)(int, void *), void *args)
92 outc(pc, args);
97 const char *str, int affcnt, int (*outc)(int, void *), void *args)
113 outc(*str, args);
119 _ti_outputdelay(delay, os, pc, outc, args);
125 _ti_outputdelay(taildelay, os, pc, outc, args);
132 int (*outc)(int, void *), void *args)
138 _DIAGASSERT(outc != NULL);
152 str, affcnt, outc, args);
165 tputs(const char *str, int affcnt, int (*outc)(int)
    [all...]
  /src/crypto/external/apache2/openssl/dist/fuzz/
punycode.c 27 char outc[16]; local
34 ossl_a2ulabel(b, outc, sizeof(outc));
  /src/usr.bin/unvis/
unvis.c 112 char outc; local
117 switch(ret = unvis(&outc, (char)c, &state, eflags)) {
119 (void)putchar(outc);
122 (void)putchar(outc);
136 if (unvis(&outc, (char)0, &state, eflags | UNVIS_END) == UNVIS_VALID)
137 (void)putchar(outc);
  /src/bin/sh/
output.h 103 #define outc(c, file) (--(file)->nleft < 0? (emptyoutbuf(file), *(file)->nextc++ = (c)) : (*(file)->nextc++ = (c))) macro
104 #define out1c(c) outc(c, out1)
105 #define out2c(c) outc(c, out2)
106 #define outxc(c) outc(c, outx)
output.c 159 outc((c = *p++), file);
217 outc('"', file);
219 outc('"', file);
230 outc('\'', file);
237 outc(c, file);
242 outc('\'', file); /* inq = 0, implicit */
243 outc('\\', file);
244 outc(c, file);
247 outc('\'', file);
253 outc('\'', file)
    [all...]
trap.c 156 outc(' ', out);
162 outc(' ', out);
201 outc('\n', out);
218 outc('\n', out);
jobs.c 527 outc(' ', out);
533 outc(' ', out);
534 outc('|', out);
540 outc('\n', out);
redir.c 1207 outc(sep, out);
1229 outc('-', out);
  /src/crypto/external/bsd/netpgp/dist/src/libpaa/
libpaa.c 235 int outc; local
249 outc = snprintf(out, outsize, "Authorization: PubKey.v1\r\n");
251 outc += snprintf(&out[outc], outsize - outc, " id=\"%s\"", response->userid);
252 outc += snprintf(&out[outc], outsize - outc, ",\r\n challenge=\"%s\"", challenge);
253 outc += snprintf(&out[outc], outsize - outc, ",\r\n realm=\"%s\"", response->realm)
    [all...]
  /src/external/bsd/flex/dist/src/
misc.c 280 outc ('\n');
286 outc ('\n');
423 outc (',');
432 outc (',');
452 outc (',');
460 outc (',');
594 void outc (int c) function
828 outc ('\n');
831 outc ('\n');
gen.c 92 outc ('\t');
97 outc (' ');
195 outc ('\n');
788 outc ('\n');
799 outc ('\n');
822 outc ('\n');
951 outc ('\n');
1010 outc ('\n');
flexdef.h 903 extern void outc(int);
  /src/bin/sh/bltin/
bltin.h 72 #define putc(c, file) _RETURN_INT(outc(c, file))
  /src/usr.bin/ul/
ul.c 86 static void outc(int);
288 outc(' ');
291 outc(obuf[i].c_char);
420 outc(int c) function
  /src/crypto/external/bsd/openssl.old/dist/include/internal/
constant_time.h 368 unsigned char *outc = (unsigned char *)out; local
377 *(outc + j) |= constant_time_select_8(mask, *(tablec++), 0);
  /src/crypto/external/apache2/openssl/dist/include/internal/
constant_time.h 461 unsigned char *outc = (unsigned char *)out; local
470 *(outc + j) |= constant_time_select_8(mask, *(tablec++), 0);
  /src/crypto/external/bsd/openssl/dist/include/internal/
constant_time.h 425 unsigned char *outc = (unsigned char *)out; local
434 *(outc + j) |= constant_time_select_8(mask, *(tablec++), 0);
  /src/external/gpl3/gcc/dist/libquadmath/printf/
printf_fphex.c 40 register const int outc = (ch); \
41 if (PUTC (outc, fp) == EOF) \
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
printf_fphex.c 40 register const int outc = (ch); \
41 if (PUTC (outc, fp) == EOF) \
  /src/usr.bin/ftp/
ftp.c 622 ssize_t inc, outc; local
639 inc = outc = 0;
656 outc = write(outfd, bufp, inc);
657 if (outc < 0) {
663 inc -= outc;
664 bufp += outc;
696 if (outc == -1)

Completed in 30 milliseconds

1 2