Searched defs:dest (Results 1 - 25 of 1388) sorted by path

1234567891011>>

/external/ImageMagick/MagickCore/
H A Dlayer.c1822 Image *dest = CloneImage(destination,0,0,MagickTrue,exception);
1837 CloneImage(dest,0,0,MagickTrue,exception));
1846 dest=DestroyImage(dest);
1807 Image *dest = CloneImage(destination,0,0,MagickTrue,exception); local
/external/aac/libAACenc/src/
H A Daacenc_tns.cpp475 FIXP_DBL *dest,
493 dest[i] = src[i]<<scale;
952 /* no dest filter, or more dest than source filters: use one dest filter */
474 FDKaacEnc_ScaleUpSpectrum( FIXP_DBL *dest, const FIXP_DBL *src, const INT startLine, const INT stopLine ) argument
/external/aac/libSYS/src/
H A DgenericStds.cpp199 char *FDKstrcpy(char *dest, const char *src) { return strcpy(dest, src); } argument
201 char *FDKstrncpy(char *dest, const char *src, UINT n) { return strncpy(dest, src, n); } argument
/external/aac/libSYS/src/linux/
H A DgenericStds_linux.cpp118 void __aeabi_memcpy(void *dest, void *src, int size) argument
120 memcpy(dest, src, size);
122 void __aeabi_memcpy4(void *dest, void *src, int size) argument
124 memcpy(dest, src, size);
126 void __aeabi_memmove4(void *dest, void *src, int size) argument
128 memmove(dest, src, size);
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
H A DFirstOrderIntegratorWithJacobians.java775 * @param dest destination array
777 private static void copyArray(final double[] src, final double[] dest) { argument
778 System.arraycopy(src, 0, dest, 0, src.length);
783 * @param dest destination array
785 private static void copyArray(final double[][] src, final double[][] dest) { argument
787 copyArray(src[i], dest[i]);
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
H A DSimplexTableau.java344 * @param dest the destination array
346 private void copyArray(final double[] src, final double[] dest) { argument
347 System.arraycopy(src, 0, dest, getNumObjectiveFunctions(), src.length);
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DDescriptiveStatistics.java697 * Copies source to dest.
698 * <p>Neither source nor dest can be null.</p>
701 * @param dest DescriptiveStatistics to copy to
702 * @throws NullPointerException if either source or dest is null
704 public static void copy(DescriptiveStatistics source, DescriptiveStatistics dest) { argument
706 dest.eDA = source.eDA.copy();
707 dest.windowSize = source.windowSize;
710 dest.maxImpl = source.maxImpl.copy();
711 dest.meanImpl = source.meanImpl.copy();
712 dest
[all...]
H A DSummaryStatistics.java650 * Copies source to dest.
651 * <p>Neither source nor dest can be null.</p>
654 * @param dest SummaryStatistics to copy to
655 * @throws NullPointerException if either source or dest is null
657 public static void copy(SummaryStatistics source, SummaryStatistics dest) { argument
658 dest.maxImpl = source.maxImpl.copy();
659 dest.meanImpl = source.meanImpl.copy();
660 dest.minImpl = source.minImpl.copy();
661 dest.sumImpl = source.sumImpl.copy();
662 dest
[all...]
H A DSynchronizedDescriptiveStatistics.java156 * Copies source to dest.
157 * <p>Neither source nor dest can be null.</p>
158 * <p>Acquires synchronization lock on source, then dest before copying.</p>
161 * @param dest SynchronizedDescriptiveStatistics to copy to
162 * @throws NullPointerException if either source or dest is null
165 SynchronizedDescriptiveStatistics dest) {
167 synchronized (dest) {
168 DescriptiveStatistics.copy(source, dest);
164 copy(SynchronizedDescriptiveStatistics source, SynchronizedDescriptiveStatistics dest) argument
H A DSynchronizedSummaryStatistics.java316 * Copies source to dest.
317 * <p>Neither source nor dest can be null.</p>
318 * <p>Acquires synchronization lock on source, then dest before copying.</p>
321 * @param dest SynchronizedSummaryStatistics to copy to
322 * @throws NullPointerException if either source or dest is null
325 SynchronizedSummaryStatistics dest) {
327 synchronized (dest) {
328 SummaryStatistics.copy(source, dest);
324 copy(SynchronizedSummaryStatistics source, SynchronizedSummaryStatistics dest) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DFirstMoment.java146 * Copies source to dest.
147 * <p>Neither source nor dest can be null.</p>
150 * @param dest FirstMoment to copy to
151 * @throws NullPointerException if either source or dest is null
153 public static void copy(FirstMoment source, FirstMoment dest) { argument
154 dest.setData(source.getDataRef());
155 dest.n = source.n;
156 dest.m1 = source.m1;
157 dest.dev = source.dev;
158 dest
[all...]
H A DFourthMoment.java131 * Copies source to dest.
132 * <p>Neither source nor dest can be null.</p>
135 * @param dest FourthMoment to copy to
136 * @throws NullPointerException if either source or dest is null
138 public static void copy(FourthMoment source, FourthMoment dest) { argument
139 ThirdMoment.copy(source, dest);
140 dest.m4 = source.m4;
H A DGeometricMean.java181 * Copies source to dest.
182 * <p>Neither source nor dest can be null.</p>
185 * @param dest GeometricMean to copy to
186 * @throws NullPointerException if either source or dest is null
188 public static void copy(GeometricMean source, GeometricMean dest) { argument
189 dest.setData(source.getDataRef());
190 dest.sumOfLogs = source.sumOfLogs.copy();
H A DKurtosis.java209 * Copies source to dest.
210 * <p>Neither source nor dest can be null.</p>
213 * @param dest Kurtosis to copy to
214 * @throws NullPointerException if either source or dest is null
216 public static void copy(Kurtosis source, Kurtosis dest) { argument
217 dest.setData(source.getDataRef());
218 dest.moment = source.moment.copy();
219 dest.incMoment = source.incMoment;
H A DMean.java260 * Copies source to dest.
261 * <p>Neither source nor dest can be null.</p>
264 * @param dest Mean to copy to
265 * @throws NullPointerException if either source or dest is null
267 public static void copy(Mean source, Mean dest) { argument
268 dest.setData(source.getDataRef());
269 dest.incMoment = source.incMoment;
270 dest.moment = source.moment.copy();
H A DSecondMoment.java112 * Copies source to dest.
113 * <p>Neither source nor dest can be null.</p>
116 * @param dest SecondMoment to copy to
117 * @throws NullPointerException if either source or dest is null
119 public static void copy(SecondMoment source, SecondMoment dest) { argument
120 FirstMoment.copy(source, dest);
121 dest.m2 = source.m2;
H A DSemiVariance.java154 * Copies source to dest.
155 * <p>Neither source nor dest can be null.</p>
158 * @param dest SemiVariance to copy to
159 * @throws NullPointerException if either source or dest is null
161 public static void copy(final SemiVariance source, SemiVariance dest) { argument
162 dest.setData(source.getDataRef());
163 dest.biasCorrected = source.biasCorrected;
164 dest.varianceDirection = source.varianceDirection;
H A DSkewness.java201 * Copies source to dest.
202 * <p>Neither source nor dest can be null.</p>
205 * @param dest Skewness to copy to
206 * @throws NullPointerException if either source or dest is null
208 public static void copy(Skewness source, Skewness dest) { argument
209 dest.setData(source.getDataRef());
210 dest.moment = new ThirdMoment(source.moment.copy());
211 dest.incMoment = source.incMoment;
H A DStandardDeviation.java259 * Copies source to dest.
260 * <p>Neither source nor dest can be null.</p>
263 * @param dest StandardDeviation to copy to
264 * @throws NullPointerException if either source or dest is null
266 public static void copy(StandardDeviation source, StandardDeviation dest) { argument
267 dest.setData(source.getDataRef());
268 dest.variance = source.variance.copy();
H A DThirdMoment.java126 * Copies source to dest.
127 * <p>Neither source nor dest can be null.</p>
130 * @param dest ThirdMoment to copy to
131 * @throws NullPointerException if either source or dest is null
133 public static void copy(ThirdMoment source, ThirdMoment dest) { argument
134 SecondMoment.copy(source, dest);
135 dest.m3 = source.m3;
136 dest.nDevSq = source.nDevSq;
H A DVariance.java593 * Copies source to dest.
594 * <p>Neither source nor dest can be null.</p>
597 * @param dest Variance to copy to
598 * @throws NullPointerException if either source or dest is null
600 public static void copy(Variance source, Variance dest) { argument
602 dest == null) {
605 dest.setData(source.getDataRef());
606 dest.moment = source.moment.copy();
607 dest.isBiasCorrected = source.isBiasCorrected;
608 dest
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
H A DMax.java151 * Copies source to dest.
152 * <p>Neither source nor dest can be null.</p>
155 * @param dest Max to copy to
156 * @throws NullPointerException if either source or dest is null
158 public static void copy(Max source, Max dest) { argument
159 dest.setData(source.getDataRef());
160 dest.n = source.n;
161 dest.value = source.value;
H A DMin.java151 * Copies source to dest.
152 * <p>Neither source nor dest can be null.</p>
155 * @param dest Min to copy to
156 * @throws NullPointerException if either source or dest is null
158 public static void copy(Min source, Min dest) { argument
159 dest.setData(source.getDataRef());
160 dest.n = source.n;
161 dest.value = source.value;
H A DPercentile.java482 * Copies source to dest.
483 * <p>Neither source nor dest can be null.</p>
486 * @param dest Percentile to copy to
487 * @throws NullPointerException if either source or dest is null
489 public static void copy(Percentile source, Percentile dest) { argument
490 dest.setData(source.getDataRef());
492 System.arraycopy(source.cachedPivots, 0, dest.cachedPivots, 0, source.cachedPivots.length);
494 dest.quantile = source.quantile;
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
H A DProduct.java211 * Copies source to dest.
212 * <p>Neither source nor dest can be null.</p>
215 * @param dest Product to copy to
216 * @throws NullPointerException if either source or dest is null
218 public static void copy(Product source, Product dest) { argument
219 dest.setData(source.getDataRef());
220 dest.n = source.n;
221 dest.value = source.value;

Completed in 409 milliseconds

1234567891011>>