/bionic/libc/upstream-openbsd/lib/libc/string/ |
stpcpy.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 40 stpcpy(char *to, const char *from) 42 for (; (*to = *from) != '\0'; ++from, ++to); 43 return(to);
|
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 40 strcpy(char *to, const char *from) 42 char *save = to; 44 for (; (*to = *from) != '\0'; ++from, ++to);
|
/external/libpng/tests/ |
pngvalid-gamma-16-to-8 | 2 exec ./pngvalid --gamma-16-to-8
|
/external/libutf/ |
utfecpy.c | 4 * Permission to use, copy, modify, and distribute this software for any 20 utfecpy(char *to, char *e, const char *from) 24 if(to >= e) 25 return to; 26 end = (char*)memccpy(to, from, '\0', e - to); 29 while(end>to && (*--end&0xC0)==0x80)
|
/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/chromium_org/third_party/WebKit/Source/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, 38 inline int blend(int from, int to, double progress) 40 return lround(from + (to - from) * progress); 45 inline T blend(T from, T to, double progress) 48 return clampTo<T>(round(to > from ? from + (to - from) * progress : from - (from - to) * progress)); 51 inline double blend(double from, double to, double progress) 53 return from + (to - from) * progress [all...] |
/external/valgrind/main/none/tests/ |
pth_blockedsig.stdout.exp | 1 thread CHILD sending SIGUSR1 to thread MAIN
|
/external/valgrind/main/none/tests/s390x/ |
ecag.stdout.exp | 1 just to silence the consistency checker
|
/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/chromium_org/third_party/WebKit/Source/platform/transforms/ |
TransformationMatrixTest.cpp | 16 TransformationMatrix to(2.7133590938, 0.0, 0.0, 0.0, 0.0, 2.4645137761, 0.0, 0.0, 0.0, 0.0, 0.00, 0.01, 0.02, 0.03, 0.04, 0.05); 19 result = to; 23 result = to; 25 EXPECT_TRUE(result == 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/pae/ |
Makefile | 2 @echo Nothing to be made. 8 @echo Nothing to be made.
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
StrSegment.java | 10 * Unless required by applicable law or agreed to in writing, software 23 * It is used to represent the layers of the composing text ({@link ComposingText}). 33 public int to; field in class:StrSegment 65 * @param to The end position 67 public StrSegment(String str, int from, int to) { 70 this.to = to;
|
/external/jsilver/src/com/google/streamhtmlparser/impl/ |
StateTableTransition.java | 10 * Unless required by applicable law or agreed to in writing, software 32 * state to go from A to B for any character that is either 1,2,3 or in 39 private final InternalState to; field in class:StateTableTransition 44 * specified and is subject to change. 50 return String.format("Expression: %s; From: %s; To: %s", 51 expression, from, to); 55 InternalState to) { 59 Preconditions.checkNotNull(to); 62 this.to = to [all...] |