Searched defs:to (Results 1 - 25 of 214) sorted by relevance

123456789

/external/openssl/crypto/rsa/
H A Drsa_none.c7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
65 int RSA_padding_add_none(unsigned char *to, int tlen, argument
80 memcpy(to,from,(unsigned int)flen);
84 int RSA_padding_check_none(unsigned char *to, int tlen, argument
94 memset(to,0,tlen-flen);
95 memcpy(to+tlen-flen,from,flen);
H A Drsa_null.c25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
66 * It is designed to allow some RSA functions to work while stopping those
73 unsigned char *to, RSA *rsa,int padding);
75 unsigned char *to, RSA *rsa,int padding);
77 unsigned char *to, RSA *rsa,int padding);
79 unsigned char *to, RSA *rsa,int padding);
108 unsigned char *to, RSA *rsa, int padding)
115 unsigned char *to, RSA *rsa, int padding)
122 unsigned char *to, RS
107 RSA_null_public_encrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
114 RSA_null_private_encrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
121 RSA_null_private_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
128 RSA_null_public_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
[all...]
H A Drsa_pk1.c7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
65 int RSA_padding_add_PKCS1_type_1(unsigned char *to, int tlen, argument
77 p=(unsigned char *)to;
91 int RSA_padding_check_PKCS1_type_1(unsigned char *to, int tlen, argument
108 if (*p != 0xff) /* should decrypt to 0xff */
138 memcpy(to,p,(unsigned int)j);
143 int RSA_padding_add_PKCS1_type_2(unsigned char *to, in argument
181 RSA_padding_check_PKCS1_type_2(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
[all...]
H A Drsa_ssl.c7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
65 int RSA_padding_add_SSLv23(unsigned char *to, int tlen, argument
77 p=(unsigned char *)to;
105 int RSA_padding_check_SSLv23(unsigned char *to, int tlen, argument
150 memcpy(to,p,(unsigned int)j);
H A Drsa_x931.c25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
66 int RSA_padding_add_X931(unsigned char *to, int tlen, argument
84 p=(unsigned char *)to;
105 int RSA_padding_check_X931(unsigned char *to, int tlen, argument
151 memcpy(to,p,(unsigned int)j);
/external/webkit/
H A Dbison_check.mk13 define local-transform-y-to-cpp
/external/icu4c/common/
H A Ddtintrv.cpp23 DateInterval::DateInterval(UDate from, UDate to) argument
25 toDate(to)
/external/webkit/WebCore/css/
H A DCSSUnicodeRangeValue.h37 static PassRefPtr<CSSUnicodeRangeValue> create(UChar32 from, UChar32 to) argument
39 return adoptRef(new CSSUnicodeRangeValue(from, to));
45 UChar32 to() const { return m_to; } function in class:WebCore::CSSUnicodeRangeValue
50 CSSUnicodeRangeValue(UChar32 from, UChar32 to) argument
52 , m_to(to)
H A DCSSFontFace.h52 void addRange(UChar32 from, UChar32 to) { m_ranges.append(UnicodeRange(from, to)); } argument
68 UnicodeRange(UChar32 from, UChar32 to) argument
70 , m_to(to)
75 UChar32 to() const { return m_to; } function in struct:WebCore::CSSFontFace::UnicodeRange
/external/icu4c/i18n/
H A Dzonemeta.h20 const UChar *id; // const because it's a reference to a resource bundle string.
21 const UChar *country; // const because it's a reference to a resource bundle string.
25 const UChar *mzid; // const because it's a reference to a resource bundle string.
27 UDate to; member in struct:OlsonToMetaMappingEntry
31 const UChar *id; // const because it's a reference to a resource bundle string.
52 * Return the country code if this is a 'single' time zone that can fallback to just
54 * to see that there is a localization for the country in order to implement
H A Dtztrans.cpp19 TimeZoneTransition::TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to) argument
20 : UObject(), fTime(time), fFrom(from.clone()), fTo(to.clone()) {
110 TimeZoneTransition::setTo(const TimeZoneRule& to) { argument
114 fTo = to.clone();
118 TimeZoneTransition::adoptTo(TimeZoneRule* to) { argument
122 fTo = to;
/external/kernel-headers/original/linux/netfilter/
H A Dxt_connbytes.h19 aligned_u64 from; /* count to be matched */
20 aligned_u64 to; /* count to be matched */ member in struct:xt_connbytes_info::__anon2247
/external/v8/src/
H A Dregexp-stack.cc13 // contributors may be used to endorse or promote products derived
47 char* RegExpStack::ArchiveStack(char* to) { argument
49 memcpy(reinterpret_cast<void*>(to),
53 return to + size;
/external/webkit/JavaScriptCore/wtf/
H A DStdLibExtras.h32 // Use these to declare and define a static local variable (static T;) so that
47 // The magic number 0x4000 is insignificant. We use it to avoid using NULL, since
51 // STRINGIZE: Can convert any value to quoted string, even expandable macros
66 TO to; member in union:WTF::__anon5589
69 return u.to;
/external/webkit/WebCore/platform/graphics/
H A DSegmentedFontData.h37 FontDataRange(UChar32 from, UChar32 to, const SimpleFontData* fontData) argument
39 , m_to(to)
45 UChar32 to() const { return m_to; } function in struct:WebCore::FontDataRange
/external/webkit/WebKit/chromium/src/
H A DWebCache.cpp15 * contributors may be used to endorse or promote products derived from
35 // This will make it easier to track WebCore changes to the Cache class.
45 // A helper method for coverting a Cache::TypeStatistic to a
48 WebCache::ResourceTypeStat& to)
50 to.count = static_cast<size_t>(from.count);
51 to.size = static_cast<size_t>(from.size);
52 to.liveSize = static_cast<size_t>(from.liveSize);
53 to.decodedSize = static_cast<size_t>(from.decodedSize);
72 // (due to othe
47 ToResourceTypeStat(const Cache::TypeStatistic& from, WebCache::ResourceTypeStat& to) argument
[all...]
/external/guava/src/com/google/common/io/
H A DResources.java10 * Unless required by applicable law or agreed to in writing, software
47 * @param url the URL to read from
64 * @param url the URL to read from
76 * @param url the URL to read from
88 * @param url the URL to read from
101 * @param url the URL to read from
103 * @param callback the LineProcessor to use to handle the lines
117 * @param url the URL to read from
128 * Copies all bytes from a URL to a
134 copy(URL from, OutputStream to) argument
[all...]
/external/qemu/slirp/
H A Dsbuf.c66 * Try and write() to the socket, whatever doesn't get written
67 * append to the buffer... for a host with a fast net connection,
110 * we don't need to check because if it has closed,
129 * The caller is responsible to make sure there's enough room
164 * Copy data from sbuf to a normal, straight buffer
169 sbcopy(struct sbuf *sb, int off, int len, char *to) argument
179 memcpy(to,from,len);
184 memcpy(to,from,off);
187 memcpy(to+off,sb->sb_data,len);
/external/qemu/slirp-android/
H A Dsbuf.c66 * Try and write() to the socket, whatever doesn't get written
67 * append to the buffer... for a host with a fast net connection,
110 * we don't need to check because if it has closed,
129 * The caller is responsible to make sure there's enough room
164 * Copy data from sbuf to a normal, straight buffer
169 sbcopy(struct sbuf *sb, int off, int len, char *to) argument
179 memcpy(to,from,len);
184 memcpy(to,from,off);
187 memcpy(to+off,sb->sb_data,len);
/external/quake/quake/src/QW/client/
H A Dcl_pred.c16 along with this program; if not, write to the Free Software
33 try nudging slightly on all axis to
64 void CL_PredictUsercmd (player_state_t *from, player_state_t *to, usercmd_t *u, qboolean spectator) argument
76 CL_PredictUsercmd (&temp, to, &split, spectator);
95 to->waterjumptime = pmove.waterjumptime;
96 to->oldbuttons = pmove.cmd.buttons;
97 VectorCopy (pmove.origin, to->origin);
98 VectorCopy (pmove.angles, to->viewangles);
99 VectorCopy (pmove.velocity, to->velocity);
100 to
116 frame_t *from, *to = NULL; local
[all...]
/external/stlport/src/
H A Dcodecvt.cpp11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
87 extern_type* to,
90 ptrdiff_t len = (min) (from_end - from, to_limit - to);
91 copy(from, from + len, to);
93 to_next = to + len;
102 intern_type* to,
105 ptrdiff_t len = (min) (from_end - from, to_limit - to);
107 __REINTERPRET_CAST(const unsigned char*, from) + len, to);
83 do_out(state_type& , const intern_type* from, const intern_type* from_end, const intern_type*& from_next, extern_type* to, extern_type* to_limit, extern_type*& to_next) const argument
98 do_in(state_type& , const extern_type* from, const extern_type* from_end, const extern_type*& from_next, intern_type* to, intern_type* to_limit, intern_type*& to_next) const argument
114 do_unshift(state_type& , extern_type* to, extern_type* , extern_type*& to_next) const argument
[all...]
/external/bluetooth/bluez/test/
H A Dattest.c19 * along with this program; if not, write to the Free Software
41 static int at_command(int fd, char *cmd, int to) argument
56 timeout.tv_usec = to;
94 /* Switch tty to RAW mode */
166 printf("Connecting to %s on channel %d\n", argv[1], channel);
/external/e2fsprogs/lib/ext2fs/
H A Dswapfs.c93 void ext2fs_swap_ext_attr(char *to, char *from, int bufsize, int has_header) argument
98 (struct ext2_ext_attr_header *)to;
/external/guava/src/com/google/common/base/
H A DCaseFormat.java10 * Unless required by applicable law or agreed to in writing, software
65 * Converts the specified {@code String s} from this format to the specified
67 * conform to the assumed format, then the behavior of this method is
70 public String to(CaseFormat format, String s) { method in class:CaseFormat
/external/kernel-headers/original/linux/
H A Dhighmem.h78 * Same but also flushes aliased cache contents to RAM.
92 static inline void copy_user_highpage(struct page *to, struct page *from, unsigned long vaddr) argument
97 vto = kmap_atomic(to, KM_USER1);
98 copy_user_page(vto, vfrom, vaddr, to);
105 static inline void copy_highpage(struct page *to, struct page *from) argument
110 vto = kmap_atomic(to, KM_USER1);

Completed in 1036 milliseconds

123456789