Searched defs:to (Results 51 - 75 of 433) sorted by relevance

1234567891011>>

/external/openssl/crypto/rsa/
H A Drsa_crpt.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.
75 int RSA_public_encrypt(int flen, const unsigned char *from, unsigned char *to, argument
86 return(rsa->meth->rsa_pub_enc(flen, from, to, rsa, padding));
89 int RSA_private_encrypt(int flen, const unsigned char *from, unsigned char *to, argument
100 return(rsa->meth->rsa_priv_enc(flen, from, to, rsa, padding));
103 int RSA_private_decrypt(int flen, const unsigned char *from, unsigned char *to, argument
114 return(rsa->meth->rsa_priv_dec(flen, from, to, rs
117 RSA_public_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
[all...]
/external/oprofile/daemon/
H A Dopd_extended.c148 void opd_ext_sfile_dup (struct sfile * to, struct sfile * from) argument
153 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->dup(to, from);
H A Dopd_sfile.h33 * descriptions here to find which sample DB file we need to modify.
73 /** where arc is to */
74 struct sfile to; member in struct:cg_entry
100 /** add this sfile to lru list */
/external/protobuf/src/google/protobuf/
H A Dreflection_ops.cc16 // contributors may be used to endorse or promote products derived from
44 void ReflectionOps::Copy(const Message& from, Message* to) { argument
45 if (&from == to) return;
46 Clear(to);
47 Merge(from, to);
50 void ReflectionOps::Merge(const Message& from, Message* to) { argument
51 GOOGLE_CHECK_NE(&from, to);
54 GOOGLE_CHECK_EQ(to->GetDescriptor(), descriptor)
55 << "Tried to merge messages of different types.";
58 const Reflection* to_reflection = to
[all...]
/external/qemu/
H A Dcbuffer.c117 cbuffer_read( CBuffer* cb, void* to, int len ) argument
140 memcpy( (char*)to, (const char*)cb->buff + rpos, avail );
141 to = (char*)to + avail;
/external/skia/src/animator/
H A DSkAnimateBase.h60 SkString to; member in class:SkAnimateBase
71 unsigned fHasValues : 1; // set if 'values' passed instead of 'to'
/external/sqlite/android/
H A DPhonebookIndex.cpp10 * Unless required by applicable law or agreed to in writing, software
89 * Binary search to map an individual character to the corresponding phone book index.
92 int from = 0, to = length; local
93 while (from < to) {
94 int m = ((to + from) >> 1) & ~0x1; // Only consider even positions
101 to = m;
108 * Returns TRUE if the character belongs to a Hanzi unicode block
131 // Normalize the first character to remove accents using the NFD normalization
167 // Convert Kanas to Hiragan
[all...]
/external/v8/test/cctest/
H A Dtest-utils.cc13 // contributors may be used to endorse or promote products derived
91 byte* to = dst.start() + 32 + destination_alignment; local
94 OS::MemCopy(to, from, static_cast<size_t>(length));
98 CHECK_EQ(from[i], to[i]);
100 CHECK_EQ(0xFF, to[-1]);
101 CHECK_EQ(0xFF, to[length]);
/external/valgrind/main/callgrind/
H A Djumps.c22 along with this program; if not, write to the Free Software
79 static UInt jcc_hash_idx(BBCC* from, UInt jmp, BBCC* to, UInt size) argument
81 return (UInt) ( (UWord)from + 7* (UWord)to + 13*jmp) % size;
109 curr_jcc->to, new_size);
137 /* new jCC structure: a call was done to a BB of a BBCC
140 static jCC* new_jcc(BBCC* from, UInt jmp, BBCC* to) argument
154 jcc->to = to;
174 new_idx = jcc_hash_idx(from, jmp, to, current_jccs.size);
190 jCC* CLG_(get_jcc)(BBCC* from, UInt jmp, BBCC* to) argument
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DStdLibExtras.h31 // Use these to declare and define a static local variable (static T;) so that
46 // The magic number 0x4000 is insignificant. We use it to avoid using NULL, since
50 // STRINGIZE: Can convert any value to quoted string, even expandable macros
55 * The reinterpret_cast<Type1*>([pointer to Type2]) expressions - where
99 TO to; member in union:WTF::__anon13051
102 return u.to;
133 // If the array only contains one element, no need to do the comparison.
135 // Pick an element to check, half way through the array, and read the value.
146 // Discard all values in the left hand half of the array, up to and including the item at pos.
156 // If we reach this point we've chopped down to on
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSFontFace.h52 void addRange(UChar32 from, UChar32 to) { m_ranges.append(UnicodeRange(from, to)); } argument
71 UnicodeRange(UChar32 from, UChar32 to) argument
73 , m_to(to)
78 UChar32 to() const { return m_to; } function in struct:WebCore::CSSFontFace::UnicodeRange
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DFontComplexTextMac.cpp42 int from, int to) const
47 controller.advance(to);
50 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning
59 float Font::getGlyphsAndAdvancesForComplexText(const TextRun& run, int from, int to, GlyphBuffer& glyphBuffer, ForTextEmphasisOrNot forTextEmphasis) const argument
66 controller.advance(to, &glyphBuffer);
83 void Font::drawComplexText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, int from, int to) const
88 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer);
99 void Font::drawEmphasisMarksForComplexText(GraphicsContext* context, const TextRun& run, const AtomicString& mark, const FloatPoint& point, int from, int to) const
102 float initialAdvance = getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer, ForTextEmphasis);
/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontWin.cpp54 int from, int to) const
59 it.advance(to);
62 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning
72 float Font::getGlyphsAndAdvancesForComplexText(const TextRun& run, int from, int to, GlyphBuffer& glyphBuffer, ForTextEmphasisOrNot forTextEmphasis) const argument
75 // FIXME: Add forTextEmphasis paremeter to UniscribeController and use it.
83 controller.advance(to, &glyphBuffer);
98 int from, int to) const
103 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer);
114 void Font::drawEmphasisMarksForComplexText(GraphicsContext* context, const TextRun& run, const AtomicString& mark, const FloatPoint& point, int from, int to) const
117 float initialAdvance = getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffe
[all...]
/external/webkit/Source/WebCore/xml/
H A DXPathNodeSet.cpp44 static void sortBlock(unsigned from, unsigned to, Vector<Vector<Node*> >& parentMatrix, bool mayContainAttributeNodes) argument
46 ASSERT(from + 1 < to); // Should not call this function with less that two nodes to sort.
48 for (unsigned i = from; i < to; ++i) {
63 for (unsigned i = from + 1; i < to; ++i) {
77 // Find it and move it to the beginning.
78 for (unsigned i = from; i < to; ++i)
81 if (from + 2 < to)
82 sortBlock(from + 1, to, parentMatrix, mayContainAttributeNodes);
89 // The namespace nodes are defined to occu
178 unsigned to = m_nodes.size() - 1; local
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebDOMEvent.h15 * contributors may be used to endorse or promote products derived from
100 template<typename T> T to() function in class:WebKit::WebDOMEvent
/external/chromium/chrome/browser/chromeos/
H A Dlocale_change_guard.cc84 // We need to perform locale change check only once, so unsubscribe.
151 // Falling back to showing message in current locale.
205 string16 to = l10n_util::GetDisplayNameForLocale( local
211 IDS_LOCALE_CHANGE_MESSAGE, from, to);
/external/chromium/chrome/browser/tabs/
H A Dtab_strip_selection_model.cc39 // Shift the selection to account for the newly inserted tab.
111 void TabStripSelectionModel::Move(int from, int to) { argument
112 DCHECK_NE(to, from);
116 if (to < from) {
117 IncrementFrom(to);
121 IncrementFrom(to);
124 active_ = to;
126 anchor_ = to;
128 AddIndexToSelection(to);
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dxmppengineimpl_iq.cc13 * 3. The name of the author may not be used to endorse or promote products
37 XmppIqEntry(const std::string & id, const std::string & to, argument
40 to_(to),
211 // copy attrs, copy 'from' to 'to' and strip 'from'
216 continue; // no need to put a from attr. Server will stamp stanza
H A Dxmpptask.cc13 * 3. The name of the author may not be used to endorse or promote products
109 const buzz::Jid& to,
114 if (to != JID_EMPTY)
115 result->AddAttr(QN_TO, to.Str());
132 const Jid& to,
141 if (from == to)
145 if (to != JID_EMPTY)
148 // It is legal for the server to identify itself with "domain" or
108 MakeIq(const std::string& type, const buzz::Jid& to, const std::string& id) argument
131 MatchResponseIq(const XmlElement* stanza, const Jid& to, const std::string& id) argument
/external/e2fsprogs/lib/ext2fs/
H A Dswapfs.c127 void ext2fs_swap_ext_attr(char *to, char *from, int bufsize, int has_header) argument
132 (struct ext2_ext_attr_header *)to;
/external/freetype/src/base/
H A Dftbbox.c12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
21 /* This component has a _single_ role: to compute exact outline bounding */
55 /* to :: A pointer to the destination vector. */
58 /* user :: A pointer to the current walk context. */
64 BBox_Move_To( FT_Vector* to, argument
67 user->last = *to;
144 /* current bounding box, and computes its extrema if necessary to */
148 /* control :: A pointer to a control point. */
150 /* to
163 BBox_Conic_To( FT_Vector* control, FT_Vector* to, TBBox_Rec* user ) argument
532 BBox_Cubic_To( FT_Vector* control1, FT_Vector* control2, FT_Vector* to, TBBox_Rec* user ) argument
[all...]
/external/grub/netboot/
H A Dlinux-asm-string.h14 * very easy to understand. Everything is done entirely within the register
19 * consider these trivial functions to be PD.
24 extern void *__memcpy(void * to, const void * from, size_t n);
25 extern void *__constant_memcpy(void * to, const void * from, size_t n);
32 extern inline void * __memcpy(void * to, const void * from, size_t n) argument
46 :"0" (n/4), "q" (n),"1" ((long) to),"2" ((long) from)
48 return (to);
55 extern inline void * __constant_memcpy(void * to, const void * from, size_t n) argument
59 return to;
61 *(unsigned char *)to
[all...]
/external/guava/guava/src/com/google/common/io/
H A DCharStreams.java10 * Unless required by applicable law or agreed to in writing, software
62 * @param value the string to read
80 * @param in the factory that will be used to open input streams
81 * @param charset the character set used to decode the input stream
100 * @param out the factory that will be used to open output streams
101 * @param charset the character set used to encode the output stream
117 * Writes a character sequence (such as a string) to an appendable
120 * @param from the character sequence to write
121 * @param to the output supplier
125 OutputSupplier<W> to) throw
124 write(CharSequence from, OutputSupplier<W> to) argument
148 copy(InputSupplier<R> from, OutputSupplier<W> to) argument
177 copy( InputSupplier<R> from, Appendable to) argument
199 copy(Readable from, Appendable to) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DNavigableMapTestSuiteBuilder.java10 * Unless required by applicable law or agreed to in writing, software
94 * Two bounds (from and to) define how to build a subMap.
111 parentBuilder, final Bound from, final Bound to) {
139 // prepare extreme values to be filtered out of view
147 if (to == Bound.NO_BOUND) {
161 if (from == Bound.NO_BOUND && to == Bound.EXCLUSIVE) {
163 } else if (from == Bound.NO_BOUND && to == Bound.INCLUSIVE) {
165 } else if (from == Bound.EXCLUSIVE && to == Bound.NO_BOUND) {
167 } else if (from == Bound.EXCLUSIVE && to
109 createSubmapSuite(final FeatureSpecificTestSuiteBuilder<?, ? extends OneSizeTestContainerGenerator<Map<K, V>, Entry<K, V>>> parentBuilder, final Bound from, final Bound to) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DSortedMultisetTestSuiteBuilder.java10 * Unless required by applicable law or agreed to in writing, software
90 * Two bounds (from and to) define how to build a subMultiset.
128 final Bound to) {
160 // prepare extreme values to be filtered out of view
168 if (to == Bound.NO_BOUND) {
189 if (to == Bound.INCLUSIVE) {
191 } else if (to == Bound.EXCLUSIVE) {
198 .named(parentBuilder.getName() + " subMultiset " + from + "-" + to)
126 createSubMultisetSuite( SortedMultisetTestSuiteBuilder<E> parentBuilder, final Bound from, final Bound to) argument

Completed in 939 milliseconds

1234567891011>>