Searched refs:output (Results 1 - 25 of 1638) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DgenerateAboutDataFeatures.pl25 my $output;
31 open($output, '>', $outputFileName) or die "Can't open file for write: $outputFileName $!";
33 print $output "// This is a generated fragment of about features for AboutData.cpp of the BlackBerry porting.\n";
34 print $output "// Don't edit me manually.\n\n";
37 print $output "#if " . $macro . "(" . $feature . ")\n";
38 print $output " trueList.append(\n";
39 print $output "#else\n";
40 print $output " falseList.append(\n";
41 print $output "#endif\n";
42 print $output " "
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A Dxxd.pl34 $output = shift;
43 open($output, '>', $output) or die "Can't open file for write: $output $!";
44 print $output "const unsigned char $varname\[\] = {\n$text\n};\n";
45 close($output);
/macosx-10.9.5/ruby-104/ruby/lib/rexml/formatters/
H A Dtransitive.rb22 def write_element( node, output )
23 output << "<#{node.expanded_name}"
26 output << " "
27 attr.write( output )
30 output << "\n"
31 output << ' '*@level
33 output << " " if @ie_hack
34 output << "/"
36 output << ">"
37 # If compact and all children are text, and if the formatted output
[all...]
H A Ddefault.rb14 # Writes the node to some output.
18 # output::
20 # change the output encoding.
21 def write( node, output )
25 if node.xml_decl.encoding != 'UTF-8' && !output.kind_of?(Output)
26 output = Output.new( output, node.xml_decl.encoding )
28 write_document( node, output )
31 write_element( node, output )
35 node.write( output,
[all...]
H A Dpretty.rb19 # output::
20 # An object implementing '<<(String)', to which the output will be written.
38 def write_element(node, output)
39 output << ' '*@level
40 output << "<#{node.expanded_name}"
43 output << " "
44 attr.write( output )
49 output << " "
51 output << "/"
53 output << ">"
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/crypto/
H A Dcrypt_blowfish.h20 extern int _crypt_output_magic(const char *setting, char *output, int size);
22 char *output, int size);
25 const char *input, int size, char *output, int output_size);
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dcurl_md4.h30 void Curl_md4it(unsigned char *output, const unsigned char *input, size_t len);
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/libdes/src/
H A Dcbc3_enc.c62 /* crypto/des/cbc3_enc.c */ /* Copyright (C) 1995-1997 Eric Young (eay@mincom.oz.au) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@mincom.oz.au). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@mincom.oz.au). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@mincom.oz.au)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@mincom.oz.au)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #include "des_locl.h" /* HAS BUGS? DON'T USE */ void des_3cbc_encrypt(input, output, length, ks1, ks2, iv1, iv2, encrypt) des_cblock (*input); des_cblock (*output); long length; des_key_schedule ks1; des_key_schedule ks2; des_cblock (*iv1); des_cblock (*iv2); int encrypt; { int off=((int)length-1)/8; long l8=((length+7)/8)*8; des_cblock niv1,niv2; if (encrypt == DES_ENCRYPT) { des_cbc_encrypt(input,output,length,ks1,iv1,encrypt); if (length >= sizeof(des_cblock)) memcpy(niv1,output[off],sizeof(des_cblock)); des_cbc_encrypt(output,output,l8,ks2,iv1,!encrypt); des_cbc_encrypt(output,output,l8,ks1,iv2, encrypt); if (length >= sizeof(des_cblock)) memcpy(niv2,output[off],sizeof(des_cblock)); } else { if (length >= sizeof(des_cblock)) memcpy(niv2,input[off],sizeof(des_cblock)); des_cbc_encrypt(input,output,l
[all...]
/macosx-10.9.5/ruby-104/ruby/test/minitest/
H A Dmetametameta.rb31 output = @output.string.dup
32 output.sub!(/Finished tests in .*/, "Finished tests in 0.00")
33 output.sub!(/Loaded suite .*/, 'Loaded suite blah')
35 output.gsub!(/ = \d+.\d\d s = /, ' = 0.00 s = ')
36 output.gsub!(/0x[A-Fa-f0-9]+/, '0xXXX')
39 output.gsub!(/\[(?:[A-Za-z]:)?[^\]:]+:\d+\]/, '[FILE:LINE]')
40 output.gsub!(/^(\s+)(?:[A-Za-z]:)?[^:]+:\d+:in/, '\1FILE:LINE:in')
42 output.gsub!(/\[[^\]:]+:\d+\]/, '[FILE:LINE]')
43 output
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_attribute_manager.rb19 assert_equal 'foo <CODE>__send__</CODE> bar', output('foo <code>__send__</code> bar')
23 assert_equal 'foo <CODE>__send__</CODE> bar', output('foo <tt>__send__</tt> bar')
27 assert_equal 'foo.__send__ :bar', output('foo.__send__ :bar')
28 assert_equal 'use __FILE__ to', output('use __FILE__ to')
32 assert_equal 'the <CODE>IF:</CODE><EM>key</EM> directive', output('the <tt>IF:</tt>_key_ directive')
83 assert_equal '<CODE>text</CODE>', output('<tt>text</tt>')
84 assert_equal '<tt>text</tt>', output('\\<tt>text</tt>')
85 assert_equal '<tt>', output('\\<tt>')
86 assert_equal '<CODE><tt></CODE>', output('<tt>\\<tt></tt>')
87 assert_equal '<CODE>\\<tt></CODE>', output('<t
115 def output str method in class:TestAttributeManager
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/dcelib/darwin/
H A Dwc16str.c82 char * output; local
85 CFIndex produced = 0; // output units produced
87 output = malloc(3 * (inputlen + 1));
88 if (output == NULL) {
97 (uint8_t *)output, inputlen * 3,
101 free(output);
105 output[produced] = '\0';
106 return output;
113 wchar16_t * output; local
116 CFIndex produced = 0; // output unit
[all...]
/macosx-10.9.5/ntp-88/sntp/
H A Dutilities.c10 FILE *output
18 fprintf(output, HLINE);
22 fprintf(output, "\n");
24 fprintf(output, "%d: %x \t", a, pkt[a]);
27 fprintf(output, "\n");
28 fprintf(output, HLINE);
36 FILE *output
41 fprintf(output, HLINE);
44 fprintf(output, "%i: %x \t", a, ((unsigned char *) ts)[a]);
46 fprintf(output, "\
[all...]
H A Dutilities.h12 #define PHLINE fprintf(output, HLINE);
16 void pkt_output (struct pkt *dpkg, int pkt_length, FILE *output);
17 void l_fp_output (l_fp *ts, FILE *output);
18 void l_fp_output_bin (l_fp *ts, FILE *output);
19 void l_fp_output_dec (l_fp *ts, FILE *output);
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DAudioNodeInput.cpp48 void AudioNodeInput::connect(AudioNodeOutput* output) argument
52 ASSERT(output && node());
53 if (!output || !node())
56 // Check if we're already connected to this output.
57 if (m_outputs.contains(output))
60 output->addInput(this);
61 m_outputs.add(output);
68 void AudioNodeInput::disconnect(AudioNodeOutput* output) argument
72 ASSERT(output && node());
73 if (!output || !nod
96 disable(AudioNodeOutput* output) argument
114 enable(AudioNodeOutput* output) argument
160 AudioNodeOutput* output = *i; local
207 AudioNodeOutput* output = renderingOutput(i); local
225 AudioNodeOutput* output = this->renderingOutput(0); local
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rubygems/
H A Dtest_gem_ext_cmake_builder.rb30 output = []
33 Gem::Ext::CmakeBuilder.build nil, nil, @dest_path, output
36 output = output.join "\n"
39 %r%^cmake \. -DCMAKE_INSTALL_PREFIX=#{Regexp.escape @dest_path}%, output
40 assert_match %r%#{Regexp.escape @ext}%, output
41 assert_contains_make_command '', output
42 assert_contains_make_command 'install', output
43 assert_match %r%test\.txt%, output
47 output
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DTupleTupleBinding.java49 TupleOutput output = getTupleOutput(object);
50 objectToKey(object, output);
51 outputToEntry(output, key);
57 TupleOutput output = getTupleOutput(object);
58 objectToData(object, output);
59 outputToEntry(output, data);
82 * @param output is the {@link TupleOutput} to which the key should be
85 public abstract void objectToKey(Object object, TupleOutput output); argument
92 * @param output is the {@link TupleOutput} to which the data should be
95 public abstract void objectToData(Object object, TupleOutput output); argument
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/t/test/plugin/MyPlugs/
H A DBaz.pm10 sub output { subroutine
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/t/test/plugin/MyPlugs/
H A DBaz.pm10 sub output { subroutine
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSHTMLLinkElementCustom.cpp41 HTMLLinkElement* output = static_cast<HTMLLinkElement*>(impl()); local
42 JSValue result = toJS(exec, globalObject(), WTF::getPtr(output->sizes()));
48 HTMLLinkElement* output = static_cast<HTMLLinkElement*>(impl()); local
49 output->setSizes(valueToStringWithNullCheck(exec, value));
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/opentype/
H A DOpenTypeSanitizer.cpp59 ots::ExpandingMemoryStream output(m_buffer->size(), maxWebFontSize);
60 if (!ots::Process(&output, reinterpret_cast<const uint8_t*>(m_buffer->data()), m_buffer->size()))
63 const size_t transcodeLen = output.Tell();
64 return SharedBuffer::create(static_cast<unsigned char*>(output.get()), transcodeLen);
/macosx-10.9.5/ruby-104/ruby/lib/rake/
H A Dtrace_output.rb4 # Write trace output to output stream +out+.
7 # chance that the trace output is interrupted by other tasks also
8 # producing output.
12 output = sep
14 output = strings.map { |s| s.end_with?(sep) ? s : s + sep }.join
16 out.print(output)
/macosx-10.9.5/ruby-104/ruby/tool/
H A Dfile2lastrev.rb11 @output = nil
12 def self.output=(output) singleton method
13 if @output and @output != output
16 @output = output
26 self.output = :changed
29 self.output
[all...]
/macosx-10.9.5/tcpdump-56/tcpdump/tests/
H A DTESTonce15 ($name,$input,$output,$options)=split(/\s+/,$_, 4);
25 $output=$ARGV[2];
28 print "Usage: TESTonce name [input output options]\n";
33 print " Input: $input, OUTPUT: $output, OPTIONS: $options\n" if $debug;
36 exec("../tcpdump 2>/dev/null -n -r $input $options | tee NEW/$output | diff -w - $output >DIFF/$output.diff");
/macosx-10.9.5/ruby-104/ruby/lib/rexml/
H A Dcdata.rb45 # Generates XML output of this object
47 # output::
59 def write( output=$stdout, indent=-1, transitive=false, ie_hack=false )
61 indent( output, indent )
62 output << START
63 output << @string
64 output << STOP
/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dfmtmsg.c59 char *env, *msgverb, *output; local
78 output = printfmt(msgverb, class, label, sev, text, action,
80 if (output == NULL) {
84 if (*output != '\0') {
85 int out_len = fprintf(stderr, "%s", output);
91 free(output);
94 output = printfmt(DFLT_MSGVERB, class, label, sev, text,
96 if (output == NULL)
98 if (*output != '\0') {
144 fprintf(fp, "%s", output);
172 char *comp, *output; local
[all...]

Completed in 147 milliseconds

1234567891011>>