Searched refs:copy (Results 226 - 250 of 1287) sorted by relevance

1234567891011>>

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DVariance.java7 * the License. You may obtain a copy of the License at
141 * @param original the {@code Variance} instance to copy
144 copy(original, this);
586 public Variance copy() { method in class:Variance
588 copy(this, result);
596 * @param source Variance to copy
597 * @param dest Variance to copy to
600 public static void copy(Variance source, Variance dest) { method in class:Variance
606 dest.moment = source.moment.copy();
/external/chromium-trace/trace-viewer/perf_insights/third_party/cloudstorage/
H A Dapi_utils.py5 # You may obtain a copy of the License at
23 import copy namespace
66 _thread_local_settings.default_retry_params = copy.copy(retry_params)
79 return copy.copy(default)
/external/icu/icu4c/source/test/intltest/
H A Dsdtfmtts.cpp116 SimpleDateFormat copy(pat);
122 if( ! (copy == pat) || copy != pat) {
126 copy = cust1;
127 if(copy != cust1) {
/external/skia/src/utils/mac/
H A DSkCreateCGImageRef.cpp107 SkBitmap* copy; local
109 copy = new SkBitmap;
110 // here we make a ceep copy of the pixels, since CG won't take our
112 bm.copyTo(copy, kN32_SkColorType);
114 copy = new SkBitmap(bm);
116 return copy;
/external/v8/src/compiler/
H A Dgraph-builder.cc110 StructuredGraphBuilder::Environment::Environment(const Environment& copy) argument
111 : builder_(copy.builder()),
112 control_dependency_(copy.control_dependency_),
113 effect_dependency_(copy.effect_dependency_),
114 values_(copy.values_) {}
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSortedSetTest.java6 * You may obtain a copy of the License at
255 SortedSet<String> copy = SerializableTester.reserialize(set);
256 assertSame(set, copy);
303 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set);
304 assertEquals(set.comparator(), copy.comparator());
318 * to copy from that array to the destination array. This would be fine, but
319 * GWT has a bug: It refuses to copy from an E[] to an Object[] when E is an
417 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set);
418 assertTrue(Iterables.elementsEqual(set, copy));
419 assertEquals(set.comparator(), copy
[all...]
/external/openssh/
H A Dkrl.c4 * Permission to use, copy, modify, and distribute this software for any
926 struct sshbuf *copy = NULL, *sect = NULL; local
944 /* Take a copy of the KRL buffer so we can verify its signature later */
945 if ((copy = sshbuf_fromb(buf)) == NULL) {
949 if ((r = sshbuf_consume(copy, sizeof(KRL_MAGIC) - 1)) != 0)
957 if ((r = sshbuf_get_u32(copy, &format_version)) != 0)
963 if ((r = sshbuf_get_u64(copy, &krl->krl_version)) != 0 ||
964 (r = sshbuf_get_u64(copy, &krl->generated_date)) != 0 ||
965 (r = sshbuf_get_u64(copy, &krl->flags)) != 0 ||
966 (r = sshbuf_skip_string(copy)) !
[all...]
/external/ceres-solver/internal/ceres/
H A Ddynamic_compressed_row_sparse_matrix_test.cc100 std::copy(rows.begin(), rows.end(), tsm->mutable_rows());
101 std::copy(cols.begin(), cols.end(), tsm->mutable_cols());
102 std::copy(values.begin(), values.end(), tsm->mutable_values());
/external/deqp/framework/common/
H A DtcuTexVerifierUtil.cpp9 * You may obtain a copy of the License at
115 Sampler copy = sampler; local
116 copy.normalizedCoords = false;
117 return copy;
H A DtcuRandomValueIterator.hpp11 * You may obtain a copy of the License at
102 RandomValueIterator copy(*this);
104 return copy;
/external/elfutils/src/src/
H A Dxelf.h16 You should have received a copy of the GNU General Public License
45 # define xelf_getehdr_copy(elf, name, copy) \
46 (copy) = *(name = elf32_getehdr (elf))
62 # define xelf_getshdr_copy(scn, name, copy) \
63 (copy) = *(name = elf32_getshdr (scn))
177 # define xelf_getehdr_copy(elf, name, copy) \
178 (copy) = *(name = elf64_getehdr (elf))
194 # define xelf_getshdr_copy(scn, name, copy) \
195 (copy) = *(name = elf64_getshdr (scn))
311 # define xelf_getehdr_copy(elf, name, copy) \
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DObjectArrays.java6 * You may obtain a copy of the License at
112 T[] copy = newArray(original, newLength);
114 original, 0, copy, 0, Math.min(original.length, newLength));
115 return copy;
195 * Returns a copy of the specified subrange of the specified array that is literally an Object[],
/external/guava/guava/src/com/google/common/escape/
H A DUnicodeEscaper.java6 * You may obtain a copy of the License at
205 // If we have skipped any characters, we need to copy them now.
304 char[] copy = new char[size];
306 System.arraycopy(dest, 0, copy, 0, index);
308 return copy;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DObjectArrays.java6 * You may obtain a copy of the License at
83 T[] copy = newArray(original, newLength);
85 original, 0, copy, 0, Math.min(original.length, newLength));
86 return copy;
166 * Returns a copy of the specified subrange of the specified array that is literally an Object[],
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableMapTest.java6 * You may obtain a copy of the License at
400 ImmutableMap<String, Integer> copy
402 assertEquals(Collections.<String, Integer>emptyMap(), copy);
403 assertSame(copy, ImmutableMap.copyOf(copy));
407 ImmutableMap<String, Integer> copy
409 assertMapEquals(copy, "one", 1);
410 assertSame(copy, ImmutableMap.copyOf(copy));
419 ImmutableMap<String, Integer> copy
[all...]
/external/skia/src/animator/
H A DSkDrawBitmap.cpp143 SkDisplayable* copy = INHERITED::deepCopy(maker); local
144 ((SkImageBaseBitmap*) copy)->fUriBase = ((SkImageBaseBitmap*) this)->fUriBase;
145 return copy;
/external/v8/src/
H A Dhydrogen-removable-simulates.cc131 State* copy = new(zone) State(*this); local
133 PrintF("[copy state %p from B%d to new state %p for B%d]\n",
135 reinterpret_cast<void*>(copy), succ_block->block_id());
137 return copy;
/external/valgrind/coregrind/
H A Dpub_core_threadstate.h23 You should have received a copy of the GNU General Public License
214 int copy; member in struct:__anon16202::__anon16203::__anon16215
236 int copy; member in struct:__anon16202::__anon16203::__anon16220
241 int copy; member in struct:__anon16202::__anon16203::__anon16221
/external/libvpx/libvpx/vp8/common/arm/armv6/
H A Dcopymem8x4_v6.asm35 ;copy 1 byte each time
78 ;copy 4 bytes each time
103 ;copy 8 bytes each time
H A Dcopymem8x8_v6.asm35 ;copy 1 byte each time
78 ;copy 4 bytes each time
103 ;copy 8 bytes each time
/external/llvm/test/MC/ARM/
H A Deh-directive-setfp.s11 @ (i) the unwind opcode to copy stack offset from the other register, and
43 @ The assembler should emit 0x9B to copy stack pointer from r11.
85 @ The assembler should emit 0x9B to copy stack pointer from r11.
128 @ The assembler should emit 0x9B to copy stack pointer from r11.
171 @ The assembler should emit 0x9B to copy stack pointer from r11.
229 @ The assembler should emit 0x9B to copy stack pointer from r11.
/external/okhttp/okio/okio/src/main/java/okio/
H A DByteString.java6 * You may obtain a copy of the License at
69 * Returns a new byte string containing a copy of {@code byteCount} bytes of {@code data} starting
76 byte[] copy = new byte[byteCount];
77 System.arraycopy(data, offset, copy, 0, byteCount);
78 return new ByteString(copy);
267 byte[] copy = new byte[subLen];
268 System.arraycopy(data, beginIndex, copy, 0, subLen);
269 return new ByteString(copy);
285 * Returns a byte array containing a copy of the bytes in this {@code ByteString}.
/external/vogar/
H A DAndroid.mk5 # You may obtain a copy of the License at
65 # copy vogar script
77 $(copy-file-to-new-target)
/external/deqp/execserver/
H A DxsTcpServer.cpp9 * You may obtain a copy of the License at
131 std::copy(m_liveConnections.begin(), m_liveConnections.end(), std::inserter(allConnections, allConnections.end()));
132 std::copy(m_doneConnections.begin(), m_doneConnections.end(), std::inserter(allConnections, allConnections.end()));
/external/eigen/
H A DAndroid.mk5 # You may obtain a copy of the License at

Completed in 1406 milliseconds

1234567891011>>