Searched refs:copy (Results 1 - 25 of 312) sorted by relevance

1234567891011>>

/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/math/
H A Dm_copy_tmp.h9 * copy of this software and associated documentation files (the "Software"),
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
32 static void TAG2(copy, BITS)( GLvector4f *to, const GLvector4f *f ) \
70 _mesa_copy_tab[0x0] = TAG2(copy, 0x0);
71 _mesa_copy_tab[0x1] = TAG2(copy, 0x1);
72 _mesa_copy_tab[0x2] = TAG2(copy, 0x2);
73 _mesa_copy_tab[0x3] = TAG2(copy, 0x3);
74 _mesa_copy_tab[0x4] = TAG2(copy, 0x4);
75 _mesa_copy_tab[0x5] = TAG2(copy, 0x5);
76 _mesa_copy_tab[0x6] = TAG2(copy,
[all...]
/vbox/src/VBox/Storage/testcase/
H A DtstVDCopy.vd49 copy("source", "dest", 0, "VDI", "dest_base.vdi", false, 0, 0xffffffff, 0xffffffff); /* Image content unknown */
52 copy("source", "dest", 1, "VDI", "dest_diff1.vdi", false, 0, 0, 0);
55 copy("source", "dest", 2, "VDI", "dest_diff2.vdi", false, 0, 1, 1);
56 copy("source", "dest", 3, "VDI", "dest_diff3.vdi", false, 0, 2, 2);
57 copy("source", "dest", 4, "VDI", "dest_diff4.vdi", false, 0, 3, 3);
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/
H A Dwindows.c75 WINDOW *copy; local
78 if ( ( copy = malloc( sizeof( WINDOW ) ) ) == NULL )
80 copy->scr = orig->scr;
81 copy->attrs = orig->attrs;
82 copy->ori_y = orig->ori_y;
83 copy->ori_x = orig->ori_x;
84 copy->curs_y = orig->curs_y;
85 copy->curs_x = orig->curs_x;
86 copy->height = orig->height;
87 copy
[all...]
/vbox/src/libs/zlib-1.2.6/
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()
383 unsigned copy, dist; local
402 /* copy state->wsize or less output bytes into the circular window */
403 copy = out - strm->avail_out;
404 if (copy >= state->wsize) {
411 if (dist > copy) dist = copy;
412 zmemcpy(state->window + state->wnext, strm->next_out - copy, dis
620 unsigned copy; /* number of stored or match bytes to copy */ local
[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...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/String/
H A DCopying.c82 characters, null characters are appended to the copy in the array pointed
109 strncpyX exists because normal strncpy does not indicate if the copy was
112 @return The strncpyX function returns 0 if the copy operation was
133 /** NetBSD Compatibility Function strdup creates a duplicate copy of a string. **/
138 char *copy; local
141 if ((copy = malloc(len)) == NULL)
143 memcpy(copy, str, len);
144 return (copy);
/vbox/src/libs/zlib-1.2.6/contrib/infback9/
H A Dinfback9.c237 unsigned long length; /* literal or length of data to copy */
238 unsigned long offset; /* distance back to copy string from */
239 unsigned long copy; /* number of stored or match bytes to copy */ local
240 unsigned char FAR *from; /* where to copy match bytes from */
247 unsigned len; /* length to copy for repeats, bits to drop */
328 /* copy stored block from input to output */
330 copy = length;
333 if (copy > have) copy
[all...]
/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dmake_vms.com1 $ if f$search("ioapi.h_orig") .eqs. "" then copy ioapi.h ioapi.h_orig
3 $ copy sys$input: zdef
12 $ copy vmsdefs.h,ioapi.h_orig ioapi.h
/vbox/src/VBox/Additions/x11/Installer/
H A Dx11config15.pl76 copy $cfg, $cfg.".bak";
80 copy $temp, $cfg
H A Dx11config15suse.pl139 copy $cfg, "$cfg.bak";
143 copy $temp, $cfg
/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsTSubstringTuple.cpp8 * the License. You may obtain a copy of the License at
79 char_traits::copy(buf, a.Data(), a.Length());
82 char_traits::copy(buf + headLen, b.Data(), b.Length());
92 char_traits::copy(buf + bufLen - b.Length(), b.Data(), b.Length());
104 char_traits::copy(buf, a.Data(), a.Length());
/vbox/src/libs/zlib-1.2.6/contrib/blast/
H A Dblast.c262 * an instruction to copy previously uncompressed bytes to the output. The
263 * copy is from distance bytes back in the output stream, copying for length
272 * twelve copies the last four bytes three times. A simple forward copy
281 int len; /* length for copy */
282 int dist; /* distance for copy */
283 int copy; /* copy counter */ local
284 unsigned char *from, *to; /* copy pointers */
339 /* copy length bytes from distance bytes back */
343 copy
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dapi_msg.h78 u8_t copy; member in struct:api_msg_msg::__anon14881::__anon14883
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/cmd/baddof/
H A Dbaddof.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
161 unsigned char *dof, *copy; local
188 if ((copy = malloc(len)) == NULL)
189 fatal("could not allocate copy of %d bytes", len);
192 bcopy(dof, copy, len);
201 corrupt(fd, copy, len);
/vbox/src/libs/libxml2-2.6.31/
H A DtestHTML.c43 static int copy = 0; variable
762 * test intermediate copy if needed.
764 if (copy) {
811 if ((!strcmp(argv[i], "-copy")) || (!strcmp(argv[i], "--copy")))
812 copy++;
854 printf("Usage : %s [--debug] [--copy] [--copy] HTMLfiles ...\n",
860 printf("\t--copy : used to test the internal copy implementatio
[all...]
/vbox/src/VBox/ValidationKit/testmanager/core/
H A Dbase.py34 import copy; namespace
113 This serves as a kind of copy constructor.
180 oValue = copy.copy(oValue);
183 oValue[i] = copy.copy(oValue[i]);
187 oValue = copy.copy(oValue);
216 oValue = copy.copy(oValu
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dglxcontext.h13 * copy of this software and associated documentation files (the "Software"),
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
53 int (*copy) (__GLXcontext *dst, member in struct:__GLXcontext
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/
H A DMakefile36 copy LzmaF86Compress.bat $(BIN_PATH)\LzmaF86Compress.bat /Y
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Dnextstep.c7 * the License. You may obtain a copy of the License at
167 char *copy = (char*) malloc (len+1); local
169 if (copy == (char*)0)
172 strcpy (copy, s1);
174 return copy;
/vbox/src/VBox/Runtime/common/string/
H A Dmemmove.asm60 ; Decide which direction to perform the copy in.
67 ; Slow/simple forward copy.
80 ; Fast forward copy.
126 ; Slow/simple backward copy.
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsBinaryStream.cpp7 * the License. You may obtain a copy of the License at
202 // XXX use WriteSegments here to avoid copy!
203 PRUnichar *copy, temp[64]; local
205 copy = temp;
207 copy = NS_REINTERPRET_CAST(PRUnichar*, nsMemory::Alloc(byteCount));
208 if (!copy)
213 copy[i] = NS_SWAP16(aString[i]);
214 rv = WriteBytes(NS_REINTERPRET_CAST(const char*, copy), byteCount);
215 if (copy != temp)
216 nsMemory::Free(copy);
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dglxcontext.h13 * copy of this software and associated documentation files (the "Software"),
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
50 int (*copy) (__GLXcontext * dst, __GLXcontext * src, unsigned long mask); member in struct:__GLXcontext
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dglxcontext.h13 ** this file except in compliance with the License. You may obtain a copy
63 int (*copy) (__GLXcontext *dst, member in struct:__GLXcontext
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dglxcontext.h13 ** this file except in compliance with the License. You may obtain a copy
58 int (*copy) (__GLXcontext *dst, member in struct:__GLXcontext
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dglxcontext.h13 * copy of this software and associated documentation files (the "Software"),
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
50 int (*copy) (__GLXcontext * dst, __GLXcontext * src, unsigned long mask); member in struct:__GLXcontext

Completed in 3777 milliseconds

1234567891011>>