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

<<11121314151617181920>>

  /external/mesa3d/src/mapi/glapi/gen/
glX_proto_send.py 7 # copy of this software and associated documentation files (the "Software"),
9 # on the rights to use, copy, modify, merge, publish, distribute, sub
30 import sys, getopt, copy, string namespace
97 p = copy.copy(_p)
119 pad = copy.copy(p)
    [all...]
glX_proto_size.py 7 # copy of this software and associated documentation files (the "Software"),
9 # on the rights to use, copy, modify, merge, publish, distribute, sub
30 import sys, getopt, copy, string namespace
  /external/openfst/src/include/fst/
prune.h 5 // You may obtain a copy of the License at
252 vector<StateId> copy; local
259 while (copy.size() <= s)
260 copy.push_back(kNoStateId);
261 copy[s] = ofst->AddState();
262 ofst->SetStart(copy[s]);
278 ofst->SetFinal(copy[s], ifst.Final(s));
297 while (copy.size() <= arc.nextstate)
298 copy.push_back(kNoStateId);
299 if (copy[arc.nextstate] == kNoStateId
    [all...]
  /external/pixman/demos/
gtk-utils.c 136 pixman_image_t *copy; local
160 copy = pixman_image_ref (image);
164 copy = pixman_image_create_bits (PIXMAN_a8r8g8b8,
167 image, NULL, copy,
173 g_signal_connect (window, "expose_event", G_CALLBACK (on_expose), copy);
  /external/ppp/pppd/plugins/rp-pppoe/
common.c 166 * 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 */
434 /* Copy error message */
446 /* Copy cookie and relay-ID if needed */
  /external/proguard/src/proguard/classfile/instruction/
ConstantInstruction.java 17 * You should have received a copy of the GNU General Public License along
81 public ConstantInstruction copy(ConstantInstruction constantInstruction) method in class:ConstantInstruction
  /external/qemu/distrib/zlib-1.2.3/
infback.c 254 unsigned copy; /* number of stored or match bytes to copy */ local
255 unsigned char FAR *from; /* where to copy match bytes from */
258 unsigned len; /* length to copy for repeats, bits to drop */
331 /* copy stored block from input to output */
333 copy = state->length;
336 if (copy > have) copy = have;
337 if (copy > left) copy = left
    [all...]
  /external/qemu/slirp/
socket.c 217 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/skia/src/animator/
SkDisplayAdd.cpp 45 SkAdd* copy = (SkAdd*) INHERITED::deepCopy(maker); local
46 copy->use = use = saveUse;
47 copy->where = where = saveWhere;
48 return copy;
SkDrawColor.cpp 137 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/
SkDescriptor.h 83 SkDescriptor* copy() const { function in class:SkDescriptor
SkPathRef.cpp 21 SkPathRef* copy = SkNEW(SkPathRef); local
22 copy->copy(**pathRef, incReserveVerbs, incReservePoints);
23 pathRef->reset(copy);
224 // We've done the work to determine that these are equal. If either has a zero genID, copy
269 void SkPathRef::copy(const SkPathRef& ref, function in class:SkPathRef
279 // a copy then presumably we intend to make a modification immediately afterwards.
  /external/skia/src/pdf/
SkTSet.h 218 void copy(T* dst) const { function in class:SkTSet
290 // Copy and sort fOrderedArray, then compare to fSetArray.
  /external/skia/src/utils/mac/
SkCreateCGImageRef.cpp 93 SkBitmap* copy; local
95 copy = new SkBitmap;
96 // here we make a ceep copy of the pixels, since CG won't take our
98 bm.copyTo(copy, SkBitmap::kARGB_8888_Config);
100 copy = new SkBitmap(bm);
102 return copy;
  /external/skia/tests/
GpuBitmapCopyTest.cpp 39 * @param desiredConfig Config being copied to. If the copy succeeded, dst must have this Config.
40 * @param success True if the copy succeeded.
53 // FIXME: When calling copyTo (so deepCopy is false here), sometimes we copy the pixels
73 // If dst is not a texture, do a copy instead, to the same config as srcReadBack.
74 bool copy = dst.copyTo(&dstReadBack, srcReadBack.config()); local
75 REPORTER_ASSERT(reporter, copy);
PointTest.cpp 111 SkPoint copy = pt; local
114 REPORTER_ASSERT(reporter, pt == copy); // pt is unchanged
117 REPORTER_ASSERT(reporter, pt == copy); // pt is unchanged
  /external/skia/tools/
render_pdfs_main.cpp 94 SkBitmap copy; local
95 bitmap.deepCopyTo(&copy, bitmap.config());
96 bm = copy;
  /external/stlport/stlport/stl/
char_traits.h 11 * 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
  /external/valgrind/main/none/tests/s390x/
mvcl.c 86 /* Make a copy of the input buffer */
87 void *copy = memcpy(malloc(len1), addr1, len1); local
110 memcpy(addr1, copy, len1);
  /external/zlib/src/
infback.c 263 unsigned copy; /* number of stored or match bytes to copy */ local
264 unsigned char FAR *from; /* where to copy match bytes from */
267 unsigned len; /* length to copy for repeats, bits to drop */
340 /* copy stored block from input to output */
342 copy = state->length;
345 if (copy > have) copy = have;
346 if (copy > left) copy = left
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/
AACEncoder.cpp 6 * You may obtain a copy of the License at
63 mMemOperator->Copy = cmnMemCopy;
271 size_t copy = (nSamples - mNumInputSamples) * sizeof(int16_t); local
273 if (copy > mInputBuffer->range_length()) {
274 copy = mInputBuffer->range_length();
280 copy);
283 mInputBuffer->range_offset() + copy,
284 mInputBuffer->range_length() - copy);
290 mNumInputSamples += copy / sizeof(int16_t);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/
SoftAMRNBEncoder.cpp 6 * You may obtain a copy of the License at
301 size_t copy = numBytesPerInputFrame - mInputSize; local
302 if (copy > inHeader->nFilledLen) {
303 copy = inHeader->nFilledLen;
310 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
311 mInputSize += copy;
313 inHeader->nOffset += copy;
314 inHeader->nFilledLen -= copy;
319 (copy * 1000000ll / kSampleRate) / sizeof(int16_t);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/
SoftAMRWBEncoder.cpp 6 * You may obtain a copy of the License at
124 mMemOperator->Copy = cmnMemCopy;
348 size_t copy = numBytesPerInputFrame - mInputSize; local
349 if (copy > inHeader->nFilledLen) {
350 copy = inHeader->nFilledLen;
357 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
358 mInputSize += copy;
360 inHeader->nOffset += copy;
361 inHeader->nFilledLen -= copy;
366 (copy * 1000000ll / kSampleRate) / sizeof(int16_t)
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/net/
NetworkStatsFactoryTest.java 6 * You may obtain a copy of the License at
129 * Copy a {@link Resources#openRawResource(int)} into {@link File} for
139 Streams.copy(in, out);
  /frameworks/base/libs/hwui/
GradientCache.h 6 * You may obtain a copy of the License at
41 copy(colors, positions, count);
45 copy(entry.colors, entry.positions, entry.count);
58 copy(entry.colors, entry.positions, entry.count);
81 void copy(uint32_t* colors, float* positions, uint32_t count) { function in struct:android::uirenderer::GradientCacheEntry

Completed in 976 milliseconds

<<11121314151617181920>>