Searched defs:copy (Results 1 - 25 of 718) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/blast/
H A Dblast.c264 * an instruction to copy previously uncompressed bytes to the output. The
265 * copy is from distance bytes back in the output stream, copying for length
274 * twelve copies the last four bytes three times. A simple forward copy
283 int len; /* length for copy */
284 unsigned dist; /* distance for copy */
285 int copy; /* copy counter */ local
286 unsigned char *from, *to; /* copy pointers */
341 /* copy length bytes from distance bytes back */
345 copy
[all...]
/external/zlib/src/contrib/infback9/
H A Dinfback9.c236 unsigned long length; /* literal or length of data to copy */
237 unsigned long offset; /* distance back to copy string from */
238 unsigned long copy; /* number of stored or match bytes to copy */ local
239 unsigned char FAR *from; /* where to copy match bytes from */
246 unsigned len; /* length to copy for repeats, bits to drop */
326 /* copy stored block from input to output */
328 copy = length;
331 if (copy > have) copy
[all...]
/external/zlib/src/
H A Dgzwrite.c206 /* for small len, copy to input buffer, otherwise compress directly */
208 /* copy to input buffer, compress when full */
210 unsigned have, copy; local
215 copy = state->size - have;
216 if (copy > len)
217 copy = len;
218 memcpy(state->in + have, buf, copy);
219 strm->avail_in += copy;
220 state->x.pos += copy;
221 buf = (const char *)buf + copy;
[all...]
H A Dinfback.c263 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
[all...]
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()
97 unsigned copy));
379 local int updatewindow(strm, end, copy)
382 unsigned copy;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
616 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/external/zlib/src/test/
H A Dinfcover.c290 z_stream strm, copy; local
335 ret = inflateCopy(&copy, &strm); assert(ret == Z_OK);
336 ret = inflateEnd(&copy); assert(ret == Z_OK);
391 z_stream strm, copy; local
438 ret = inflateCopy(&copy, &strm); assert(ret == Z_MEM_ERROR);
657 inf("63 0 3 0 0 0 0 0", "copy direct from output", 0, -8, 259,
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwpa_cli.c3181 char *copy = NULL, *id, *pos2; local
3215 copy = os_strdup(pos + 4);
3217 if (copy) {
3218 pos2 = id = copy;
3233 os_free(copy);
/external/valgrind/main/none/tests/s390x/
H A Dmvcl.c86 /* Make a copy of the input buffer */
87 void *copy = memcpy(malloc(len1), addr1, len1); local
110 memcpy(addr1, copy, len1);
/external/valgrind/main/VEX/switchback/
H A Dswitchback.c217 // instruction and data caches are guaranteed to see the same copy of a
230 // same copy of a memory location. See ARM DDI 0406B page B2-12 for more
409 /* copy it into mallocville */
410 UChar* copy = mymalloc(nbytes); local
411 assert(copy);
413 copy[i] = sa_start[i];
415 UInt* p = (UInt*)(&copy[off_nopstart]);
439 invalidate_icache( copy, nbytes );
441 ( (void(*)(HWord,HWord))copy )(arg0, arg1);
/external/valgrind/main/coregrind/
H A Dlauncher-darwin.c23 You should have received a copy of the GNU General Public License
261 char *copy = strdup(clientname); local
262 char *appname = basename(copy);
272 free(copy);
H A Dpub_core_threadstate.h23 You should have received a copy of the GNU General Public License
230 int copy; member in struct:__anon32719::__anon32720::__anon32732
252 int copy; member in struct:__anon32719::__anon32720::__anon32737
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-darwin.c23 You should have received a copy of the GNU General Public License
2891 // Nb: we make a copy of the environment before trying to mangle it
2942 // copy
3665 // copy value and return 0
3670 // copy as much as possible and return ENOMEM
4070 uint8_t copy; member in struct:__anon32578
4082 PRE_FIELD_READ("msg->desc.out_of_line.copy", desc->copy);
4096 uint8_t copy; member in struct:__anon32579
4108 PRE_FIELD_READ("msg->desc.ool_ports.copy", des
5727 boolean_t copy; member in struct:__anon32641
5792 boolean_t copy; member in struct:__anon32643
6268 boolean_t copy; member in struct:__anon32661
[all...]
/external/valgrind/main/helgrind/
H A Dhg_errors.c24 You should have received a copy of the GNU General Public License
57 /* maps (by value) strings to a copy of them in ARENA_TOOL */
72 HChar* copy = NULL; local
82 NULL, (UWord*)&copy, (UWord)str )) {
83 tl_assert(copy);
84 if (0) VG_(printf)("string_table_strdup: %p -> %p\n", str, copy );
85 return copy;
87 copy = HG_(strdup)("hg.sts.2", str);
88 tl_assert(copy);
89 VG_(addToFM)( string_table, (UWord)copy, (UWor
[all...]
H A Dlibhb_core.c25 You should have received a copy of the GNU General Public License
2084 /* 'i' now indicates the next entry to copy, if any.
2089 add (me_thrid,1) to the output, then copy the remaining entries
2091 copy it to the output but increment its timestamp value.
2092 Then copy the remaining entries. (c) is the common case.
2117 /* And copy any remaining entries. */
2656 /* We already have a copy of 'cand'. Use that. */
2944 /* Ok, we have the pruned copy in new_vts. See if a
3996 if not present, add the given one to the tree (by making a copy of
3998 return a pointer to the copy
4006 RCEC* copy; local
[all...]
/external/valgrind/main/memcheck/
H A Dmc_main.c25 You should have received a copy of the GNU General Public License
292 a copy of it so that we can write to it.
659 writable copy of it, install it, and return the copy instead. (COW
951 // Insert a copy of the node into the new table.
1881 /* --- Block-copy permissions (needed for implementing realloc() and
1912 /* have to copy secondary map info */
2446 /* Add a copy of the given line to the tree. It must not already be
2450 OCacheLine* copy; local
2452 copy
[all...]
/external/valgrind/main/mpi/
H A Dlibmpiwrap.c1314 MPI_Request* copy; local
1319 copy = malloc( count * sizeof(MPI_Request) );
1320 if (copy == NULL && count > 0) {
1325 copy[i] = orig[i];
1327 return copy;
/external/tinyxml/
H A Dtinystr.h33 * - added "copy" constructor with length, and most compare operators.
67 // TiXmlString copy constructor
68 TiXmlString (const TiXmlString & copy) argument
70 init(copy.length());
71 memcpy(start(), copy.data(), length());
75 TiXmlString (const char * copy) argument
77 init( static_cast<size_type>( strlen(copy) ));
78 memcpy(start(), copy, length()); local
95 TiXmlString& operator = (const char * copy) argument
97 return assign( copy, (size_typ
101 operator =(const TiXmlString & copy) argument
[all...]
H A Dtinyxml.cpp629 TiXmlElement::TiXmlElement( const TiXmlElement& copy) argument
633 copy.CopyTo( this );
922 TiXmlDocument::TiXmlDocument( const TiXmlDocument& copy ) : TiXmlNode( TiXmlNode::DOCUMENT )
924 copy.CopyTo( this );
928 void TiXmlDocument::operator=( const TiXmlDocument& copy )
931 copy.CopyTo( this );
1277 TiXmlComment::TiXmlComment( const TiXmlComment& copy ) : TiXmlNode( TiXmlNode::COMMENT )
1279 copy.CopyTo( this );
1411 TiXmlDeclaration::TiXmlDeclaration( const TiXmlDeclaration& copy )
1414 copy
[all...]
H A Dxmltest.cpp587 XmlTest( "Copy/Assign: element copy #1.", "element", elementCopy.Value() );
588 XmlTest( "Copy/Assign: element copy #2.", "value", elementCopy.Attribute( "name" ) );
598 XmlTest( "Copy/Assign: comment copy.", "comment", commentCopy.Value() );
607 XmlTest( "Copy/Assign: unknown copy.", "[unknown]", unknownCopy.Value() );
614 XmlTest( "Copy/Assign: text copy.", "TextNode", textCopy.Value() );
623 XmlTest( "Copy/Assign: declaration copy.", "UTF-8", decCopy.Encoding() );
637 std::string original, copy, assign; local
639 copy << docCopy;
641 XmlTest( "Copy/Assign: document copy.", original.c_str(), copy
[all...]
/external/tcpdump/missing/
H A Dstrdup.c50 char *copy; local
53 if ((copy = malloc(len)) == NULL)
55 memcpy(copy, str, len);
56 return (copy);
/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 D_rope.h15 * Permission to use or copy this software for any purpose is hereby granted
29 // really copy enough of the data structure to leave the original
226 _STLP_STD::copy(__x._M_buffer, __x._M_buffer + __x._M_buf_count, _M_buffer);
243 _STLP_STD::copy(__x._M_buffer, __x._M_buffer + __x._M_buf_count, _M_buffer);
670 // a copy constructor or generating reference to a proxy
694 // the only unusual operation it uses is the copy constructor, which
955 // Perhaps we should instead copy the iterator
1118 // For strings shorter than _S_copy_max, we copy to
1547 void copy(_CharT* __buffer) const { function in class:rope
1553 * This is the copy functio
1559 size_type copy(size_type __pos, size_type __n, _CharT* __buffer) const { function in class:rope
2038 size_type copy(_CharT* __buffer, size_type __n, function in class:rope
[all...]
H A D_string.h11 * Permission to use or copy this software for any purpose is hereby granted
63 * it does not perform reference-count or copy-on-write, and that
70 * Second, the C++ standard requires basic_string to copy elements
71 * using char_traits<>::assign, char_traits<>::copy, and
678 _Traits::copy(__res, __f, __l - __f);
765 _Traits::copy(__res, __f, __l - __f);
933 size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const { function in class:basic_string
938 _Traits::copy(__s, this->_M_Start() + __pos, __len);
H A D_string_sum.h8 * 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);}
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 496 milliseconds

1234567891011>>