Searched defs:from (Results 101 - 125 of 578) sorted by relevance

1234567891011>>

/external/boringssl/src/crypto/
H A Dtime_support.c27 * endorse or promote products derived from this software without
31 * 5. Products derived from this software may not be called "OpenSSL"
86 /* Convert date to and from julian day Uses Fliegel & Van Flandern algorithm */
180 int OPENSSL_gmtime_diff(int *pday, int *psec, const struct tm *from, argument
185 if (!julian_adj(from, 0, 0, &from_jd, &from_sec)) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DArrays.java686 * Make a copy of a range of bytes from the passed in data array. The range can
690 * @param data the array from which the data is to be copied.
691 * @param from the start index at which the copying should take place.
696 public static byte[] copyOfRange(byte[] data, int from, int to) argument
698 int newLength = getLength(from, to);
702 if (data.length - from < newLength)
704 System.arraycopy(data, from, tmp, 0, data.length - from);
708 System.arraycopy(data, from, tmp, 0, newLength);
714 public static int[] copyOfRange(int[] data, int from, in argument
732 copyOfRange(long[] data, int from, int to) argument
750 copyOfRange(BigInteger[] data, int from, int to) argument
768 getLength(int from, int to) argument
[all...]
H A DStrings.java352 public String[] toStringArray(int from, int to) argument
354 String[] strs = new String[to - from];
356 for (int i = from; i != this.size() && i != to; i++)
358 strs[i - from] = this.get(i);
/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
53 t1.copyFrom(from);
64 // Returns true if an edge from=>to exist.
66 // and thus can be called from different threads w/o locking.
69 bool hasEdge(uptr from, uptr to) { return v[from].getBit(to); } argument
71 // Returns true if the edge from
72 removeEdge(uptr from, uptr to) argument
87 removeEdgesFrom(const BV &from) argument
100 removeEdgesFrom(uptr from) argument
104 hasEdge(uptr from, uptr to) const argument
111 isReachable(uptr from, const BV &targets) argument
128 findPath(uptr from, const BV &targets, uptr *path, uptr path_size) argument
145 findShortestPath(uptr from, const BV &targets, uptr *path, uptr path_size) argument
[all...]
/external/doclava/src/com/google/doclava/
H A DClearPage.java160 public static void copyFile(boolean allowExcepted, File from, String toPath) { argument
165 if (!from.exists()) {
168 in = new FileInputStream(from);
170 System.err.println(from.getAbsolutePath() + ": Error opening file");
177 System.err.println(from.getAbsolutePath() + ": Error opening file");
181 Errors.error(Errors.INVALID_CONTENT_TYPE, null, "Failed to process " + from
186 long sizel = from.length();
194 System.err.println(from.getAbsolutePath() + ": error reading file");
201 System.err.println(from.getAbsolutePath() + ": error writing file");
/external/e2fsprogs/lib/ext2fs/
H A Dswapfs.c173 void ext2fs_swap_ext_attr(char *to, char *from, int bufsize, int has_header) argument
176 (struct ext2_ext_attr_header *)from;
/external/guava/guava/src/com/google/common/base/
H A DFunctions.java41 * @since 2.0 (imported from Google Collections Library)
298 public E apply(@Nullable Object from) { argument
/external/guava/guava/src/com/google/common/collect/
H A DGeneralRange.java44 static <T extends Comparable> GeneralRange<T> from(Range<T> range) { method in class:GeneralRange
247 Ordering.from(comparator).reverse(), hasUpperBound, getUpperEndpoint(),
/external/guava/guava/src/com/google/common/hash/
H A DFunnels.java37 * Returns a funnel that extracts the bytes from a {@code byte} array.
46 public void funnel(byte[] from, PrimitiveSink into) { argument
47 into.putBytes(from);
56 * Returns a funnel that extracts the characters from a {@code CharSequence}, a character at a
67 * Returns a funnel that extracts the characters from a {@code CharSequence}.
80 public void funnel(CharSequence from, PrimitiveSink into) { argument
81 into.putUnencodedChars(from);
106 public void funnel(CharSequence from, PrimitiveSink into) { argument
107 into.putString(from, charset);
157 public void funnel(Integer from, PrimitiveSin argument
183 funnel(Iterable<? extends E> from, PrimitiveSink into) argument
218 funnel(Long from, PrimitiveSink into) argument
[all...]
/external/guava/guava/src/com/google/common/reflect/
H A DInvokable.java67 public static Invokable<?, Object> from(Method method) { method in class:Invokable
72 public static <T> Invokable<T, T> from(Constructor<T> constructor) { method in class:Invokable
115 * {@code this} parameter of the enclosing class is excluded from the returned parameters.
/external/guava/guava/src/com/google/common/util/concurrent/
H A DService.java39 * <p>There are deviations from this if there are failures or if {@link Service#stopAsync} is called
162 * @throws IllegalStateException if the service reaches a state from which it is not possible to
178 * @throws IllegalStateException if the service reaches a state from which it is not possible to
228 * may execute concurrently, and listeners may execute in an order different from the one in which
247 * from {@code A -> B} then {@code A.compareTo(B} < 0}. N.B. The converse is not true, i.e. if
327 * Called when the service transitions from {@linkplain State#NEW NEW} to
334 * Called when the service transitions from {@linkplain State#STARTING STARTING} to
341 * only valid values for {@code from} are {@linkplain State#STARTING STARTING} or
344 * @param from The previous state that is being transitioned from
346 stopping(State from) argument
358 terminated(State from) argument
370 failed(State from, Throwable failure) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DSortedMultisetTestSuiteBuilder.java107 * Two bounds (from and to) define how to build a subMultiset.
148 SortedMultisetTestSuiteBuilder<E> parentBuilder, final Bound from,
189 if (from == Bound.NO_BOUND) {
207 if (from == Bound.INCLUSIVE) {
210 } else if (from == Bound.EXCLUSIVE) {
223 .named(parentBuilder.getName() + " subMultiset " + from + "-" + to)
147 createSubMultisetSuite( SortedMultisetTestSuiteBuilder<E> parentBuilder, final Bound from, final Bound to) argument
/external/guava/guava-tests/benchmark/com/google/common/collect/
H A DMinMaxPriorityQueueBenchmark.java124 public BigInteger apply(Integer from) { argument
125 BigInteger v = BigInteger.valueOf(from);
/external/guava/guava-tests/test/com/google/common/cache/
H A DTestingCacheLoaders.java116 public Object load(Object from) { argument
/external/guava/guava-tests/test/com/google/common/collect/
H A DComputingConcurrentHashMapTest.java306 public Object apply(Object from) { argument
/external/icu/icu4c/source/test/cintltst/
H A Dcdateintervalformattest.c43 const UDate from; member in struct:__anon5770
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/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DFCDUTF16CollationIterator.java6 * FCDUTF16CollationIterator.java, ported from utf16collationiterator.h/.cpp
214 // Turn around from backward checking.
228 // Switch to checking forward from it.
294 // Turn around from forward checking.
308 // Switch to checking backward from it.
363 private void normalize(int from, int to) { argument
368 nfcImpl.decompose(rawSeq, from, to, normalized, to - from);
371 segmentStart = from;
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DXEquivalenceMap.java105 return UnmodifiableIterator.from(target_sourceSet.values());
120 public static <T> UnmodifiableIterator<T> from(Iterator<T> source) { method in class:XEquivalenceMap.UnmodifiableIterator
126 public static <T> UnmodifiableIterator<T> from(Iterable<T> source) { method in class:XEquivalenceMap.UnmodifiableIterator
127 return from(source.iterator());
/external/ipsec-tools/src/racoon/
H A Dadmin.c18 * may be used to endorse or promote products derived from this software
102 struct sockaddr_storage from; local
103 socklen_t fromlen = sizeof(from);
108 so2 = accept(lcconf->sock_admin, (struct sockaddr *)&from, &fromlen);
/external/jetty/src/java/org/eclipse/jetty/servlet/
H A DErrorPageErrorHandler.java170 * This method is not available from web.xml and must be called
172 * @param from The lowest matching status code
176 public void addErrorPage(int from, int to, String uri) argument
178 _errorPageList.add(new ErrorCodeRange(from, to, uri));
197 ErrorCodeRange(int from, int to, String uri) argument
200 if (from > to)
201 throw new IllegalArgumentException("from>to");
203 _from = from;
226 return "from: " + _from + ",to: " + _to + ",uri: " + _uri;
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DUnmodifiableData.java40 public void copy(Data from) { argument
45 public void copy(String toPath, Data from) { argument
/external/kernel-headers/original/uapi/linux/
H A Dnbd.h9 * Removed unneeded blksize_bits field from nbd_device struct.
65 __be64 from; member in struct:nbd_request
76 char handle[8]; /* handle you got from request */
/external/libpcap/bpf/net/
H A Dbpf_filter.c5 * This code is derived from the Stanford/CMU enet packet filter,
23 * may be used to endorse or promote products derived from this software
551 u_int i, from; local
637 * an 8-bit offset, and the from address is <=
646 * For userland, we don't know that the from
648 * from <= len, and, except on a 64-bit system,
656 from = i + 1;
660 if (from + p->k < from || from
[all...]
/external/libpcap/
H A Dbpf_filter.c5 * This code is derived from the Stanford/CMU enet packet filter,
23 * may be used to endorse or promote products derived from this software
551 u_int i, from; local
637 * an 8-bit offset, and the from address is <=
646 * For userland, we don't know that the from
648 * from <= len, and, except on a 64-bit system,
656 from = i + 1;
660 if (from + p->k < from || from
[all...]
/external/ltrace/
H A Dglob.c28 match_character_class(const char *glob, size_t length, size_t from) argument
31 const char *colon = memchr(glob + from + 2, ':', length - 1);
38 match_brack(const char *glob, size_t length, size_t from, int *exclmp) argument
40 size_t i = from + 1;

Completed in 814 milliseconds

1234567891011>>