Searched refs:copy (Results 126 - 150 of 2627) sorted by relevance

1234567891011>>

/external/chromium_org/content/common/dom_storage/
H A Ddom_storage_map.cc110 DOMStorageMap* copy = new DOMStorageMap(quota_); local
111 copy->values_ = values_;
112 copy->bytes_used_ = bytes_used_;
113 copy->ResetKeyIterator();
114 return copy;
/external/chromium_org/third_party/boringssl/src/crypto/engine/
H A Dengine.c3 * Permission to use, copy, modify, and/or distribute this software for any
51 * |*out_member| to point to a copy of it. The copy is |compiled_size| bytes
55 void *copy = OPENSSL_malloc(compiled_size); local
56 if (copy == NULL) {
60 memset(copy, 0, compiled_size);
65 memcpy(copy, method, method_size);
68 *out_member = copy;
/external/chromium_org/tools/deep_memory_profiler/lib/
H A Drange_dict.py61 def copy(self): # pylint: disable=R0201 member in class:ExclusiveRangeDict.RangeAttribute
93 self._tree[bound_begin] = (begin, new_value.copy())
94 self._tree[begin] = (new_end, new_value.copy())
115 self._tree[bound_begin] = (end, new_value.copy())
116 self._tree[end] = (new_end, new_value.copy())
/external/llvm/tools/msbuild/
H A Dinstall.bat42 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2010.props %D%\LLVM-vs2010
44 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2010.targets %D%\LLVM-vs2010
52 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012.props %D%\LLVM-vs2012
54 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012.targets %D%\LLVM-vs2012
58 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012_xp.props %D%\LLVM-vs2012_xp
60 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012_xp.targets %D%\LLVM-vs2012_xp
68 copy %PLATFORM%\toolset-vs2013.props %D%\LLVM-vs2013\toolset.props
70 copy %PLATFORM%\toolset-vs2013.targets %D%\LLVM-vs2013\toolset.targets
74 copy %PLATFORM%\toolset-vs2013_xp.props %D%\LLVM-vs2013_xp\toolset.props
76 copy
[all...]
/external/qemu/android/utils/
H A Dsystem.c128 char* copy; local
134 copy = malloc(len+1);
135 memcpy(copy, str, len);
136 copy[len] = 0;
138 return copy;
/external/chromium_org/crypto/
H A Drsa_private_key_nss.cc132 RSAPrivateKey* copy = new RSAPrivateKey();
133 copy->key_ = SECKEY_CopyPrivateKey(key);
134 copy->public_key_ = SECKEY_ConvertToPublicKey(key);
135 if (!copy->key_ || !copy->public_key_) {
137 delete copy;
140 return copy;
201 RSAPrivateKey* copy = new RSAPrivateKey(); local
202 copy->key_ = SECKEY_CopyPrivateKey(key_);
203 copy
[all...]
H A Drsa_private_key_openssl.cc106 RSAPrivateKey* copy = new RSAPrivateKey();
107 copy->key_ = EVP_PKEY_dup(key);
108 return copy;
121 scoped_ptr<RSAPrivateKey> copy(new RSAPrivateKey());
125 copy->key_ = EVP_PKEY_new();
126 if (!EVP_PKEY_set1_RSA(copy->key_, rsa.get()))
128 return copy.release();
/external/chromium_org/third_party/zlib/
H A Dinfback.c254 unsigned copy; /* number of stored or match bytes to copy */ local
255 unsigned char FAR *from; /* where to copy match bytes from */
258 unsigned len; /* length to copy for repeats, bits to drop */
331 /* copy stored block from input to output */
333 copy = state->length;
336 if (copy > have) copy = have;
337 if (copy > left) 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/qemu/distrib/zlib-1.2.8/
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/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/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/chromium_org/content/browser/devtools/
H A Ddevtools_agent_host_impl.cc143 // Make a copy, since detaching may lead to agent destruction, which
145 Instances copy = g_instances.Get();
146 for (Instances::iterator it(copy.begin()); it != copy.end(); ++it) {
182 AgentStateCallbacks copy(g_callbacks.Get());
186 for (AgentStateCallbacks::iterator it = copy.begin(); it != copy.end(); ++it)
/external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
H A DAccountHolder.java100 return copy().password(password).build();
104 return copy().authTokens(authTokens).build();
108 return copy().authToken(authTokenType, authToken).build();
112 return copy().hasBeenAccepted(authTokenType, hasBeenAccepted).build();
116 return copy().alwaysAccept(alwaysAccept).build();
119 private Builder copy() { method in class:AccountHolder
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/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/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/guava/guava-tests/test/com/google/common/collect/
H A DAbstractBiMapTest.java6 * You may obtain a copy of the License at
482 BiMap<Integer, String> copy =
484 assertEquals(bimap.inverse(), copy.inverse());
514 BiMapPair copy = SerializableTester.reserialize(pair);
515 assertEquals(pair.forward, copy.forward);
516 assertEquals(pair.backward, copy.backward);
518 copy.forward.put(4, "four");
519 copy.backward.put("five", 5);
520 assertEquals(copy.backward, copy
[all...]
H A DImmutableSortedMapTest.java6 * You may obtain a copy of the License at
539 ImmutableSortedMap<String, Integer> copy
541 assertEquals(Collections.<String, Integer>emptyMap(), copy);
542 assertSame(copy, ImmutableSortedMap.copyOf(copy));
543 assertSame(Ordering.natural(), copy.comparator());
547 ImmutableSortedMap<String, Integer> copy
549 assertMapEquals(copy, "one", 1);
550 assertSame(copy, ImmutableSortedMap.copyOf(copy));
[all...]
/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/chromium_org/chrome/browser/resources/net_internals/
H A Dutil.js148 * @return {Object} A copy of |object|.
153 var copy = {};
155 copy[key] = object[key];
157 return copy;
/external/chromium_org/native_client_sdk/src/tools/
H A Drun.py10 import copy namespace
54 env = copy.copy(os.environ)

Completed in 1344 milliseconds

1234567891011>>