Searched refs:copy (Results 101 - 125 of 1287) sorted by relevance

1234567891011>>

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DMean.java7 * the License. You may obtain a copy of the License at
96 * @param original the {@code Mean} instance to copy
99 copy(original, this);
252 public Mean copy() { method in class:Mean
254 copy(this, result);
263 * @param source Mean to copy
264 * @param dest Mean to copy to
267 public static void copy(Mean source, Mean dest) { method in class:Mean
270 dest.moment = source.moment.copy();
H A DSkewness.java7 * the License. You may obtain a copy of the License at
78 * @param original the {@code Skewness} instance to copy
81 copy(original, this);
194 public Skewness copy() { method in class:Skewness
196 copy(this, result);
204 * @param source Skewness to copy
205 * @param dest Skewness to copy to
208 public static void copy(Skewness source, Skewness dest) { method in class:Skewness
210 dest.moment = new ThirdMoment(source.moment.copy());
/external/llvm/tools/msbuild/
H A Dinstall.bat55 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2010.props %D%\LLVM-vs2010
57 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2010.targets %D%\LLVM-vs2010
66 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012.props %D%\LLVM-vs2012
68 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012.targets %D%\LLVM-vs2012
72 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012_xp.props %D%\LLVM-vs2012_xp
74 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012_xp.targets %D%\LLVM-vs2012_xp
83 copy %PLATFORM%\toolset-vs2013.props %D%\LLVM-vs2013\toolset.props
85 copy %PLATFORM%\toolset-vs2013.targets %D%\LLVM-vs2013\toolset.targets
89 copy %PLATFORM%\toolset-vs2013_xp.props %D%\LLVM-vs2013_xp\toolset.props
91 copy
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_infback.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...]
/external/zlib/src/
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...]
/external/jetty/src/java/org/eclipse/jetty/util/
H A DIO.java100 copy(in,out,-1);
102 copy(read,write,-1);
141 public static void copy(InputStream in, OutputStream out) method in class:IO
144 copy(in,out,-1);
168 public static void copy(Reader in, Writer out) method in class:IO
171 copy(in,out,-1);
177 public static void copy(InputStream in, method in class:IO
214 public static void copy(Reader in, method in class:IO
267 public static void copy(File from,File to) throws IOException method in class:IO
294 copy(file
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DMulticastDelegate.java6 * You may obtain a copy of the License at
39 MulticastDelegate copy = newInstance();
40 copy.targets = new Object[targets.length + 1];
41 System.arraycopy(targets, 0, copy.targets, 0, targets.length);
42 copy.targets[targets.length] = target;
43 return copy;
49 MulticastDelegate copy = newInstance();
50 copy.targets = new Object[targets.length - 1];
51 System.arraycopy(targets, 0, copy.targets, 0, i);
52 System.arraycopy(targets, i + 1, copy
[all...]
/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/eigen/bench/btl/libs/gmm/
H A Dgmm_interface.hh14 // You should have received a copy of the GNU General Public License
114 gmm::copy(source,cible);
118 gmm::copy(source,cible);
122 gmm::copy(B,X);
127 gmm::copy(X,R);
133 gmm::copy(X,R);
138 gmm::copy(X,R);
/external/llvm/bindings/ocaml/backends/
H A DMakefile.common43 all-local:: copy-meta
50 copy-meta: $(OcamlDir)/META.llvm_$(TARGET)
65 .PHONY: copy-meta install-meta uninstall-meta
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_cse.cpp5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
131 fs_inst *copy = new(ralloc_parent(inst)) local
133 entry->generator->insert_after(copy);
138 fs_inst *copy = new(ralloc_parent(inst)) local
140 inst->replace_with(copy);
144 block->end = copy;
147 /* Continue iteration with copy->next */
148 inst = copy;
/external/skia/src/animator/
H A DSkDisplayMovie.cpp55 SkDisplayMovie* copy = (SkDisplayMovie*) INHERITED::deepCopy(maker); local
56 copy->fMovie.fMaker->fParentMaker = fMovie.fMaker->fParentMaker;
57 copy->fMovie.fMaker->fHostEventSinkID = fMovie.fMaker->fHostEventSinkID;
58 copy->fMovieBuilt = false;
59 *fMovie.fMaker->fParentMaker->fMovies.append() = copy;
60 return copy;
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSortedMapTest.java6 * You may obtain a copy of the License at
472 ImmutableSortedMap<String, Integer> copy
474 assertEquals(Collections.<String, Integer>emptyMap(), copy);
475 assertSame(copy, ImmutableSortedMap.copyOf(copy));
476 assertSame(Ordering.natural(), copy.comparator());
480 ImmutableSortedMap<String, Integer> copy
482 assertMapEquals(copy, "one", 1);
483 assertSame(copy, ImmutableSortedMap.copyOf(copy));
[all...]
H A DHashBasedTableTest.java6 * You may obtain a copy of the License at
75 Table<String, Integer, Character> copy = HashBasedTable.create(original);
76 assertEquals(original, copy);
77 assertEquals((Character) 'a', copy.get("foo", 1));
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DDescriptiveStatistics.java7 * the License. You may obtain a copy of the License at
142 * is a copy of original.
144 * @param original DescriptiveStatistics instance to copy
147 copy(original, this);
342 * copy of the underlying data -- i.e., it is not a reference to the
355 * copy of the underlying data -- i.e., it is not a reference to the
686 * Returns a copy of this DescriptiveStatistics instance with the same internal state.
688 * @return a copy of this
690 public DescriptiveStatistics copy() { method in class:DescriptiveStatistics
692 copy(thi
704 public static void copy(DescriptiveStatistics source, DescriptiveStatistics dest) { method in class:DescriptiveStatistics
[all...]
/external/elfutils/src/libdwfl/
H A Ddwfl_module_build_id.c42 void *copy = malloc (len); local
43 if (unlikely (copy == NULL))
49 mod->build_id_bits = memcpy (copy, bits, len);
/external/guava/guava/src/com/google/common/escape/
H A DCharEscaper.java6 * You may obtain a copy of the License at
112 // If we have skipped any characters, we need to copy them now.
132 // Regrow and copy, expensive! No padding as this is the final copy.
163 char[] copy = new char[size];
165 System.arraycopy(dest, 0, copy, 0, index);
167 return copy;
/external/guava/guava-testlib/test/com/google/common/testing/
H A DSerializableTesterTest.java6 * You may obtain a copy of the License at
32 String copy = SerializableTester.reserializeAndAssert(original);
33 assertEquals(original, copy);
34 assertNotSame(original, copy);
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
46 this.parameters = copy(parameters);
70 return copy(parameters);
147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
152 private static String[] copy(String[] array) { method in class:Command
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
46 this.parameters = copy(parameters);
70 return copy(parameters);
147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
152 private static String[] copy(String[] array) { method in class:Command
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
46 this.parameters = copy(parameters);
70 return copy(parameters);
147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
152 private static String[] copy(String[] array) { method in class:Command
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
46 this.parameters = copy(parameters);
70 return copy(parameters);
147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
152 private static String[] copy(String[] array) { method in class:Command
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
46 this.parameters = copy(parameters);
70 return copy(parameters);
147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
152 private static String[] copy(String[] array) { method in class:Command
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
46 this.parameters = copy(parameters);
70 return copy(parameters);
147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
152 private static String[] copy(String[] array) { method in class:Command
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
46 this.parameters = copy(parameters);
70 return copy(parameters);
147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
152 private static String[] copy(String[] array) { method in class:Command

Completed in 1438 milliseconds

1234567891011>>