Searched refs:out (Results 151 - 175 of 3947) sorted by relevance

1234567891011>>

/macosx-10.10/python-89/2.6/fix/
H A Dutf162byte.py10 out = open(sys.argv[2], 'w') variable
12 out.write(input.read())
13 out.close()
/macosx-10.10/python-89/2.7/fix/
H A Dbyte2utf16.py10 out = codecs.open(sys.argv[2], 'w', 'utf-16'); variable
12 out.write(input.read())
13 out.close()
H A Dutf162byte.py10 out = open(sys.argv[2], 'w') variable
12 out.write(input.read())
13 out.close()
/macosx-10.10/ruby-106/ruby/sample/
H A Duumerge.rb16 out = STDOUT
18 out = open($file, "w") if $file != ""
20 out.binmode
27 out.binmode
31 out.close unless out_stdout
38 out << $_.unpack("u") if $sawbegin > $sawend
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/examples/tie/
H A Dserver.tcl20 set out [list]
22 lappend out $key $a($key)
24 return $out
/macosx-10.10/xnu-2782.1.97/EXTERNAL_HEADERS/corecrypto/
H A Dccrng.h23 int (*generate)(struct ccrng_state *rng, unsigned long outlen, void *out);
30 #define ccrng_generate(ctx, outlen, out) ((ctx)->generate((ctx), (outlen), (out)))
/macosx-10.10/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/bind/tuple/test/
H A DTupleFormatTest.java29 private TupleOutput out; field in class:TupleFormatTest
61 out = new TupleOutput();
68 out = null;
74 TupleBinding.outputToEntry(out, buffer);
75 assertEquals(out.size(), buffer.getSize());
83 out.reset();
84 out.writeString(val);
85 assertEquals(val.length() + 1, out.size()); // assume 1-byte chars
97 out.reset();
98 out
[all...]
/macosx-10.10/libxslt-13/libxslt/tests/exslt/date/
H A DMakefile.am8 date.1.out date.1.xml date.1.xsl \
9 date.2.out date.2.xml date.2.xsl \
10 datetime.1.out datetime.1.xml datetime.1.xsl \
11 datetime.2.out datetime.2.xml datetime.2.xsl \
12 gday.1.out gday.1.xml gday.1.xsl \
13 gday.2.out gday.2.xml gday.2.xsl \
14 gmonth.1.out gmonth.1.xml gmonth.1.xsl \
15 gmonth.2.out gmonth.2.xml gmonth.2.xsl \
16 gmonthday.1.out gmonthday.1.xml gmonthday.1.xsl \
17 gmonthday.2.out gmonthda
[all...]
/macosx-10.10/ICU-531.30/icuSources/tools/gentest/
H A Dgentest.c145 FILE *out; local
154 out = fopen(file, "w");
157 if(out == NULL) {
163 fprintf(out, "/** Copyright (C) 2007-%d, International Business Machines Corporation and Others. All Rights Reserved. **/\n\n", year);
164 fprintf(out, "/* NOTE: this file is AUTOMATICALLY GENERATED by gentest.\n"
167 fprintf(out, "package com.ibm.icu.dev.test.util;\n\n");
168 fprintf(out, "public class DebugUtilitiesData extends Object {\n");
169 fprintf(out, " public static final String ICU4C_VERSION=\"%s\";\n", U_ICU_VERSION);
171 fprintf(out, " public static final int %s = %d;\n", udbg_enumName(UDBG_UDebugEnumType,t), t);
173 fprintf(out, " publi
[all...]
/macosx-10.10/ppp-786.1.1/Controller/
H A Dpppcontroller.defs75 out session : mach_port_move_send_t;
76 out result : int;
80 out phase : int;
81 out result : int);
84 out status_data : xmlDataOut, dealloc;
85 out result : int);
88 out statistics_data : xmlDataOut, dealloc;
89 out result : int);
92 out options_data : xmlDataOut, dealloc;
93 out resul
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Dcamellia.c57 CAMELLIA_encrypt(const unsigned char *in, unsigned char *out, argument
60 Camellia_EncryptBlock(key->bits, in, key->key, out);
65 CAMELLIA_decrypt(const unsigned char *in, unsigned char *out, argument
68 Camellia_DecryptBlock(key->bits, in, key->key, out);
72 CAMELLIA_cbc_encrypt(const unsigned char *in, unsigned char *out, argument
83 CAMELLIA_encrypt(tmp, out, key);
84 memcpy(iv, out, CAMELLIA_BLOCK_SIZE);
87 out += CAMELLIA_BLOCK_SIZE;
94 CAMELLIA_encrypt(tmp, out, key);
95 memcpy(iv, out, CAMELLIA_BLOCK_SIZ
[all...]
/macosx-10.10/dtrace-147/test/tst/common/
H A DMake.sh1 gcc -arch i386 ./io/tst.fds.c -o a.out; mv a.out ./io/tst.fds.exe
2 gcc -arch i386 ./pid/tst.args1.c -o a.out; mv a.out ./pid/tst.args1.exe
3 gcc -arch i386 ./pid/tst.float.c -o a.out; mv a.out ./pid/tst.float.exe
4 gcc -arch i386 ./pid/tst.fork.c -o a.out; mv a.out ./pid/tst.fork.exe
5 gcc -arch i386 ./pid/tst.gcc.c -o a.out; mv a.out
[all...]
H A DMake.x86_64.sh1 gcc -arch x86_64 ./io/tst.fds.c -o a.out; mv a.out ./io/tst.fds.exe
2 gcc -arch x86_64 ./pid/tst.args1.c -o a.out; mv a.out ./pid/tst.args1.exe
3 gcc -arch x86_64 ./pid/tst.float.c -o a.out; mv a.out ./pid/tst.float.exe
4 gcc -arch x86_64 ./pid/tst.fork.c -o a.out; mv a.out ./pid/tst.fork.exe
5 gcc -arch x86_64 ./pid/tst.gcc.c -o a.out; mv a.out
[all...]
/macosx-10.10/libxslt-13/libxslt/tests/XSLTMark/
H A DMakefile.am5 alphabetize.out alphabetize.ref alphabetize.xsl \
6 attsets.out attsets.ref attsets.xsl \
7 avts.out avts.ref avts.xsl \
8 axis.out axis.ref axis.xml axis.xsl \
9 backwards.out backwards.ref backwards.xsl \
10 bottles.out bottles.ref bottles.xml bottles.xsl \
11 breadth.out breadth.ref breadth.xml \
12 brutal.out brutal.ref brutal.xml brutal.xsl \
13 chart.out chart.ref chart.xml chart.xsl \
14 creation.out creatio
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/seed/
H A Dseed_cbc.c55 void SEED_cbc_encrypt(const unsigned char *in, unsigned char *out, argument
68 out[n] = in[n] ^ iv[n];
69 SEED_encrypt(out, out, ks);
70 iv = out;
73 out += SEED_BLOCK_SIZE;
78 out[n] = in[n] ^ iv[n];
80 out[n] = iv[n];
81 SEED_encrypt(out, out, k
[all...]
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebBackForwardList.idl91 HRESULT backItem([out, retval] IWebHistoryItem** item);
99 HRESULT currentItem([out, retval] IWebHistoryItem** item);
107 HRESULT forwardItem([out, retval] IWebHistoryItem** item);
116 HRESULT backListWithLimit([in] int limit, [out] int* listCount, [in] IWebHistoryItem** list);
125 HRESULT forwardListWithLimit([in] int limit, [out] int* listCount, [in] IWebHistoryItem** list);
133 HRESULT capacity([out, retval] int* result);
149 HRESULT backListCount([out, retval] int* count);
157 HRESULT forwardListCount([out, retval] int* sizecount);
165 HRESULT containsItem([in] IWebHistoryItem* item, [out, retval] BOOL* result);
174 HRESULT itemAtIndex([in] int index, [out, retva
[all...]
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/dialup/
H A Dtests.sh25 rm -f dig.out.*
31 $DIG $DIGOPTS example. @10.53.0.1 soa > dig.out.ns1.test || ret=1
37 $DIG $DIGOPTS example. @10.53.0.2 soa > dig.out.ns2.test || ret=1
38 if grep SERVFAIL dig.out.ns2.test > /dev/null
43 $PERL ../digcomp.pl dig.out.ns1.test dig.out.ns2.test || ret=1
56 $DIG $DIGOPTS example. @10.53.0.3 soa > dig.out.ns3.test || ret=1
57 if grep SERVFAIL dig.out.ns3.test > /dev/null
62 $PERL ../digcomp.pl dig.out.ns1.test dig.out
[all...]
/macosx-10.10/bless-103/
H A Doutput.c48 FILE *out = NULL; local
59 out = stdout;
69 out = stderr;
73 out = stderr;
78 ret = fputs(string, out);
/macosx-10.10/curl-83.1.2/curl/tests/unit/
H A Dunit1395.c68 char *out = Curl_dedotdotify((char *)pairs[i].input); variable
69 abort_unless(out != NULL, "returned NULL!");
71 if(strcmp(out, pairs[i].output)) {
73 i, pairs[i].input, out, pairs[i].output);
79 free(out); variable
/macosx-10.10/xnu-2782.1.97/osfmk/mach/
H A Dprocessor_set.defs80 out info_out : processor_set_info_t, CountInOut);
118 out task_list : task_array_t);
125 out thread_list : thread_act_array_t);
146 out ltotal : unsigned;
147 out space : vm_size_t;
148 out resident : vm_size_t;
149 out maxusage : vm_size_t;
150 out maxstack : vm_offset_t);
158 out host : host_t;
159 out info_ou
[all...]
/macosx-10.10/ICU-531.30/icuSources/tools/genrb/
H A Dwrtjava.c83 static FileStream* out=NULL; variable
246 write_tabs(out);
283 T_FileStream_write(out,"\"",1);
285 T_FileStream_write(out,current,add);
286 T_FileStream_write(out,"\" +\n",4);
287 write_tabs(out);
289 T_FileStream_write(out,current,bufLen-len);
294 T_FileStream_write(out,"\"",1);
295 T_FileStream_write(out, buf,bufLen);
298 T_FileStream_write(out,"\",\
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/wind/
H A Dldap.c38 put_char(uint32_t *out, size_t *o, uint32_t c, size_t out_len) argument
42 out[*o] = c;
50 uint32_t *out,
60 if (put_char(out, &o, 0x20, *out_len))
67 if (put_char(out, &o, 0x20, *out_len) ||
68 put_char(out, &o, 0x20, *out_len))
73 if (put_char(out, &o, tmp[i++], *out_len))
80 if (o == 1 && out[0] == 0x20)
82 else if (out[o - 1] == 0x20) {
83 if (out[
48 _wind_ldap_case_exact_attribute(const uint32_t *tmp, size_t olen, uint32_t *out, size_t *out_len) argument
[all...]
/macosx-10.10/OpenSSL098-52/src/apps/
H A Derrstr.c35 * The word 'cryptographic' can be left out if the rouines from the library
89 BIO *out=NULL; local
91 out=BIO_new(BIO_s_file());
92 if ((out != NULL) && BIO_set_fp(out,stdout,BIO_NOCLOSE))
97 out = BIO_push(tmpbio, out);
100 lh_node_stats_bio((LHASH *)ERR_get_string_table(),out);
101 lh_stats_bio((LHASH *)ERR_get_string_table(),out);
103 ERR_get_string_table(),out);
[all...]
/macosx-10.10/OpenSSL098-52/src/demos/bio/
H A Dsconnect.c23 BIO *out; local
56 out=BIO_new(BIO_s_connect());
57 BIO_set_conn_hostname(out,host);
58 BIO_set_nbio(out,1);
59 out=BIO_push(ssl_bio,out);
67 i=BIO_write(out,&(p[off]),len);
70 if (BIO_should_retry(out))
88 i=BIO_read(out,buf,sizeof(buf));
92 if (BIO_should_retry(out))
[all...]
/macosx-10.10/bootp-298/bootplib/
H A Dipconfig.defs52 out count : int);
57 out option_data : inline_data;
58 out status : ipconfig_status);
62 out addr : ip_address;
63 out status : ipconfig_status);
67 out packet : inline_data;
68 out status : ipconfig_status);
73 out status : ipconfig_status;
79 out status : ipconfig_status;
86 out statu
[all...]

Completed in 345 milliseconds

1234567891011>>