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

1234567891011>>

/osnet-11/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...]
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Code/Java/
H A DFunc_loop.java3 System.out.println("Function C");
8 System.out.println("Function B");
12 System.out.println("Function A");
H A DFunc_abc.java3 System.out.println("Function C");
9 System.out.println("Function B");
16 System.out.println("Function A");
/osnet-11/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');
/osnet-11/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);
/osnet-11/usr/src/lib/libldap4/ber/
H A Dbprint.c26 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[
[all...]
/osnet-11/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...]
/osnet-11/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...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dinit_keyblock.c38 size_t length, krb5_keyblock **out)
40 return krb5int_c_init_keyblock (context, enctype, length, out);
37 krb5_init_keyblock(krb5_context context, krb5_enctype enctype, size_t length, krb5_keyblock **out) argument
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Term/
H A DComplete.t30 my $out = tie *STDOUT, 'FakeOut';
37 like( $$out, qr/fro\a/, 'found bell character' );
40 is( $out->scrub(), 1, '(single) bell removed');
43 like( $$out, qr/$data/, 'all three words possible' );
44 $out->clear();
49 $out->scrub();
50 is( $$out, get_expected('frob', 'frobnitz', 'frobozz'), 'expected frob*' );
51 $out->clear();
56 $out->scrub();
57 is( $$out, get_expecte
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Simple/t/
H A Doutput.t36 my $out = $Test->output('foo');
38 ok( defined $out );
40 print $out "hi!\n";
41 close *$out;
43 undef $out;
51 $out = $Test->output(\*FOO);
52 $old = select *$out;
54 close *$out;
55 undef $out;
67 $out
[all...]
H A Dis_deeply.t17 my($out, $err) = Test::Simple::Catch::caught();
81 is( $out, "not ok 1 - plain strings\n", 'plain strings' );
91 is( $out, "not ok 2 - different types\n", 'different types' );
101 is( $out, "not ok 3 - hashes with different values\n",
112 is( $out, "not ok 4 - hashes with different keys\n",
123 is( $out, "not ok 5 - arrays of different length\n",
134 is( $out, "not ok 6 - arrays of undefs\n", 'arrays of undefs' );
144 is( $out, "not ok 7 - hashes of undefs\n", 'hashes of undefs' );
154 is( $out, "not ok 8 - scalar refs\n", 'scalar refs' );
164 is( $out, "no
[all...]
/osnet-11/usr/src/lib/libast/common/misc/
H A Dsystrace.c37 register char* out; local
49 out = buf;
50 out += sfsprintf(out, sizeof(buf), "%s/.%s/%s", s, trace[0], id);
57 av[5] = out + 1;
61 sfsprintf(out, &buf[sizeof(buf)] - out, ".%d", getpid());
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/t/
H A Dpush.t29 my $out = tie *STDOUT, 'TieOut';
41 like( $$out, '/WARNING: YOUR BROWSER/', 'unsupported browser warning' );
44 is( ($$out =~ s/next page//g), 2, 'next_page callback called appropriately' );
45 is( ($$out =~ s/last page//g), 1, 'last_page callback called appropriately' );
48 $$out = '';
50 like( $$out, '/Content-[Tt]ype: fake/', 'set custom Content-type' );
54 $$out = '';
67 like( $$out, '/ype: text\/plain/', 'set custom Content-type in next_page()' );
68 is( $$out =~ s/arduk//g, 1, 'found text from next_page()' );
H A Dcharset.t19 my $out = $q->header('text/plain');
20 like($out, qr{Content-Type: text/plain; charset=UTF-8}, "setting charset alters header of text/plain");
24 my $out = $q->header('application/json');
25 like($out, qr{Content-Type: application/json; charset=UTF-8}, "setting charset alters header of application/json");
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/crypto/aes/
H A Daes_s2k.c52 krb5_data out; local
91 out.data = (char *) key->contents;
92 out.length = key->length;
94 err = krb5int_pbkdf2_hmac_sha1 (context, &out, iter_count, key->enctype,
97 memset(out.data, 0, out.length);
106 * gets out-of-sync with the original key when the contents
113 memset(out.data, 0, out.length);
119 memset(out
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/t/
H A Dconcise.t13 $out = runperl(switches => ["-MO=Concise"], prog => '$a', stderr => 1);
18 ($op_base) = ($out =~ /^(\d+)\s*<0>\s*enter/m);
23 = ($out =~ /^(\d+)\s*<;>\s*nextstate\(main (-?\d+) /m);
31 $out = runperl(
37 like($out, qr/print/, "-exec option with ||=");
/osnet-11/usr/src/lib/libsqlite/src/
H A Dencode.c113 ** The result is written into a preallocated output buffer "out".
114 ** "out" must be able to hold at least 2 +(257*n)/254 bytes.
122 ** If out==NULL then no output is generated but the routine still returns
123 ** the number of characters that would have been generated if out had
126 int sqlite_encode_binary(const unsigned char *in, int n, unsigned char *out){ argument
131 if( out ){
132 out[0] = 'x';
133 out[1] = 0;
150 if( out==0 ){
153 out[
178 sqlite_decode_binary(const unsigned char *in, unsigned char *out) argument
202 unsigned char out[33000]; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DDumpvalue.t65 my $out = tie *OUT, 'TieOut';
71 is( $out->read, "0..2 1 2 3\n", 'DumpElem worked on array ref');
73 is( $out->read, "'one' => 1, 'two' => 2\n", 'DumpElem worked on hash ref' );
75 is( $out->read, "'hi'\n", 'DumpElem worked on simple scalar' );
78 like( $out->read, qr/ARRAY/, 'DumpElem okay with reference and no veryCompact');
83 is( $out->read, "0..2 1 2 3\n", 'dumped array fine' );
86 is( $out->read, "0..2 1 2 ...\n", 'dumped limited array fine' );
90 is( $out->read, "'a' => 1, 'b' => 2, 'c' => 3\n", 'dumped hash fine' );
93 is( $out->read, "'a' => 1, 'b' => 2 ...\n", 'dumped limited hash fine' );
98 like( $out
[all...]
/osnet-11/usr/src/lib/libshell/common/edit/
H A Dcompletion.c211 register char *out; local
247 out = outbuff + *cur + (sh_isoption(SH_VI)!=0);
255 char *last = out;
256 c = *(unsigned char*)out;
258 begin = out = find_begin(outbuff,last,0,&var);
263 stakwrite(out,last-out);
265 out = last;
270 while(out < last)
272 c = *(unsigned char*)out;
507 register char *out; local
[all...]
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-menulst2cfg.c32 FILE *in, *out; local
60 out = fopen (argv[2], "w");
61 if (!out)
71 out = stdout;
96 fprintf (out, "}\n\n");
100 fprintf (out, "menuentry \'%s\' {\n", escaped);
107 fprintf (out, "%s%s", entryname ? " " : "", parsed);
113 fprintf (out, "}\n\n");
115 fwrite (suffix, 1, suffixlen, out);
123 if (out !
[all...]
H A Dgrub-macho2img.c37 FILE *in, *out; local
61 out = fopen (argv[2 + do_bss], "wb");
62 if (! out)
75 fclose (out);
84 fclose (out);
97 grub_le_to_cpu32 (curcmd->filesize), out);
110 fseek (out, 0x5c, SEEK_SET);
112 fwrite (&tmp, 4, 1, out);
114 fwrite (&tmp, 4, 1, out);
117 fclose (out);
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/sun4/pcibus/
H A Dpci_sun4.c38 pci_fru_compute(topo_mod_t *mod, tnode_t *node, nvlist_t *in, nvlist_t **out) argument
40 return (pci_fru_cmn(mod, node, in, out));
/osnet-11/usr/src/lib/libast/common/hash/
H A Dhashalloc.c66 goto out;
70 goto out;
83 goto out;
87 goto out;
89 goto out;
101 if (ref) goto out;
106 if (n > UCHAR_MAX) goto out;
113 if (ref) goto out;
117 if (ref) goto out;
121 if (ref) goto out;
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/video/
H A Defi_gop.c134 struct grub_video_mode_info *out)
136 out->mode_number = mode;
137 out->number_of_colors = 256;
138 out->width = in->width;
139 out->height = in->height;
140 out->mode_type = GRUB_VIDEO_MODE_TYPE_RGB;
141 out->bpp = grub_video_gop_get_bpp (in);
142 out->bytes_per_pixel = out->bpp >> 3;
143 if (!out
132 grub_video_gop_fill_mode_info(unsigned mode, struct grub_efi_gop_mode_info *in, struct grub_video_mode_info *out) argument
[all...]

Completed in 85 milliseconds

1234567891011>>