Searched refs:out (Results 1 - 25 of 1666) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/dtrace/test/tst/sparc/pid/
H A Derr.D_PROC_ALIGN.misaligned.d38 pid$1:a.out:main:7
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dterminfo.c59 char *out; local
61 out = out_buffer;
70 *out = (*in) - 'A';
75 *out = '^';
91 *out++ = (char)(n & 0xff);
103 *out++ = '\e';
106 *out++ = '\n';
109 *out++ = '\r';
112 *out++ = '\t';
115 *out
164 char *out; local
[all...]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/java_api/
H A Dtst.Bean.ksh40 java -cp test.jar TestBean TestBean.out
41 rm -f TestBean.out
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/pid/
H A Derr.D_PROC_FUNC.badfunc.d38 pid$1:a.out:ahl_r00lz:entry
H A Derr.D_PROC_NAME.badname.d36 pid$1:a.out:main:beginning
H A Dtst.weak1.d56 pid$1:a.out:go:entry,
57 pid$1:a.out:_go:entry
63 pid$1:a.out:go:entry,
64 pid$1:a.out:_go:entry
71 pid$1:a.out:go:entry,
72 pid$1:a.out:_go:entry
81 trace("test timed out");
H A Dtst.weak2.d56 pid$1:a.out:go:entry,
57 pid$1:a.out:_go:entry
63 pid$1:a.out:go:entry,
64 pid$1:a.out:_go:entry
71 pid$1:a.out:go:entry,
72 pid$1:a.out:_go:entry
81 trace("test timed out");
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/json/
H A Dtst.strsize.d30 out = json(in, "a");
31 printf("|%s|\n%s\n\n", in, out != NULL ? out : "<NULL>");
34 out = json(in, "a");
35 printf("|%s|\n%s\n\n", in, out != NULL ? out : "<NULL>");
38 out = json(in, "b");
39 printf("|%s|\n%s\n\n", in, out != NULL ? out : "<NULL>");
42 out
[all...]
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dmemmove.c35 register char* out = (char*)to;
40 else if (in + n <= out || out + n <= in)
42 else if (out < in)
43 do *out++ = *in++; while (--n > 0);
46 out += n;
48 do *--out = *--in; while(--n > 0);
/illumos-gate/usr/src/lib/libshell/common/tests/
H A Dsun_solaris_cr_6848486_echo_test_with_test_undefined_executes_test_builtin.sh81 out=$($SHELL -o errexit -c 'unset test ; print ${test} ; print "#mark"' 2>&1 ) || err_exit "Shell returned error code $?, expected 0."
82 [[ "$out" == $'\n#mark' ]] || err_exit "Expected output \$'\n#mark', got '${out}'"
88 out=$($SHELL -o errexit -c 'print ${sleep} ; print "#mark"' 2>&1 ) || err_exit "Shell returned error code $?, expected 0."
89 [[ "$out" == $'\n#mark' ]] || err_exit "Expected output \$'\n#mark', got '${out}'"
H A Dsun_solaris_compound_nameref.sh105 ) | out=$( ${SHELL} ) || err_exit "shell returned exit code $?"
107 (( ${ wc -l <<<"${out}" ; } == 4 )) || err_exit "Expected four lines of output, got ${out}"
108 (set -o errexit ; read -C tmp <<<"${out}" ; [[ "$(typeset +p tmp.nodes)" == *-A* ]]) || err_exit "missing variable tmp.nodes"
109 (set -o errexit ; read -C tmp <<<"${out}" ; [[ -v tmp.nodesnum ]]) || err_exit "missing variable tmp.nodesnum"
130 ) | out=$( ${SHELL} ) || err_exit "shell returned exit code $?"
131 [[ "${out}" == "Ok" ]] || err_exit "Expected 'Ok', got ${out}"
158 ) | out=$( ${SHELL} ) || err_exit "shell returned exit code $?"
159 [[ "${out}"
[all...]
/illumos-gate/usr/src/lib/libpp/common/
H A Dppsym.c24 * with no args stdin is treated as an a.out for
40 Sfio_t* out; local
43 if (dup(3) < 0 || !(out = sfnew(NiL, NiL, -1, 3, SF_WRITE)))
44 out = sfstdout;
50 while (*s && *s != '=') sfputc(out, *s++);
51 sfputc(out, '\n');
73 sfputc(out, c);
79 sfputc(out, c);
86 sfputc(out, '\n');
/illumos-gate/usr/src/cmd/dtrace/test/tst/i386/pid/
H A Dtst.badinstr.d33 pid$1:a.out:badfunc:entry
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/translators/
H A Dtst.PartialDereferencing.d56 struct output_struct out;
65 out.oi = xlate < struct output_struct > (in).oi;
67 printf("out.oi: %d\t out.oc: %d\n", out.oi, out.oc);
71 /(100 != out.oi) || (0 != out.oc)/
77 /(100 == out.oi) && (0 == out
[all...]
H A Dtst.StructureAssignment.d56 struct output_struct out;
65 out = xlate < struct output_struct > (in);
67 printf("out.oi: %d\t out.oc: %d\n", out.oi, out.oc);
71 /(100 != out.oi) || (0 != out.oc)/
77 /(100 == out.oi) && (0 == out
[all...]
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dt-fopen.c26 SM_FILE_T *out; local
29 out = sm_io_fopen("foo", O_WRONLY|O_APPEND|O_CREAT, 0666);
30 SM_TEST(out != NULL);
31 if (out != NULL)
33 (void) sm_io_fprintf(out, SM_TIME_DEFAULT, "foo\n");
34 r = sm_io_getinfo(out, SM_IO_WHAT_MODE, &m);
37 sm_io_close(out, SM_TIME_DEFAULT);
/illumos-gate/usr/src/cmd/audio/include/
H A DResample.h39 * 3) down-sampled to fo by saving one out of every M samples.
63 int decimate_noadjust(short *in, int size, short *out);
65 int decimate(short *in, int size, short *out);
68 int interpolate_noadjust(short *in, int size, short *out);
70 int interpolate(short *in, int size, short *out);
72 int flush(short *out);
76 virtual int filter_noadjust(short *in, int size, short *out);
77 virtual int filter(short *in, int size, short *out);
/illumos-gate/usr/src/lib/libldap5/sources/ldap/ber/
H A Dbprint.c45 char out[ BPLEN ]; local
48 memset( out, 0, BPLEN );
52 sprintf( msg, "\t%s\n", ( i == 0 ) ? "(end)" : out );
59 out[ i ] = ' ';
60 out[ i+1 ] = *data;
63 out[ i ] = hexdig[ ( *data & 0xf0 ) >> 4 ];
64 out[ i+1 ] = hexdig[ *data & 0x0f ];
74 sprintf( msg, "\t%s\n", out );
76 memset( out, 0, BPLEN );
80 out[
[all...]
/illumos-gate/usr/src/uts/sun4/sys/
H A Dclock.h141 * On a CPU that does out-of-order loads we must ensure that the loads
244 #define NATIVE_TIME_TO_NSEC_SCALE(out, scr1, scr2, shift) \
245 srlx out, 32, scr2; /* check high 32 bits */ \
248 mulx out, scr1, out; /* delay: 32-bit fast path */ \
249 sllx out, shift, out; /* clear NPT and pre-scale */ \
250 srlx out, 32, scr2; /* scr2 = hi32(tick<<4) = H */ \
252 srl out, 0, out; /* ou
[all...]
/illumos-gate/usr/src/common/crypto/ecc/
H A Dec_naf.c65 * of bits of out, in is the original scalar, and w is the window size.
70 ec_compute_wNAF(signed char *out, int bitsize, const mp_int *in, int w) argument
86 out[i] = MP_DIGIT(&k, 0) & mask;
87 if (out[i] >= twowm1)
88 out[i] -= 2 * twowm1;
90 /* Subtract off out[i]. Note mp_sub_d only works with
92 if (out[i] >= 0) {
93 mp_sub_d(&k, out[i], &k);
95 mp_add_d(&k, -(out[i]), &k);
98 out[
[all...]
/illumos-gate/usr/src/uts/sun4v/sys/
H A Dmachclock.h55 #define RD_STICK(out, scr1, scr2, label) \
59 rd STICK, out; \
64 sllx out, 1, out; \
65 srlx out, 1, out; \
66 add out, scr1, out
79 #define RD_CLOCK_TICK(out, scr1, scr2, label) \
81 RD_STICK(out,scr
[all...]
/illumos-gate/usr/src/cmd/dtrace/test/tst/i386/ustack/
H A Dtst.annotated.d31 pid$1:a.out:baz:entry
H A Dtst.helper.d40 pid$1:a.out:baz:entry
/illumos-gate/usr/src/cmd/dtrace/test/tst/sparc/ustack/
H A Dtst.annotated.d31 pid$1:a.out:baz:entry
H A Dtst.helper.d40 pid$1:a.out:baz:entry

Completed in 128 milliseconds

1234567891011>>