HomeSort by relevance Sort by last modified time
    Searched defs:copy (Results 1 - 25 of 2276) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libdwfl/
dwfl_module_report_build_id.c 60 void *copy = NULL; local
63 copy = malloc (len);
64 if (unlikely (copy == NULL))
69 memcpy (copy, bits, len);
74 mod->build_id_bits = copy;
  /ndk/sources/android/support/src/locale/
duplocale.c 40 locale_t copy = calloc(1, sizeof(*loc)); local
41 copy[0] = loc[0];
42 return copy;
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcsdup.c 36 wchar_t *copy; local
40 if ((copy = malloc(len * sizeof(wchar_t))) == NULL)
42 return (wmemcpy(copy, s, len));
  /bionic/libc/upstream-openbsd/lib/libc/string/
strdup.c 42 char *copy; local
45 if ((copy = malloc(siz)) == NULL)
47 (void)memcpy(copy, str, siz);
48 return(copy);
strndup.c 6 * Permission to use, copy, modify, and distribute this software for any
28 char *copy; local
32 copy = malloc(len + 1);
33 if (copy != NULL) {
34 (void)memcpy(copy, str, len);
35 copy[len] = '\0';
38 return copy;
  /device/huawei/angler/
init.angler.power.sh 10 function copy() { function
80 copy /sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_max_freq /sys/devices/system/cpu/cpu4/cpufreq/scaling_max_freq
  /device/lge/bullhead/
init.bullhead.power.sh 10 function copy() { function
91 copy /sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_max_freq /sys/devices/system/cpu/cpu4/cpufreq/scaling_max_freq
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/
smooth_gesture_util.py 4 import copy namespace
22 return copy.copy(interaction_record)
30 return copy.copy(interaction_record)
  /external/clang/test/CodeGen/
2007-04-24-VolatileStructCopy.c 8 void copy(volatile struct foo *p, struct foo *q) { function
  /external/compiler-rt/test/asan/TestCases/
strdup_oob_test.cc 11 char *copy = strdup(kString); local
12 int x = copy[4 + argc]; // BOOM
  /external/deqp/framework/delibs/decpp/
deMemPool.cpp 9 * You may obtain a copy of the License at
35 char* copy = (char*)pool->alloc(size); local
37 std::copy(string, string+size, copy);
39 return copy;
  /external/libedit/src/
wcsdup.c 9 * Permission to use or copy this software for any purpose is hereby granted
29 wchar_t *copy; local
35 copy = malloc(len * sizeof (wchar_t));
37 if (!copy)
40 return wmemcpy(copy, str, len);
  /external/tcpdump/missing/
strdup.c 45 char *copy; local
48 if ((copy = malloc(len)) == NULL)
50 memcpy(copy, str, len);
51 return (copy);
  /external/clang/test/SemaCXX/
constexpr-duffs-device.cpp 4 constexpr void copy(const char *from, unsigned long count, char *to) { function
22 copy("Hello, world!", 14, stuff);
  /external/skia/src/core/
SkPathRef.cpp 22 SkPathRef* copy = new SkPathRef; local
23 copy->copy(**pathRef, incReserveVerbs, incReservePoints);
24 pathRef->reset(copy);
282 void SkPathRef::copy(const SkPathRef& ref,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Memoable.java 5 * via the copy() method and then reseting the object back to that state later using the reset() method.
10 * Produce a copy of this object with its configuration and in its current state.
15 Memoable copy(); method in interface:Memoable
22 * @param other an object originally {@link #copy() copied} from an object of the same type as this instance.
  /external/compiler-rt/test/BlocksRuntime/
byrefcopyint.c 50 voidVoid copy = Block_copy(dummy); local
53 return copy;
byrefstruct.c 21 BobTheStruct copy; local
32 memset(&copy, 0x2A, sizeof(copy));
40 copy = fiddly;
43 if ( &copy == &fiddly ) {
48 //printf("[%d]: fiddly.ps: %lu, copy.ps: %lu, fiddly.qs: %d, copy.qs: %d\n", i, fiddly.ps[i], copy.ps[i], fiddly.qs[i], copy.qs[i]);
49 if ( (fiddly.ps[i] != copy.ps[i] + 1) || (fiddly.qs[i] != copy.qs[i] + 1) )
    [all...]
  /external/elfutils/libelf/
elf32_getphdr.c 133 /* Now copy the data and at the same time convert the
143 bool copy = ! (ALLOW_UNALIGNED local
147 if (! copy)
172 if (copy)
elf32_getshdr.c 107 /* Now copy the data and at the same time convert the byte order. */
117 bool copy = ! (ALLOW_UNALIGNED local
121 if (! copy)
167 if (copy)
  /external/javassist/src/main/javassist/bytecode/
DeprecatedAttribute.java 47 * Makes a copy.
49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:DeprecatedAttribute
SyntheticAttribute.java 47 * Makes a copy.
49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:SyntheticAttribute
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
dynOptionMenuWidget.py 7 import copy namespace
14 #get a copy of kwargs before OptionMenu.__init__ munges them
15 kwargsCopy=copy.copy(kwargs)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
dynOptionMenuWidget.py 7 import copy namespace
14 #get a copy of kwargs before OptionMenu.__init__ munges them
15 kwargsCopy=copy.copy(kwargs)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
dynOptionMenuWidget.py 7 import copy namespace
14 #get a copy of kwargs before OptionMenu.__init__ munges them
15 kwargsCopy=copy.copy(kwargs)

Completed in 1017 milliseconds

1 2 3 4 5 6 7 8 91011>>