Searched defs:copy (Results 176 - 200 of 425) sorted by relevance

1234567891011>>

/external/ppp/pppd/plugins/rp-pppoe/
H A Dcommon.c166 * str -- string to copy
168 * A malloc'd copy of str. Exits if malloc fails.
173 char *copy = malloc(strlen(str)+1); local
174 if (!copy) {
177 strcpy(copy, str);
178 return copy;
422 /* If we're using Host-Uniq, copy it over */
/external/proguard/src/proguard/classfile/instruction/
H A DConstantInstruction.java17 * You should have received a copy of the GNU General Public License along
81 public ConstantInstruction copy(ConstantInstruction constantInstruction) method in class:ConstantInstruction
/external/proguard/src/proguard/evaluation/
H A DStack.java17 * You should have received a copy of the GNU General Public License along
52 * Creates a Stack that is a copy of the given Stack.
60 copy(stack);
96 public void copy(Stack other) method in class:Stack
/external/qemu/distrib/zlib-1.2.3/
H A Dinflate.c20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
328 unsigned copy, dist; local
347 /* copy state->wsize or less output bytes into the circular window */
348 copy = out - strm->avail_out;
349 if (copy >= state->wsize) {
356 if (dist > copy) dist = copy;
357 zmemcpy(state->window + state->write, strm->next_out - copy, dis
565 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/external/qemu/hw/
H A Dfw_cfg.c6 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
206 uint16_t *copy; local
208 copy = qemu_malloc(sizeof(value));
209 *copy = cpu_to_le16(value);
210 return fw_cfg_add_bytes(opaque, key, (uint8_t *)copy, sizeof(value));
215 uint32_t *copy; local
217 copy = qemu_malloc(sizeof(value));
218 *copy = cpu_to_le32(value);
219 return fw_cfg_add_bytes(opaque, key, (uint8_t *)copy, sizeo
224 uint64_t *copy; local
[all...]
/external/qemu/slirp/
H A Dsocket.c217 int n, nn, copy = size; local
231 nn = MIN(iov[0].iov_len, copy);
234 copy -= nn;
237 if (copy == 0)
240 memcpy(iov[1].iov_base, buf, copy);
315 * we must copy all data to a linear buffer then
/external/qemu/slirp-android/
H A Dsocket.c225 int n, nn, copy = size; local
239 nn = MIN(iov[0].iov_len, copy);
242 copy -= nn;
245 if (copy == 0)
248 memcpy(iov[1].iov_base, buf, copy);
323 * we must copy all data to a linear buffer then
/external/quake/quake/src/QW/client/
H A Dnet_udp.c15 You should have received a copy of the GNU General Public License
124 char copy[128]; local
132 strcpy (copy, s);
134 for (colon = copy ; *colon ; colon++)
141 if (copy[0] >= '0' && copy[0] <= '9')
143 *(int *)&sadr.sin_addr = inet_addr(copy);
147 if (! (h = gethostbyname(copy)) )
H A Dnet_wins.c15 You should have received a copy of the GNU General Public License
100 char copy[128]; local
108 strcpy (copy, s);
110 for (colon = copy ; *colon ; colon++)
117 if (copy[0] >= '0' && copy[0] <= '9')
119 *(int *)&sadr.sin_addr = inet_addr(copy);
123 if ((h = gethostbyname(copy)) == 0)
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBitmap.java81 public Bitmap copy(Bitmap.Config config, boolean isMutable) { method in class:ShadowBitmap
/external/skia/include/core/
H A DSkTArray.h20 inline void copy(SkTArray<T, true>* self, const T* array) { function in namespace:SkTArrayExt
29 inline void copy(SkTArray<T, false>* self, const T* array) { function in namespace:SkTArrayExt
45 When MEM_COPY is false, T will be copy constructed / destructed.
87 * assign copy of array to this
96 SkTArrayExt::copy(this, static_cast<const T*>(array.fMemArray));
137 * Version of above that uses a copy constructor to initialize the new item
162 * Version of above that uses a copy constructor to initialize all n items
176 * Version of above that uses a copy constructor to initialize the n items
318 SkTArrayExt::copy(this, array);
359 template<typename X> friend void SkTArrayExt::copy(SkTArra
[all...]
H A DSkTDArray.h257 void copy(T* dst) const { function in class:SkTDArray
/external/skia/legacy/include/core/
H A DSkTArray.h20 inline void copy(SkTArray<T, true>* self, const T* array) { function in namespace:SkTArrayExt
29 inline void copy(SkTArray<T, false>* self, const T* array) { function in namespace:SkTArrayExt
45 When MEM_COPY is false, T will be copy constructed / destructed.
87 * assign copy of array to this
96 SkTArrayExt::copy(this, static_cast<const T*>(array.fMemArray));
137 * Version of above that uses a copy constructor to initialize the new item
162 * Version of above that uses a copy constructor to initialize all n items
176 * Version of above that uses a copy constructor to initialize the n items
318 SkTArrayExt::copy(this, array);
361 template<typename X> friend void SkTArrayExt::copy(SkTArra
[all...]
/external/skia/legacy/src/animator/
H A DSkDrawColor.cpp137 SkDrawColor* copy = new SkDrawColor(); local
138 copy->color = color;
139 copy->fHue = fHue;
140 copy->fSaturation = fSaturation;
141 copy->fValue = fValue;
142 copy->fDirty = fDirty;
143 return copy;
/external/skia/legacy/src/core/
H A DSkWriter32.cpp218 size_t SkReader32::readIntoString(SkString* copy) { argument
221 if (copy) {
222 copy->set(ptr, len);
/external/skia/legacy/src/views/
H A DSkEventSink.cpp214 SkEvent* copy = SkNEW_ARGS(SkEvent, (evt)); local
215 copy->setTargetID(*iter++)->postDelay(delay);
/external/skia/src/animator/
H A DSkDrawColor.cpp137 SkDrawColor* copy = new SkDrawColor(); local
138 copy->color = color;
139 copy->fHue = fHue;
140 copy->fSaturation = fSaturation;
141 copy->fValue = fValue;
142 copy->fDirty = fDirty;
143 return copy;
/external/skia/src/core/
H A DSkData.cpp74 void* copy = sk_malloc_throw(length); // balanced in sk_free_releaseproc local
75 memcpy(copy, data, length);
76 return new SkData(copy, length, sk_free_releaseproc, NULL);
92 We could, if we wanted/need to, just make a deep copy of src's data,
H A DSkDescriptor.h83 SkDescriptor* copy() const { function in class:SkDescriptor
H A DSkWriter32.cpp261 size_t SkReader32::readIntoString(SkString* copy) { argument
264 if (copy) {
265 copy->set(ptr, len);
/external/skia/src/utils/mac/
H A DSkCreateCGImageRef.cpp99 SkBitmap* copy; local
101 copy = new SkBitmap;
102 // here we make a ceep copy of the pixels, since CG won't take our
104 bm.copyTo(copy, SkBitmap::kARGB_8888_Config);
106 copy = new SkBitmap(bm);
108 return copy;
/external/skia/src/views/
H A DSkEventSink.cpp216 SkEvent* copy = SkNEW_ARGS(SkEvent, (evt)); local
217 copy->setTargetID(*iter++)->postDelay(delay);
/external/skia/tools/
H A Dskdiff_utils.cpp87 SkBitmap copy; local
88 bitmap.copyTo(&copy, SkBitmap::kARGB_8888_Config);
89 force_all_opaque(copy);
90 return SkImageEncoder::EncodeFile(path.c_str(), copy,
94 /// Return a copy of the "input" string, within which we have replaced all instances
/external/stlport/stlport/stl/
H A D_algobase.h18 * Permission to use or copy this software for any purpose is hereby granted
173 // copy
176 // calls to copy with memmove whenever possible. (Memmove, not memcpy,
291 inline _OutputIter copy(_InputIter __first, _InputIter __last, _OutputIter __result) { function
335 inline _Tp* copy(const _Tp* __first, const _Tp* __last, _Tp* __result) \
392 return _STLP_STD::pair<_RAIter, _OutputIter>(__last, _STLP_STD::copy(__first, __last, __result));
H A Dchar_traits.h11 * Permission to use or copy this software for any purpose is hereby granted
170 static char_type* _STLP_CALL copy(char_type* __s1, const char_type* __s2, size_t __n) { function in class:__char_traits_base
252 static wchar_t* _STLP_CALL copy(wchar_t* __dest, const wchar_t* __src, size_t __n) function in class:char_traits

Completed in 518 milliseconds

1234567891011>>