Searched defs:to (Results 201 - 225 of 758) sorted by relevance

1234567891011>>

/external/chromium_org/v8/tools/
H A Dgenerate-ten-powers.scm13 ;; contributors may be used to endorse or promote products derived
88 (define (generate-powers from to mantissa-size)
91 (nb-elements (+ (- from) to 1))
97 ;; want to create the matissa of 1/ten^i. However the mantissa must be
98 ;; normalized (start with a 1). -> we have to shift the number.
124 (when (<= i to)
135 (define (print-c powers from to struct-type
184 "// This file is intended to be included inside another .h or .cc files\n"
186 "// GRISU_CACHE_STRUCT: should expand to the name of a struct that will\n"
200 "// exponent offset. It is equal to
[all...]
/external/compiler-rt/lib/interception/
H A Dinterception_win.cc51 static void WriteJumpInstruction(char *jmp_from, char *to) { argument
53 // to the next instruction to the destination.
54 ptrdiff_t offset = to - jmp_from - 5;
67 // FIXME: Might want to apply PAGE_EXECUTE_READ access after all the
137 // leads to an infinite recursion in CheckFailed.
138 // Do we have a good way to abort with an error message here?
152 // to override it.
153 // We might want to be able to execut
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h44 bool addEdge(uptr from, uptr to) { argument
45 check(from, to);
46 return v[from].setBit(to);
50 uptr addEdges(const BV &from, uptr to, uptr added_edges[], argument
56 if (v[node].setBit(to))
64 // Returns true if an edge from=>to exist.
69 bool hasEdge(uptr from, uptr to) { return v[from].getBit(to); } argument
71 // Returns true if the edge from=>to was removed.
72 bool removeEdge(uptr from, uptr to) { argument
77 removeEdgesTo(const BV &to) argument
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dswapfs.c173 void ext2fs_swap_ext_attr(char *to, char *from, int bufsize, int has_header) argument
178 (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 */
57 /* to :: A pointer to the destination vector. */
60 /* user :: A pointer to the current walk context. */
66 BBox_Move_To( FT_Vector* to, argument
69 user->last = *to;
113 /* within the segment, equal to (y1*y3 - y2*y2)/(y1 - 2*y2 + y3). */
135 /* current bounding box, and computes its extrema if necessary to */
139 /* control :: A pointer to
154 BBox_Conic_To( FT_Vector* control, FT_Vector* to, TBBox_Rec* user ) argument
356 BBox_Cubic_To( FT_Vector* control1, FT_Vector* control2, FT_Vector* to, TBBox_Rec* user ) argument
[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
/external/icu/icu4c/source/test/cintltst/
H A Dcdateintervalformattest.c44 const UDate to; member in struct:__anon21998
92 int32_t fmtLen = udtitvfmt_format(udtitvfmt, testItemPtr->from, testItemPtr->to, result, kFormatBufLen, NULL, &status);
100 log_err("ERROR: udtitvfmt_format for locale %s, skeleton %s, tzid %s, from %.1f, to %.1f: expect %s, get %s\n",
101 testItemPtr->locale, testItemPtr->skeleton, tzidForLog, testItemPtr->from, testItemPtr->to,
105 log_err("FAIL: udtitvfmt_format for locale %s, skeleton %s, tzid %s, from %.1f, to %.1f: %s\n",
106 testItemPtr->locale, testItemPtr->skeleton, tzidForLog, testItemPtr->from, testItemPtr->to, myErrorName(status) );
/external/icu/icu4c/source/test/intltest/
H A Dpptest.cpp60 int to = 5; local
61 ParsePosition pp2( to );
217 * Need to override ParsePosition.equals and FieldPosition.equals.
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dbreakpoint.c17 * along with this program; if not, write to the Free Software
36 int to = from + len; local
38 int to_byte = to / 8;
46 c = ((unsigned char)(c << (8 - to % 8))) >> (8 - to % 8);
55 if (from_byte < to_byte && (to % 8 != 0)) {
57 c = ((unsigned char)(c << (8 - to % 8))) >> (8 - to % 8);
67 int to = from + len; local
69 int to_byte = to /
[all...]
/external/mesa3d/src/gallium/winsys/sw/fbdev/
H A Dfbdev_sw_winsys.c7 * Permission is hereby granted, free of charge, to any person obtaining a
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
95 /* nothing to copy */
105 /* nothing to copy */
119 char *to local
[all...]
/external/mesa3d/src/glsl/
H A Dloop_controls.cpp4 * Permission is hereby granted, free of charge, to any person obtaining a
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
33 * Works backwards from the loop to find the pre-loop value of the variable.
34 * This is used, for example, to find the initial value of loop induction
38 * \param var Variable whose initializer is to b
85 calculate_iterations(ir_rvalue *from, ir_rvalue *to, ir_rvalue *increment, enum ir_expression_operation op) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_clip_util.c3 Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to
6 Permission is hereby granted, free of charge, to any person obtaining
8 "Software"), to deal in the Software without restriction, including
9 without limitation the rights to use, copy, modify, merge, publish,
10 distribute, sublicense, and/or sell copies of the Software, and to
11 permit persons to whom the Software is furnished to do so, subject to
89 /* Project 'pos' to screen space (or back again), overwrite with results:
118 * to scree
297 brw_clip_copy_colors( struct brw_clip_compile *c, GLuint to, GLuint from ) argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
H A DBeanCopier.java10 * Unless required by applicable law or agreed to in writing, software
55 abstract public void copy(Object from, Object to, Converter converter); argument
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
H A DMediaDataBox.java10 * Unless required by applicable law or agreed to in writing, software
42 * In large presentations, it may be desirable to have more data in this box than a 32-bit size would permit. In this
45 * metadata refers to media data by its absolute offset within the file (see {@link com.coremedia.iso.boxes.StaticChunkOffsetBox});
68 * If the whole content is just in one mapped buffer keep a strong reference to it so it is
85 private static void transfer(FileChannel from, long position, long count, WritableByteChannel to) throws IOException { argument
92 offset += from.transferTo(position + offset, Math.min(maxCount, count - offset), to);
110 * need to write this mdat here. This method just makes sure that we haven't already
122 assert h2.equals(header) : "It seems that the content I want to read has already been overwritten.";
174 "Delayed reading of mdat content failed. Make sure not to close " +
175 "the FileChannel that has been used to creat
[all...]
/external/openssl/crypto/asn1/
H A Da_int.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.
96 * encoding, except if the first byte is >= 0x80 we need to add a zero pad.
101 * adding one to the result. This can be done less messily with a little trick.
103 * complement and 0 by the add one (due to carry) so just copy as many trailing
104 * zeros to the destination as there are in the source. The carry will add one
105 * to the last none zero octet: so complement this octet and add one and finally
106 * complement any left over until you get to th
183 unsigned char *to,*s; local
[all...]
/external/openssl/crypto/rsa/
H A Drsa_oaep.c35 int RSA_padding_add_PKCS1_OAEP(unsigned char *to, int tlen, argument
56 to[0] = 0;
57 seed = to + 1;
58 db = to + SHA_DIGEST_LENGTH + 1;
95 int RSA_padding_check_PKCS1_OAEP(unsigned char *to, int tlen, argument
102 /* |em| is the encoded message, zero-padded to exactly |num| bytes:
131 * Always do this zero-padding copy (even when num == flen) to avoid
133 * information, but it's impossible to have a fixed memory access
198 memcpy(to, db + msg_index, mlen);
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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 */
57 /* to :: A pointer to the destination vector. */
60 /* user :: A pointer to the current walk context. */
66 BBox_Move_To( FT_Vector* to, argument
69 user->last = *to;
146 /* current bounding box, and computes its extrema if necessary to */
150 /* control :: A pointer to a control point. */
152 /* to
165 BBox_Conic_To( FT_Vector* control, FT_Vector* to, TBBox_Rec* user ) argument
519 BBox_Cubic_To( FT_Vector* control1, FT_Vector* control2, FT_Vector* to, TBBox_Rec* user ) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_blit.c16 License along with this library; if not, write to the Free Software
100 /* We need to unlock the surfaces if they're locked */
112 static __inline__ void SDL_memcpyMMX(Uint8 *to, const Uint8 *from, int len) argument
120 : : "r" (from), "r" (to) : "memory");
122 to+=8;
125 SDL_memcpy(to, from, len&7);
129 static __inline__ void SDL_memcpySSE(Uint8 *to, const Uint8 *from, int len) argument
145 : : "r" (from), "r" (to) : "memory");
147 to+=8;
150 SDL_memcpy(to, fro
[all...]
/external/smack/src/org/jivesoftware/smackx/
H A DMessageEventManager.java14 * Unless required by applicable law or agreed to in writing, software
39 * level access to request for notifications and send event notifications. It also provides
40 * an easy way to hook up custom logic when requests or notifications are received.
57 * @param con a Connection to a XMPP server.
65 * Adds event notification requests to a message. For each event type that
67 * should be passed in to this method.
69 * @param message the message to add the requested notifications.
78 // Create a MessageEvent Package and add it to the message
229 * Sends the notification that the message was delivered to the sender of the original message
231 * @param to th
234 sendDeliveredNotification(String to, String packetID) argument
252 sendDisplayedNotification(String to, String packetID) argument
270 sendComposingNotification(String to, String packetID) argument
288 sendCancelledNotification(String to, String packetID) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DMethodImplementationBuilder.java16 * contributors may be used to endorse or promote products derived from
63 * Any previous unplaced references to a label of this name will now refer to this label/location
65 * @param name The name of the label to add
87 * Get a reference to a label with the given name.
91 * point to define the location of the label.
93 * @param name The name of the label to get
107 @Nonnull Label to, @Nonnull Label handler) {
108 impl.addCatch(type, from, to, handler);
111 public void addCatch(@Nullable String type, @Nonnull Label from, @Nonnull Label to, argument
106 addCatch(@ullable TypeReference type, @Nonnull Label from, @Nonnull Label to, @Nonnull Label handler) argument
116 addCatch(@onnull Label from, @Nonnull Label to, @Nonnull Label handler) argument
[all...]
/external/valgrind/main/callgrind/
H A Dcallstack.c22 along with this program; if not, write to the Free Software
35 /* Stack of current thread. Gets initialized when switching to 1st thread.
110 VG_(printf)(" call stack enlarged to %d entries\n",
127 "Entering %s: Verbosity set to %d\n",
143 CLG_DEBUG(2," entering %s: toggled collection state to %s\n",
161 CLG_DEBUG(2," leaving %s: toggled collection state to %s\n",
172 "Leaving %s: Verbosity set back to %d\n",
182 * A jump from <from> to <to>, with <sp>.
183 * If <skip> is true, this is a call to
186 push_call_stack(BBCC* from, UInt jmp, BBCC* to, Addr sp, Bool skip) argument
[all...]
/external/valgrind/main/tests/
H A Ds390x_features.c32 // z9 -- Host needs to be a z9 (and nothing else)
33 // z9: -- Host needs to be a z9 or any later model
34 // :z9 -- Host needs to be a model up to and including z9
35 // z900:z9 -- Host needs to be at least a z900 and at most a z9.
77 /* Array needs to be sorted chronologically. Oldest to newest */
128 claimed to be a regular file. */
197 Principles of Ops "facility indications" section to a bit mask */
204 model_info *host, *from, *to, * local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs6 * Conversion to C#:
18 * 3. The name of the author may not be used to endorse or promote products
46 * operations are done lazily--only if you convert the buffer to a
48 * all the time. As the buffer of tokens is converted to strings, the
49 * toString() method(s) check to see if there is an operation at the
73 * input.insertAfter(t, "text to put after t");}
77 * Actually, you have to cast the 'input' to a TokenRewriteStream. :(
85 * tokens.insertAfter("pass1", t, "text to put after t");}
117 * Execute the rewrite operation by possibly adding to th
152 ReplaceOp(TokenRewriteStream stream, int from, int to, object text) argument
168 DeleteOp(TokenRewriteStream stream, int from, int to) argument
279 Replace(int from, int to, object text) argument
287 Replace(IToken from, IToken to, object text) argument
291 Replace(string programName, int from, int to, object text) argument
301 Replace(string programName, IToken from, IToken to, object text) argument
312 Delete(int from, int to) argument
320 Delete(IToken from, IToken to) argument
324 Delete(string programName, int from, int to) argument
328 Delete(string programName, IToken from, IToken to) argument
[all...]

Completed in 5689 milliseconds

1234567891011>>