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

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libdwfl/
dwfl_module_report_build_id.c 14 You should have received a copy of the GNU General Public License along
81 void *copy = NULL; local
84 copy = malloc (len);
85 if (unlikely (copy == NULL))
90 memcpy (copy, bits, len);
95 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/bionic/
strndup.c 34 char* copy; local
38 copy = malloc(n+1);
39 if (copy) {
40 memcpy(copy, s, n);
41 copy[n] = 0;
43 return copy;
  /bionic/libc/string/
strdup.c 42 char *copy; local
45 if ((copy = malloc(siz)) == NULL)
47 (void)memcpy(copy, str, siz);
48 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));
  /external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/
devtools.js 8 // Make a shallow copy with a null prototype, so that sidebar does not
11 var copy = { __proto__: null };
13 copy[props[i]] = data[props[i]];
14 return copy;
  /external/clang/test/CodeGen/
2007-04-24-VolatileStructCopy.c 8 void copy(volatile struct foo *p, struct foo *q) { function
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
strdup_oob_test.cc 11 char *copy = strdup(kString); local
12 int x = copy[4 + argc]; // BOOM
  /external/tcpdump/missing/
strdup.c 50 char *copy; local
53 if ((copy = malloc(len)) == NULL)
55 memcpy(copy, str, len);
56 return (copy);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecASCIIFastPath.h 36 static void copy(LChar* destination, const uint8_t* source) function in struct:WTF::UCharByteFiller
41 static void copy(UChar* destination, const uint8_t* source) function in struct:WTF::UCharByteFiller
50 static void copy(LChar* destination, const uint8_t* source) function in struct:WTF::UCharByteFiller
55 static void copy(UChar* destination, const uint8_t* source) function in struct:WTF::UCharByteFiller
70 UCharByteFiller<sizeof(WTF::MachineWord)>::copy(destination, source);
75 UCharByteFiller<sizeof(WTF::MachineWord)>::copy(destination, source);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
xstrdup.c 48 char *copy; local
51 copy = yasm_xmalloc(len);
52 memcpy(copy, str, len);
53 return (copy);
60 char *copy; local
64 copy = yasm_xmalloc(len+1);
65 memcpy(copy, str, len);
66 copy[len] = '\0';
67 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/grub/stage2/
nbloader.S 15 * You should have received a copy of the GNU General Public License
52 * 1. Copy the first 32k to 0x8000 and jump to the relocated area.
53 * 2. Copy the rest to 0x10000 (0x8000 + 32k).
56 /* Copy the first 32k */
63 /* Always copy 32k bytes */
73 /* Copy the rest */
83 /* Copy by 32k, as that is easy to implement */
86 jg copy
89 copy: label
105 /* Use word-size copy */
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Memoable.java 6 * Produce a copy of this object with its configuration and in its current state.
11 public Memoable copy(); method in interface:Memoable
18 * @param other an object originally {@link #copy() copied} from an object of the same type as this instance.
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleFilterData.h 38 PassRefPtr<StyleFilterData> copy() const { return adoptRef(new StyleFilterData(*this)); } function in class:WebCore::StyleFilterData
  /external/chromium_org/third_party/WebKit/Source/platform/
CrossThreadCopier.cpp 43 CrossThreadCopierBase<false, false, KURL>::Type CrossThreadCopierBase<false, false, KURL>::copy(const KURL& url) function in class:WebCore::CrossThreadCopierBase
45 return url.copy();
48 CrossThreadCopierBase<false, false, String>::Type CrossThreadCopierBase<false, false, String>::copy(const String& str) function in class:WebCore::CrossThreadCopierBase
53 CrossThreadCopierBase<false, false, ResourceError>::Type CrossThreadCopierBase<false, false, ResourceError>::copy(const ResourceError& error) function in class:WebCore::CrossThreadCopierBase
55 return error.copy();
58 CrossThreadCopierBase<false, false, ResourceRequest>::Type CrossThreadCopierBase<false, false, ResourceRequest>::copy(const ResourceRequest& request) function in class:WebCore::CrossThreadCopierBase
63 CrossThreadCopierBase<false, false, ResourceResponse>::Type CrossThreadCopierBase<false, false, ResourceResponse>::copy(const ResourceResponse& response) function in class:WebCore::CrossThreadCopierBase
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ResourceError.cpp 44 ResourceError ResourceError::copy() const function in class:WebCore::ResourceError
  /external/chromium_org/tools/json_schema_compiler/
json_schema.py 5 import copy namespace
47 # Return a copy of the object so that any changes a caller makes won't affect
49 return copy.deepcopy(_cache[filename])
  /external/chromium_org/ui/gfx/
path_gtk.cc 36 GdkRegion* copy = gdk_region_copy(r1); local
37 gdk_region_intersect(copy, r2);
38 return copy;
43 GdkRegion* copy = gdk_region_copy(r1); local
44 gdk_region_union(copy, r2);
45 return copy;
50 GdkRegion* copy = gdk_region_copy(r1); local
51 gdk_region_subtract(copy, r2);
52 return copy;
  /external/compiler-rt/BlocksRuntime/tests/
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/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/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)
  /prebuilts/python/linux-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 5647 milliseconds

1 2 3 4 5 6 7 8 91011>>