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

<<31323334353637383940>>

  /external/mesa3d/src/mesa/vbo/
vbo_split_copy.c 9 * copy of this software and associated documentation files (the "Software"),
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
117 check_flush( struct copy_context *copy )
119 GLenum mode = copy->dstprim[copy->dstprim_nr].mode;
122 copy->dstelt_nr & 1) { /* see bug9962 */
126 if (copy->dstbuf_nr + 4 > copy->dstbuf_size)
129 if (copy->dstelt_nr + 4 > copy->dstelt_size
599 struct copy_context copy; local
    [all...]
  /external/openssl/crypto/evp/
evp_locl.h 297 int (*copy)(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src); member in struct:evp_pkey_method_st
  /external/openssl/ssl/
ssl_sess.c 151 /* aka SSL_get0_session; gets 0 objects, just returns a copy of the pointer */
533 int copy=1; local
535 if ((ret=s->session_ctx->get_session_cb(s,session_id,len,&copy)))
542 * it must handle the reference count itself [i.e. copy == 0],
544 if (copy)
    [all...]
  /external/qemu/
posix-aio-compat.c 270 * Ok, we have to do it the hard way, copy all segments into
287 size_t count = aiocb->aio_nbytes, copy; local
291 copy = count;
292 if (copy > aiocb->aio_iov[i].iov_len)
293 copy = aiocb->aio_iov[i].iov_len;
294 memcpy(aiocb->aio_iov[i].iov_base, p, copy);
295 p += copy;
296 count -= copy;
  /external/skia/src/animator/
SkDisplayable.cpp 76 SkDisplayable* copy = SkDisplayType::CreateInstance(maker, type); local
81 info = copy->getMember(++index);
87 copy->setProperty(propIndex, value);
98 SkTDOperandArray* copyArray = (SkTDOperandArray*) info->memberData(copy);
116 info->setMemberData(copy, deeper, sizeof(deeper));
122 info->setString(copy, string);
127 info->setMemberData(copy, data, size);
129 copy->dirty();
130 return copy;
  /external/skia/src/xml/
SkDOM.cpp 332 const SkDOM::Node* SkDOM::copy(const SkDOM& dom, const SkDOM::Node* node) function in class:SkDOM
  /external/skia/tests/
ClipStackTest.cpp 51 SkClipStack copy = s; local
52 REPORTER_ASSERT(reporter, s == copy);
57 REPORTER_ASSERT(reporter, s != copy);
65 REPORTER_ASSERT(reporter, s == copy);
75 REPORTER_ASSERT(reporter, s != copy);
87 REPORTER_ASSERT(reporter, s != copy);
98 REPORTER_ASSERT(reporter, s != copy);
104 copy.restore();
105 REPORTER_ASSERT(reporter, 2 == copy.getSaveCount());
106 REPORTER_ASSERT(reporter, s == copy);
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetUtils.py 12 You may obtain a copy of the License at
27 import copy namespace
38 """ Handles cut/copy/pasting of events and segments """
41 self.objSave = copy.deepcopy(objSave)
46 objSave = copy.deepcopy(self.objSave)
93 """ Saves the state for cut/copy/paste """
95 self.jet_file = copy.deepcopy(jet_file)
485 #make copy of object so we can modify it
486 jet_file = copy.deepcopy(jetFile)
759 jet_file = copy.deepcopy(org_jet_file)
    [all...]
  /external/stlport/stlport/stl/
_string_sum.h 8 * Permission to use or copy this software for any purpose is hereby granted
61 /*basic_string wrapper to ensure that we only store a reference to the original string and not copy it*/
179 size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const function in class:__bstr_sum
180 {return _M_get_storage().copy(__s, __n, __pos);}
  /external/strace/
mem.c 640 struct modify_ldt_ldt_s copy; local
644 || umove(tcp, tcp->u_arg[1], &copy) == -1)
647 tprintf(", {entry_number:%d, ", copy.entry_number);
651 print_ldt_entry(&copy);
663 struct modify_ldt_ldt_s copy; local
665 if (umove(tcp, tcp->u_arg[0], &copy) != -1) {
666 if (copy.entry_number == -1)
668 copy.entry_number);
673 if (umove(tcp, tcp->u_arg[0], &copy) != -1) {
674 tprintf("%d, ", copy.entry_number)
692 struct modify_ldt_ldt_s copy; local
    [all...]
  /external/tinyxml/
xmltest.cpp 575 // Copy and assignment
577 printf ("\n** Copy and Assignment **\n");
587 XmlTest( "Copy/Assign: element copy #1.", "element", elementCopy.Value() );
588 XmlTest( "Copy/Assign: element copy #2.", "value", elementCopy.Attribute( "name" ) );
589 XmlTest( "Copy/Assign: element assign #1.", "element", elementAssign.Value() );
590 XmlTest( "Copy/Assign: element assign #2.", "value", elementAssign.Attribute( "name" ) );
591 XmlTest( "Copy/Assign: element assign #3.", 0, (int) elementAssign.Attribute( "foo" ) );
598 XmlTest( "Copy/Assign: comment copy.", "comment", commentCopy.Value() )
637 std::string original, copy, assign; local
    [all...]
  /external/v8/src/
flags.cc 305 // make a copy so we can NUL-terminate flag name
472 // make a 0-terminated copy of str
478 char* copy = SkipWhiteSpace(copy0.start()); local
482 for (char* p = copy; *p != '\0'; argc++) {
492 for (char* p = copy; *p != '\0'; argc++) {
  /external/valgrind/main/VEX/switchback/
switchback.c 413 /* blargh. Copy the entire switchback_asm procedure into new
435 /* copy it into mallocville */
436 UChar* copy = mymalloc(nbytes); local
437 assert(copy);
439 copy[i] = sa_start[i];
441 UInt* p = (UInt*)(&copy[off_nopstart]);
487 invalidate_icache( copy, nbytes );
490 //printf("jumping to %p\n", copy);
493 faketoc[0] = (ULong)copy;
498 ( (void(*)(void))copy )();
    [all...]
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 6 * You may obtain a copy of the License at
50 void copy(size_t from, void *data, size_t size);
137 void PageCache::copy(size_t from, void *data, size_t size) { function in class:android::PageCache
138 ALOGV("copy from %d size %d", from, size);
167 size_t copy = (*it)->mSize; local
168 if (copy > size) {
169 copy = size;
171 memcpy(data, (*it)->mData, copy);
172 data = (uint8_t *)data + copy;
173 size -= copy;
    [all...]
  /frameworks/av/media/libstagefright/chromium_http/
support.cpp 6 * You may obtain a copy of the License at
496 size_t copy = mNumBytesTotal - mNumBytesRead; local
497 if (copy > mReadBuffer->size()) {
498 copy = mReadBuffer->size();
502 if (request->Read(mReadBuffer, copy, &n)) {
505 CHECK_LE((size_t)n, copy);
  /frameworks/av/media/libstagefright/id3/
ID3.cpp 6 * You may obtain a copy of the License at
46 size_t copy = (available > size) ? size : available; local
47 memcpy(data, mData + offset, copy);
49 return copy;
196 void *copy = malloc(size); local
197 memcpy(copy, mData, size);
201 memcpy(mData, copy, size);
211 free(copy);
212 copy = NULL;
  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.cpp 6 * You may obtain a copy of the License at
387 size_t copy = out->capacity() - outBytesUsed - 2; local
388 if (copy > nalSize - srcOffset) {
389 copy = nalSize - srcOffset;
401 if (srcOffset + copy == nalSize) {
405 memcpy(&dst[2], nalStart + srcOffset, copy);
406 srcOffset += copy;
408 out->setRange(0, outBytesUsed + copy + 2);
  /frameworks/av/media/libstagefright/wifi-display/source/
Converter.cpp 6 * You may obtain a copy of the License at
542 size_t copy = buffer->size(); local
543 if(copy > bytesMissingForFullAU) {
544 copy = bytesMissingForFullAU;
549 copy);
551 mPartialAudioAU->setRange(0, mPartialAudioAU->size() + copy);
553 buffer->setRange(buffer->offset() + copy, buffer->size() - copy);
558 int64_t copyUs = (int64_t)((copy / kFrameSize) * 1E6 / 48000.0);
562 if (bytesMissingForFullAU == copy) {
591 size_t copy = buffer->size(); local
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
FileRotator.java 6 * You may obtain a copy of the License at
163 Streams.copy(is, zos);
  /frameworks/base/services/input/
SpriteController.h 6 * You may obtain a copy of the License at
66 inline SpriteIcon copy() const { function in struct:android::SpriteIcon
103 * The sprite retains a copy of the bitmap for subsequent rendering. */
209 * asynchronously with no locks held except in short critical section to copy
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.h 6 * You may obtain a copy of the License at
182 static HWCLayer* copy(HWCLayer *rhs) { function in class:android::HWComposer::HWCLayer
207 // copy operators
209 : mLayerList(HWCLayer::copy(rhs.mLayerList)), mIndex(rhs.mIndex) {
  /hardware/libhardware/tests/camera2/
camera2_utils.cpp 6 * You may obtain a copy of the License at
114 camera_metadata_t *copy = allocate_camera_metadata(entries, dataBytes); local
115 append_camera_metadata(copy, *slotEntry);
116 mEntries.push_back(copy);
  /libcore/luni/src/test/java/libcore/java/util/
TreeMapTest.java 6 * You may obtain a copy of the License at
181 NavigableMap<String,String> copy = new TreeMap<String, String>(source); local
182 assertEquals(null, copy.comparator());
  /ndk/build/core/
definitions-host.mk 5 # You may obtain a copy of the License at
85 # to copy a single file
88 host-cp = copy /b/y $(subst /,\,"$1" "$2") > NUL
103 host-install = copy /b/y $(subst /,\,"$1" "$2") > NUL
124 # Function : host-copy-if-differ
127 # Usage : $(call host-copy-if-differ,<src-file>,<dst-file>)
128 # Rationale: This function copy source file to destination file if contents are
132 host-copy-if-differ = $(HOST_CMP) -s $1 $2 > NUL || copy /b/y $(subst /,\,"$1" "$2") > NUL
134 host-copy-if-differ = $(HOST_CMP) -s $1 $2 > /dev/null 2>&1 || cp -f $1 $
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string_sum.h 8 * Permission to use or copy this software for any purpose is hereby granted
61 /*basic_string wrapper to ensure that we only store a reference to the original string and not copy it*/
179 size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const function in class:__bstr_sum
180 {return _M_get_storage().copy(__s, __n, __pos);}

Completed in 715 milliseconds

<<31323334353637383940>>