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

1 2 3 4 5 6 7 8 91011>>

  /device/google/marlin/
init.power.sh 10 function copy() { function
  /device/google/wahoo/
init.power.sh 10 function copy() { function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
strdup.c 9 register char *copy = malloc(strlen(str) + 1); local
10 if (copy != NULL)
11 return strcpy(copy, str);
  /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;
  /external/python/cpython2/Python/
strdup.c 9 register char *copy = malloc(strlen(str) + 1); local
10 if (copy != NULL)
11 return strcpy(copy, str);
  /external/python/cpython3/Python/
strdup.c 9 char *copy = malloc(strlen(str) + 1); local
10 if (copy != NULL)
11 return strcpy(copy, str);
  /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;
  /bionic/tools/relocation_packer/
Android.mk 6 # You may obtain a copy of the License at
22 define copy-test-library
33 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm32.so))
34 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm32_packed.so))
35 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm64.so))
36 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm64_packed.so))
37 $(eval $(call copy-test-library,elf_file_unittest_relocs_ia32.so))
38 $(eval $(call copy-test-library,elf_file_unittest_relocs_ia32_packed.so))
39 $(eval $(call copy-test-library,elf_file_unittest_relocs_x64.so))
40 $(eval $(call copy-test-library,elf_file_unittest_relocs_x64_packed.so)
    [all...]
  /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 17 char *copy = strdup(kString); local
18 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);
  /test/vts/tools/build/utils/
vts_package_utils.mk 6 # You may obtain a copy of the License at
17 # $(1): List of target native files to copy.
18 # $(2): Copy destination directory.
20 define target-native-copy-pairs
35 # $(1): List of host native files to copy.
36 # $(2): Copy destination directory.
38 define host-native-copy-pairs
  /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/perfetto/src/ftrace_reader/
format_parser_unittest.cc 6 * You may obtain a copy of the License at
119 std::string copy = input; local
120 copy.erase(i, j);
121 ParseFtraceEvent(copy);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowFileUtils.java 16 protected static long copy( FileDescriptor in, FileDescriptor out, method in class:ShadowFileUtils
19 // never do the native copy optimization block
  /frameworks/wilhelm/tools/hashgen/
test.c 6 * You may obtain a copy of the License at
39 const struct SLInterfaceID_ copy = *original; local
40 MPH = IID_to_MPH(&copy);
42 fprintf(stderr, "error: IID_to_MPH(copy) = %d != %d\n", MPH, i);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
grammar.py 100 def copy(self): member in class:Grammar
102 Copy the grammar.
107 setattr(new, dict_attr, getattr(self, dict_attr).copy())
  /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)

Completed in 544 milliseconds

1 2 3 4 5 6 7 8 91011>>