HomeSort by relevance Sort by last modified time
    Searched refs:to (Results 1 - 25 of 11374) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/string/
strcpy.c 16 * may be used to endorse or promote products derived from this software
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 strcpy(char *to, const char *from)
37 char *save = to;
39 for (; (*to = *from) != '\0'; ++from, ++to);
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationUtilities.h 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
35 inline int blend(int from, int to, double progress)
37 return lround(from + (to - from) * progress);
40 inline unsigned blend(unsigned from, unsigned to, double progress)
42 return lround(to > from ? from + (to - from) * progress : from - (from - to) * progress);
45 inline double blend(double from, double to, double progress)
47 return from + (to - from) * progress
    [all...]
  /external/clang/test/SemaCXX/
constexpr-duffs-device.cpp 4 constexpr void copy(const char *from, unsigned long count, char *to) {
7 case 0: do { *to++ = *from++;
8 case 7: *to++ = *from++;
9 case 6: *to++ = *from++;
10 case 5: *to++ = *from++;
11 case 4: *to++ = *from++;
12 case 3: *to++ = *from++;
13 case 2: *to++ = *from++;
14 case 1: *to++ = *from++;
  /ndk/tests/build/test-gnustl-chrono/jni/
hanoi.c 3 void hanoi(int from, int to, int mid, int n, void (*callback)(int, int)) {
5 callback(from, to);
7 hanoi(from, mid, to, n - 1, callback);
8 callback(from, to);
9 hanoi(mid, to, from, n - 1, callback);
  /external/smack/src/org/jivesoftware/smack/filter/
ToContainsFilter.java 14 * Unless required by applicable law or agreed to in writing, software
26 * Filters for packets where the "to" field contains a specified value. For example,
27 * the filter could be used to listen for all packets sent to a group chat nickname.
33 private String to; field in class:ToContainsFilter
36 * Creates a "to" contains filter using the "to" field part.
38 * @param to the to field value the packet must contain.
40 public ToContainsFilter(String to) {
    [all...]
  /external/valgrind/main/gdbserver_tests/
mchelp.stderrB.exp 1 sending command help to pid ....
2 sending command help debug to pid ....
3 sending command v.kill to pid ....
mcinvokeRU.stderrB.exp 1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait 0 to pid ...
    [all...]
mcinvokeWS.stderrB.exp 1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait 0 to pid ...
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder_mem_funcs.h 10 * Unless required by applicable law or agreed to in writing, software
26 Permission to distribute, modify and use this file under the standard license
58 #define pv_memset(to, c, n) memset(to, c, n)
61 #define pv_memcpy(to, from, n) memcpy(to, from, n)
62 #define pv_memmove(to, from, n) memmove(to, from, n)
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
mp3_mem_funcs.h 10 * Unless required by applicable law or agreed to in writing, software
64 #define pv_memset(to, c, n) memset(to, c, n)
67 #define pv_memcpy(to, from, n) memcpy(to, from, n)
68 #define pv_memmove(to, from, n) memmove(to, from, n)
  /external/valgrind/main/none/tests/
pth_blockedsig.stdout.exp 1 thread CHILD sending SIGUSR1 to thread MAIN
  /frameworks/native/libs/binder/
TextOutput.cpp 10 * Unless required by applicable law or agreed to in writing, software
40 TextOutput& operator<<(TextOutput& to, bool val)
42 if (val) to.print("true", 4);
43 else to.print("false", 5);
44 return to;
47 TextOutput& operator<<(TextOutput& to, int val)
51 to.print(buf, strlen(buf));
52 return to;
55 TextOutput& operator<<(TextOutput& to, long val)
59 to.print(buf, strlen(buf))
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
CaseFormatTest.java 10 * Unless required by applicable law or agreed to in writing, software
39 assertSame(from + " to " + from, "foo", from.to(from, "foo"));
40 for (CaseFormat to : CaseFormat.values()) {
41 assertEquals(from + " to " + to, "", from.to(to, ""));
42 assertEquals(from + " to " + to, " ", from.to(to, " "))
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcpcpy.c 16 * may be used to endorse or promote products derived from this software
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
41 wcpcpy(wchar_t * __restrict to, const wchar_t * __restrict from)
44 for (; (*to = *from); ++from, ++to);
45 return(to);
  /external/clang/test/CodeGen/
2002-03-12-StructInitialize.c 5 long to; member in struct:Connection_Type
2002-03-12-StructInitializer.c 9 long to; member in struct:Connection_Type
  /external/valgrind/main/memcheck/tests/
malloc3.stderr.exp 1 Warning: silly arg (-1) to malloc()
2 Warning: silly args (0,-1) to calloc()
  /external/wpa_supplicant_8/src/ap/
Makefile 2 @echo Nothing to be made.
8 @echo Nothing to be made.
  /external/wpa_supplicant_8/src/common/
Makefile 2 @echo Nothing to be made.
8 @echo Nothing to be made.
  /external/wpa_supplicant_8/src/eap_common/
Makefile 2 @echo Nothing to be made.
8 @echo Nothing to be made.
  /external/wpa_supplicant_8/src/eap_server/
Makefile 2 @echo Nothing to be made.
8 @echo Nothing to be made.
  /external/wpa_supplicant_8/src/eapol_auth/
Makefile 2 @echo Nothing to be made.
8 @echo Nothing to be made.
  /external/wpa_supplicant_8/src/eapol_supp/
Makefile 2 @echo Nothing to be made.
8 @echo Nothing to be made.
  /external/wpa_supplicant_8/src/l2_packet/
Makefile 2 @echo Nothing to be made.
8 @echo Nothing to be made.
  /external/wpa_supplicant_8/src/rsn_supp/
Makefile 2 @echo Nothing to be made.
8 @echo Nothing to be made.

Completed in 1554 milliseconds

1 2 3 4 5 6 7 8 91011>>