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

1234567891011>>

/external/compiler-rt/BlocksRuntime/
H A Druntime.c5 * to any person obtaining a copy of this software and associated documentation
7 * including without limitation the rights to use, copy, modify, merge, publish,
284 /* Copy, or bump refcount, of a block. If really copying, call the copy helper if present. */
312 // Its a stack block. Make a copy.
322 //printf("calling block copy helper %p(%p, %p)...\n", aBlock->descriptor->copy, result, aBlock);
323 (*aBlock->descriptor->copy)(result, aBlock); // do fixup
329 // This allows the copy helper routines to make non-refcounted block copies under GC
336 // if we copy a malloc block to a GC block then we need to clear NEEDS_FREE.
344 //printf("calling block copy helpe
382 struct Block_byref *copy = (struct Block_byref *)_Block_allocator(src->size, false, isWeak); local
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DArrayTableTest.java6 * You may obtain a copy of the License at
202 Table<String, Integer, Character> copy = ArrayTable.create(original);
203 assertEquals(original, copy);
206 assertEquals((Character) 'a', copy.get("foo", 1));
207 assertEquals(copy.rowKeySet(), original.rowKeySet());
208 assertEquals(copy.columnKeySet(), original.columnKeySet());
216 Table<String, Integer, Character> copy = ArrayTable.create(original);
217 assertEquals(4, copy.size());
218 assertEquals((Character) 'a', copy.get("foo", 1));
219 assertEquals((Character) 'b', copy
[all...]
H A DImmutableTableTest.java6 * You may obtain a copy of the License at
157 Table<R, C, V> copy = ImmutableTable.copyOf(original);
158 assertEquals(original, copy);
159 validateViewOrdering(original, copy);
168 Table<R, C, V> original, Table<R, C, V> copy) {
169 assertTrue(Iterables.elementsEqual(original.cellSet(), copy.cellSet()));
170 assertTrue(Iterables.elementsEqual(original.rowKeySet(), copy.rowKeySet()));
171 assertTrue(Iterables.elementsEqual(original.values(), copy.values()));
223 Table<Character, Integer, String> copy
227 ASSERT.that(copy
167 validateViewOrdering( Table<R, C, V> original, Table<R, C, V> copy) argument
[all...]
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/external/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/external/libxslt/libxslt/
H A Dtemplates.c619 xmlAttrPtr attr, copy, last; local
678 copy = xmlNewDocProp(target->doc, attr->name, NULL);
679 if (copy == NULL) {
694 copy->parent = target;
696 target->properties = copy;
697 last = copy;
699 last->next = copy;
700 copy->prev = last;
701 last = copy;
721 copy
[all...]
H A Dtransform.c716 xmlNodePtr copy; local
724 "xsltCopyTextString: copy text %s\n",
757 copy = xmlNewCDataBlock(ctxt->output, string, len);
768 copy = xmlNewTextLen(string, len);
769 if (copy != NULL)
770 copy->name = xmlStringTextNoenc;
780 copy = xmlNewTextLen(string, len);
782 if (copy != NULL) {
784 copy = xsltAddChild(target, copy);
812 xmlNodePtr copy; local
986 xmlAttrPtr copy; local
1086 xmlAttrPtr copy; local
1161 xmlNodePtr copy; local
1249 xmlNodePtr copy, ret = NULL; local
1454 xmlNodePtr copy; local
1737 xmlNodePtr copy; local
2189 xmlNodePtr cur, insert, copy = NULL; local
3726 xmlNodePtr copy, oldInsert; local
3841 xmlNodePtr copy; local
3883 xmlNodePtr copy; local
4367 xmlNodePtr copy = NULL; local
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/external/open-vcdiff/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
212 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
212 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/external/skia/tests/
H A DStreamTest.cpp59 char copy[sizeof(s)]; local
63 char* copyPtr = copy;
69 } while (copyPtr < copy + sizeof(s));
70 REPORTER_ASSERT(reporter, copyPtr == copy + sizeof(s));
71 REPORTER_ASSERT(reporter, memcmp(s, copy, sizeof(s)) == 0);
/external/webkit/Tools/android/flex-2.5.4a/
H A Dnfa.c80 int copy, i; local
82 copy = mkstate( SYM_EPSILON );
85 copy = link_machines( copy, dupmachine( singl ) );
87 return copy;
135 * copy = dupmachine( mach );
137 * copy - holds duplicate of mach
140 * note that the copy of mach is NOT an exact duplicate; rather, all the
141 * transition states values are adjusted so that the copy is self-contained,
549 int base_mach, tail, copy, local
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListSubListTester.java6 * You may obtain a copy of the License at
211 List<E> copy = list.subList(0, size);
214 assertEquals(list.get(0), copy.get(0));
215 assertEquals(list.get(size - 1), copy.get(size - 1));
220 for (List<E> subList : Arrays.asList(copy, head, tail)) {
235 List<E> copy = list.subList(0, size);
238 assertTrue(copy.contains(list.get(0)));
242 assertTrue(copy.contains(list.get(size - 1)));
253 List<E> copy = list.subList(0, size);
256 assertEquals(copy
[all...]
/external/eigen/bench/btl/libs/BLAS/
H A Dblas_interface_impl.hh68 BLAS_FUNC(copy)(&N2, X, &intone, C, &intone);
77 BLAS_FUNC(copy)(&N2, X, &intone, C, &intone);
86 BLAS_FUNC(copy)(&N, B, &intone, X, &intone);
91 BLAS_FUNC(copy)(&N, B, &intone, X, &intone);
103 BLAS_FUNC(copy)(&N2, X, &intone, C, &intone);
117 BLAS_FUNC(copy)(&N2, X, &inc, C, &inc);
133 BLAS_FUNC(copy)(&N2, X, &inc, C, &inc);
/external/quake/quake/src/QW/client/
H A Dnet_udp.c15 You should have received a copy of the GNU General Public License
124 char copy[128]; local
132 strcpy (copy, s);
134 for (colon = copy ; *colon ; colon++)
141 if (copy[0] >= '0' && copy[0] <= '9')
143 *(int *)&sadr.sin_addr = inet_addr(copy);
147 if (! (h = gethostbyname(copy)) )
H A Dnet_wins.c15 You should have received a copy of the GNU General Public License
100 char copy[128]; local
108 strcpy (copy, s);
110 for (colon = copy ; *colon ; colon++)
117 if (copy[0] >= '0' && copy[0] <= '9')
119 *(int *)&sadr.sin_addr = inet_addr(copy);
123 if ((h = gethostbyname(copy)) == 0)
/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseDiff.pl42 +++ Makefile (working copy)
55 +++ Makefile (working copy)
153 +++ Makefile (working copy)
169 +++ Makefile (working copy)
190 +++ Makefile_new (working copy)
210 +++ Makefile (working copy)
223 +++ Makefile (working copy)
241 +++ Makefile (working copy)
256 +++ Makefile (working copy)
282 +++ Makefile (working copy)
[all...]
/external/ceres-solver/internal/ceres/
H A Dcompressed_row_sparse_matrix.cc281 copy(rows_.get(), rows_.get() + num_rows_ + 1, new_rows);
289 // to hold the combined matrix and copy the contents of this matrix
297 copy(cols_.get(), cols_.get() + max_num_nonzeros_, new_cols);
301 copy(values_.get(), values_.get() + max_num_nonzeros_, new_values);
308 copy(m.cols(), m.cols() + m.num_nonzeros(), cols_.get() + num_nonzeros());
309 copy(m.values(),
316 copy(rows_.get(), rows_.get() + num_rows_, new_rows);
348 copy(rows_.get(), rows_.get() + matrix->num_rows + 1, matrix->rows.begin());
349 copy(cols_.get(), cols_.get() + num_nonzeros(), matrix->cols.begin());
350 copy(values
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXPolicyNode.java131 return copy();
134 public PKIXPolicyNode copy() method in class:PKIXPolicyNode
161 PKIXPolicyNode _child = ((PKIXPolicyNode)_iter.next()).copy();
/external/guava/guava/src/com/google/common/collect/
H A DObjectArrays.java6 * You may obtain a copy of the License at
106 T[] copy = newArray(original, newLength);
108 original, 0, copy, 0, Math.min(original.length, newLength));
109 return copy;
/external/openfst/src/include/fst/
H A Dprune.h5 // You may obtain a copy of the License at
252 vector<StateId> copy; local
259 while (copy.size() <= s)
260 copy.push_back(kNoStateId);
261 copy[s] = ofst->AddState();
262 ofst->SetStart(copy[s]);
278 ofst->SetFinal(copy[s], ifst.Final(s));
297 while (copy.size() <= arc.nextstate)
298 copy.push_back(kNoStateId);
299 if (copy[ar
[all...]
/external/openssh/
H A Dauthfile.c282 Buffer copy; local
299 buffer_init(&copy);
300 buffer_append(&copy, buffer_ptr(blob), buffer_len(blob));
301 buffer_consume(&copy, sizeof(authfile_id_string));
304 (void) buffer_get_char(&copy); /* cipher type */
305 (void) buffer_get_int(&copy); /* reserved */
308 (void) buffer_get_int(&copy);
310 buffer_get_bignum(&copy, pub->rsa->n);
311 buffer_get_bignum(&copy, pub->rsa->e);
313 *commentp = buffer_get_string(&copy, NUL
426 Buffer copy; local
[all...]
/external/webkit/LayoutTests/fast/dom/DOMImplementation/script-tests/
H A DcreateDocument-namespace-err.js107 var copy = new Array(args.length);
109 copy[i] = sourceify(args[i]);
111 return copy.join(", ");
123 var argsWithExtraLastNull = test.args.slice(); // copy the args arary
/external/webkit/Source/WebCore/bindings/js/
H A DScriptDebugServer.cpp225 Vector<ScriptDebugListener*> copy; local
226 copyToVector(listeners, copy);
227 for (size_t i = 0; i < copy.size(); ++i)
228 copy[i]->didParseSource(sourceID, url, data, lineOffset, columnOffset, isContentScript);
237 Vector<ScriptDebugListener*> copy; local
238 copyToVector(listeners, copy);
239 for (size_t i = 0; i < copy.size(); ++i)
240 copy[i]->failedToParseSource(url, data, firstLine, errorLine, errorMessage);
284 Vector<ScriptDebugListener*> copy; local
285 copyToVector(listeners, copy);
[all...]

Completed in 712 milliseconds

1234567891011>>