Searched refs:out (Results 276 - 300 of 3947) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/WTF-7600.1.24/wtf/text/
H A DBase64.cpp95 static inline void base64EncodeInternal(const char* data, unsigned len, Vector<char>& out, Base64EncodePolicy policy, const char (&encodeMap)[64]) argument
97 out.clear();
119 out.grow(outLength);
126 out[didx++] = '\n';
129 out[didx++] = encodeMap[(data[sidx] >> 2) & 077];
130 out[didx++] = encodeMap[((data[sidx + 1] >> 4) & 017) | ((data[sidx] << 4) & 077)];
131 out[didx++] = encodeMap[((data[sidx + 2] >> 6) & 003) | ((data[sidx + 1] << 2) & 077)];
132 out[didx++] = encodeMap[data[sidx + 2] & 077];
139 out[didx++] = '\n';
141 out[did
167 base64Encode(const void* data, unsigned len, Vector<char>& out, Base64EncodePolicy policy) argument
169 base64EncodeInternal(static_cast<const char*>(data), len, out, policy, base64EncMap); local
179 base64URLEncode(const void* data, unsigned len, Vector<char>& out) argument
181 base64EncodeInternal(static_cast<const char*>(data), len, out, Base64URLPolicy, base64URLEncMap); local
185 base64DecodeInternal(const T* data, unsigned length, Vector<char>& out, Base64DecodePolicy policy, const char (&decodeMap)[128]) argument
251 base64Decode(const String& in, SignedOrUnsignedCharVectorAdapter out, Base64DecodePolicy policy) argument
259 base64Decode(const Vector<char>& in, SignedOrUnsignedCharVectorAdapter out, Base64DecodePolicy policy) argument
270 base64Decode(const char* data, unsigned len, SignedOrUnsignedCharVectorAdapter out, Base64DecodePolicy policy) argument
275 base64URLDecode(const String& in, SignedOrUnsignedCharVectorAdapter out) argument
283 base64URLDecode(const Vector<char>& in, SignedOrUnsignedCharVectorAdapter out) argument
294 base64URLDecode(const char* data, unsigned len, SignedOrUnsignedCharVectorAdapter out) argument
[all...]
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebPreferences.idl71 HRESULT standardPreferences([out, retval] IWebPreferences** standardPreferences);
73 HRESULT initWithIdentifier([in] BSTR anIdentifier, [out, retval] IWebPreferences** preferences);
74 HRESULT identifier([out, retval] BSTR* ident);
76 HRESULT standardFontFamily([out, retval] BSTR* family);
79 HRESULT fixedFontFamily([out, retval] BSTR* family);
82 HRESULT serifFontFamily([out, retval] BSTR* fontFamily);
85 HRESULT sansSerifFontFamily([out, retval] BSTR* family);
88 HRESULT cursiveFontFamily([out, retval] BSTR* family);
91 HRESULT fantasyFontFamily([out, retval] BSTR* family);
94 HRESULT defaultFontSize([out, retva
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/gssapi/digest/
H A Dcreds.c59 goto out;
74 goto out;
79 goto out;
83 out:
108 goto out;
112 goto out;
116 goto out;
122 out:
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DCodeBlockWithJITType.h44 void dump(PrintStream& out) const
46 m_codeBlock->dumpAssumingJITType(out, m_jitType);
/macosx-10.10/Libinfo-459/gen.subproj/
H A Dconfiguration_profile.c37 char *out = NULL; local
43 asprintf(&out, "%s%s", NOTIFY_PATH_SERVICE, ident);
44 return out;
49 asprintf(&out, "%s%s/%s.plist", NOTIFY_PATH_SERVICE, CPROF_PATH, ident);
52 return out;
62 xpc_object_t out = NULL; local
92 if (data != NULL) out = xpc_create_from_plist(data, sb.st_size);
97 return out;
/macosx-10.10/OpenSSL098-52/src/crypto/seed/
H A Dseed_ofb.c84 * The word 'cryptographic' can be left out if the rouines from the library
111 void SEED_ofb128_encrypt(const unsigned char *in, unsigned char *out, argument
123 *(out++) = *(in++) ^ ivec[n];
/macosx-10.10/OpenSSL098-52/src/ms/
H A Dtenc.bat4 %ssleay% %1 %2 %3 %4 %5 %6 -e -bufsize 113 -k test -in %input% -out %tmp1%
5 %ssleay% %1 %2 %3 %4 %5 %6 -d -bufsize 157 -k test -in %tmp1% -out %out1%
10 %ssleay% %1 %2 %3 %4 %5 %6 -a -e -bufsize 113 -k test -in %input% -out %tmp1%
11 %ssleay% %1 %2 %3 %4 %5 %6 -a -d -bufsize 157 -k test -in %tmp1% -out %out1%
/macosx-10.10/WTF-7600.1.24/wtf/
H A DCommaPrinter.h41 void dump(PrintStream& out) const
48 out.print(m_comma);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DIntPoint.cpp34 void IntPoint::dump(PrintStream& out) const
36 out.printf("(%d, %d)", x(), y());
H A DIntSize.cpp34 void IntSize::dump(PrintStream& out) const
36 out.printf("(%d x %d)", width(), height());
/macosx-10.10/apr-32/apr/apr/include/arch/win32/
H A Dapr_arch_utf8.h34 * when the character code is invalid (in or out of context) and the later
39 apr_wchar_t *out,
48 * when the character code is invalid (in or out of context) and the later
53 char *out,
/macosx-10.10/bash-94.1.2/bash-3.2/examples/scripts.v2/
H A Duuenc63 out="$tail.${SUF}"
64 if isfalse $force && [ -a "$out" ]; then
65 echo "$name: $out: file exists. Use -f to overwrite." 1>&2
67 uuencode $file $tail > $out
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/allow_query/
H A Dclean.sh23 rm -f dig.out.*
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/database/
H A Dclean.sh20 rm -f dig.out.*
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/dlz/
H A Dclean.sh19 rm -f dig.out.*
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/smartsign/
H A Dclean.sh19 rm -f K* dsset-* *.signed random.data dnskey.sigs other.sigs dsset.out
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/stub/
H A Dclean.sh23 rm -f dig.out.ns3 ns3/child.example.st
/macosx-10.10/bless-103/test/
H A DUtilitiesCFPrettyPrint.h71 * @result The CFType summary is printed to standard out.
88 * @result The CFType summary is printed to standard out.
98 * @param out The output stream to print to.
99 * @result The CFType summary is printed to the stream out.
102 void TAOCFPrettyPrintToFile(CFTypeRef inRef, FILE *out);
109 * @param out The output stream to print to.
111 * @result The CFType summary is printed to the stream out.
114 void TAOCFPrettyPrintToFileWithIndenter(CFTypeRef inRef, FILE *out, char *indent);
/macosx-10.10/configd-699.1.5/SystemConfiguration.fproj/helper/
H A Dhelper.defs57 out session : mach_port_move_send_t;
58 out status : uint32_t;
65 out status : uint32_t;
66 out reply : xmlDataOut, dealloc);
/macosx-10.10/dtrace-147/test/tst/common/pid/
H A Dtst.float.d43 pid$1:a.out:main:
H A Dtst.fork.d37 pid$1:a.out:waiting:entry
51 pid$1:a.out:go:
61 out++;
66 /out == 2/
83 trace("test timed out");
H A Dtst.gcc.d45 pid$1:a.out::
/macosx-10.10/dtrace-147/test/tst/common/translators/
H A Dtst.TranslateSelf.d52 struct output_struct out;
57 out.myi = 1234;
58 out.myc = 'a';
61 outer = xlate < struct output_struct > (out);
/macosx-10.10/dtrace-147/test/tst/i386/pid/
H A Dtst.branch.d40 pid$1:a.out:waiting:entry
47 pid$1:a.out:main:,
48 pid$1:a.out:other:
52 pid$1:a.out:bad:entry
75 trace("test timed out");
/macosx-10.10/dtrace-147/test/tst/sparc/pid/
H A Dtst.branch.d40 pid$1:a.out:waiting:entry
47 pid$1:a.out:main:,
48 pid$1:a.out:other:
52 pid$1:a.out:bad:entry
75 trace("test timed out");

Completed in 192 milliseconds

<<11121314151617181920>>