HomeSort by relevance Sort by last modified time
    Searched refs:out (Results 1 - 25 of 2024) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/sparc/pid/
err.D_PROC_ALIGN.misaligned.d 38 pid$1:a.out:main:7
  /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/font/devpost/
LINKFILE 34 # This file is used to link any missing .out files to appropriate existing
35 # .out files.
38 rm -f G.out
39 ln H.out G.out
41 rm -f GI.out
42 ln HI.out GI.out
44 rm -f HM.out
45 ln H.out HM.ou
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/
terminfo.c 59 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++ = '\b'
164 char *out; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/java_api/
tst.Bean.ksh 40 java -cp test.jar TestBean TestBean.out
41 rm -f TestBean.out
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/pid/
err.D_PROC_FUNC.badfunc.d 38 pid$1:a.out:ahl_r00lz:entry
err.D_PROC_NAME.badname.d 36 pid$1:a.out:main:beginning
  /onnv/onnv-gate/usr/src/lib/libast/common/comp/
memmove.c 35 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);
  /onnv/onnv-gate/usr/src/cmd/fmli/sys/
evalstr.c 42 IOSTRUCT *out; local
45 out = io_open(EV_USE_STRING, NULL);
46 while (eval(in, out, EV_TOKEN) != ET_EOF)
48 s = io_string(out);
49 io_close(out);
  /onnv/onnv-gate/usr/src/lib/libshell/common/tests/
sun_solaris_cr_6848486_echo_test_with_test_undefined_executes_test_builtin.sh 82 out=$($SHELL -o errexit -c 'unset test ; print ${test} ; print "#mark"' 2>&1 ) || err_exit "Shell returned error code $?, expected 0."
83 [[ "$out" == $'\n#mark' ]] || err_exit "Expected output \$'\n#mark', got '${out}'"
89 out=$($SHELL -o errexit -c 'print ${sleep} ; print "#mark"' 2>&1 ) || err_exit "Shell returned error code $?, expected 0."
90 [[ "$out" == $'\n#mark' ]] || err_exit "Expected output \$'\n#mark', got '${out}'"
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/i386/pid/
tst.badinstr.d 33 pid$1:a.out:badfunc:entry
  /onnv/onnv-gate/usr/src/lib/libpp/common/
ppsym.c 24 * 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');
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/native/
Test.java 41 System.out.println("\nThese are unit tests for the JNI code.");
42 System.out.println("They assume the existence of a jnitest/admin");
43 System.out.println("user principal, with the password 'test123',");
44 System.out.println("and the existance of a 'default' policy.\n");
50 System.out.println("==> Set up a session for jnitest/admin.\n");
53 System.out.println("*** First, one with a bogus port number.");
59 System.out.println("Unexpected success!\n");
62 System.out.println("Expected failure "+e.getMessage()+"\n");
65 System.out.println("*** Next, one with the correct port number.");
71 System.out.println("sessionInit was successful.\n")
    [all...]
  /onnv/onnv-gate/usr/src/cmd/tplot/
banner.c 138 banner(FILE *out, char *s)
145 fprintf(out, "\n\n\n\n\n\n\n\n");
148 fprintf(out, " ");
152 fprintf(out, " ");
156 putc('X', out);
158 putc(' ', out);
160 putc('\n', out);
162 fprintf(out, "\n\n\n\n\n\n\n\n");
164 fprintf(out, " ");
165 fprintf(out, ctime(&timeb))
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/asn1/
t_crl.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
85 int X509_CRL_print(BIO *out, X509_CRL *x)
93 BIO_printf(out, "Certificate Revocation List (CRL):\n");
95 BIO_printf(out, "%8sVersion %lu (0x%lx)\n", "", l+1, l);
97 BIO_printf(out, "%8sSignature Algorithm: %s\n", "",
100 BIO_printf(out,"%8sIssuer: %s\n","",p);
102 BIO_printf(out,"%8sLast Update: ","");
103 ASN1_TIME_print(out,X509_CRL_get_lastUpdate(x));
104 BIO_printf(out,"\n%8sNext Update: ","");
106 ASN1_TIME_print(out,X509_CRL_get_nextUpdate(x))
    [all...]
t_x509a.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
68 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent)
75 BIO_printf(out, "%*sTrusted Uses:\n%*s",
78 if(!first) BIO_puts(out, ", ");
82 BIO_puts(out, oidstr);
84 BIO_puts(out, "\n");
85 } else BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
88 BIO_printf(out, "%*sRejected Uses:\n%*s",
91 if(!first) BIO_puts(out, ", ");
95 BIO_puts(out, oidstr)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/translators/
tst.PartialDereferencing.d 56 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.oc)
    [all...]
tst.StructureAssignment.d 56 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.oc)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/audio/include/
Resample.h 39 * 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);
  /onnv/onnv-gate/usr/src/cmd/sendmail/libsm/
t-fopen.c 26 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);
  /onnv/onnv-gate/usr/src/lib/libldap4/ber/
bprint.c 26 char out[ BPLEN ]; local
29 (void) memset( out, 0, BPLEN );
32 (void) fprintf( stderr, "\t%s\n", ( i == 0 ) ? catgets(slapdcat, 1, 72, "(end)") : out );
38 out[ i ] = ' ';
39 out[ i+1 ] = *data;
42 out[ i ] = hexdig[ ( *data & 0xf0 ) >> 4 ];
43 out[ i+1 ] = hexdig[ *data & 0x0f ];
52 (void) fprintf( stderr, "\t%s\n", out );
53 (void) memset( out, 0, BPLEN );
57 out[ i++ ] = ' '
    [all...]
  /onnv/onnv-gate/usr/src/lib/libldap5/sources/ldap/ber/
bprint.c 45 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[ i++ ] = ' '
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/ecdh/
ecdhtest.c 60 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
109 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen)
116 return SHA1(in, inlen, out);
123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out)
146 BIO_puts(out,"Testing key generation with ");
147 BIO_puts(out,text);
149 BIO_puts(out,"\n");
151 BIO_flush(out);
167 BIO_puts(out," pri 1=");
168 BN_print(out,a->priv_key)
303 BIO *out; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/sun4/sys/
clock.h 139 * (2) Out-of-order loads.
141 * 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; /* out = lo32(tick<<4) = L */
    [all...]
  /onnv/onnv-gate/usr/src/common/crypto/ecc/
ec_naf.c 63 /* Computes the windowed non-adjacent-form (NAF) of a scalar. Out should
65 * 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)
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)
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/lhash/
lh_stats.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
73 void lh_stats(LHASH *lh, FILE *out)
75 fprintf(out,"num_items = %lu\n",lh->num_items);
76 fprintf(out,"num_nodes = %u\n",lh->num_nodes);
77 fprintf(out,"num_alloc_nodes = %u\n",lh->num_alloc_nodes);
78 fprintf(out,"num_expands = %lu\n",lh->num_expands);
79 fprintf(out,"num_expand_reallocs = %lu\n",lh->num_expand_reallocs);
80 fprintf(out,"num_contracts = %lu\n",lh->num_contracts);
81 fprintf(out,"num_contract_reallocs = %lu\n",lh->num_contract_reallocs)
    [all...]

Completed in 720 milliseconds

1 2 3 4 5 6 7 8 91011>>