HomeSort by relevance Sort by last modified time
    Searched defs:copy (Results 276 - 300 of 3098) sorted by null

<<11121314151617181920>>

  /external/deqp/external/vulkancts/framework/vulkan/
vkBuilderUtil.cpp 9 * You may obtain a copy of the License at
213 // Store a copy of pImageInfo, pBufferInfo and pTexelBufferView
230 DescriptorSetUpdateBuilder& DescriptorSetUpdateBuilder::copy (VkDescriptorSet srcSet, function in class:vk::DescriptorSetUpdateBuilder
  /external/desugar/java/com/google/devtools/build/android/desugar/
ZipOutputFileProvider.java 5 // You may obtain a copy of the License at
42 ByteStreams.copy(is, out);
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
AtraceScriptsWriter.java 6 * You may obtain a copy of the License at
70 copy(inputStream, outputStream); method
76 private static int copy(InputStream input, OutputStream output) throws IOException { method in class:AtraceScriptsWriter
  /external/dtc/tests/
overlay.c 17 * You should have received a copy of the GNU Lesser General Public
189 void *dt, *copy; local
192 copy = xmalloc(FDT_COPY_SIZE);
197 CHECK(fdt_open_into(dt, copy, FDT_COPY_SIZE));
199 return copy;
  /external/eigen/blas/
level1_impl.h 7 // Public License v. 2.0. If a copy of the MPL was not distributed
29 int EIGEN_BLAS_FUNC(copy)(int *n, RealScalar *px, int *incx, RealScalar *py, int *incy) function
  /external/eigen/test/
stable_norm.cpp 7 // Public License v. 2.0. If a copy of the MPL was not distributed
12 template<typename T> EIGEN_DONT_INLINE T copy(const T& x) function
89 VERIFY_IS_NOT_APPROX(sqrt(copy(vbig.squaredNorm())), abs(sqrt(size)*big)); // here the default norm must fail
96 VERIFY_IS_NOT_APPROX(sqrt(copy(vsmall.squaredNorm())), abs(sqrt(size)*small)); // here the default norm must fail
  /external/eigen/unsupported/test/
cxx11_tensor_fixed_size.cpp 7 // Public License v. 2.0. If a copy of the MPL was not distributed
29 // Test against shallow copy.
30 TensorFixedSize<float, Sizes<> > copy = scalar1; local
31 VERIFY_IS_NOT_EQUAL(scalar1.data(), copy.data());
32 VERIFY_IS_APPROX(scalar1(), copy());
33 copy = scalar1;
34 VERIFY_IS_NOT_EQUAL(scalar1.data(), copy.data());
35 VERIFY_IS_APPROX(scalar1(), copy());
63 // Test against shallow copy.
64 TensorFixedSize<float, Sizes<6> > copy = vec1 local
    [all...]
  /external/elfutils/libdw/
cfi.c 50 Dwarf_Frame *copy = malloc (size); local
51 if (likely (copy != NULL))
53 memcpy (copy, original, size);
54 copy->prev = prev;
56 return copy;
326 /* Duplicate the state and chain the copy on. */
327 Dwarf_Frame *copy = duplicate_frame_state (fs, fs); local
328 if (unlikely (copy == NULL))
333 fs = copy;
  /external/freetype/src/base/
ftglyph.c 319 FT_Glyph copy; local
340 error = ft_new_glyph( source->library, clazz, &copy );
344 copy->advance = source->advance;
345 copy->format = source->format;
348 error = clazz->glyph_copy( source, copy );
351 FT_Done_Glyph( copy );
353 *target = copy;
410 /* copy advance while converting 26.6 to 16.16 format */
605 /* in case of success, copy the bitmap to the glyph bitmap */
610 /* copy advance *
    [all...]
  /external/google-breakpad/src/processor/
linked_ptr.h 104 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
105 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
106 linked_ptr(linked_ptr const& ptr) { copy(&ptr); }
111 copy(&ptr);
118 copy(&ptr);
164 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:google_breakpad::linked_ptr
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
145 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
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/googletest/googletest/include/gtest/internal/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
155 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
156 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
159 copy(&ptr);
165 copy(&ptr);
172 copy(&ptr);
213 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
  /external/gptfdisk/
guid.cc 41 } // copy constructor
45 } // copy (from string) constructor
49 } // copy (from char*) constructor
69 string copy, fragment; local
84 copy = DeleteSpaces(orig);
87 len = copy.length();
95 uuidData[3] = StrToHex(copy, 0);
96 uuidData[2] = StrToHex(copy, 2);
97 uuidData[1] = StrToHex(copy, 4);
98 uuidData[0] = StrToHex(copy, 6)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ObjectArrays.java 6 * You may obtain a copy of the License at
112 T[] copy = newArray(original, newLength); local
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/
CharEscaper.java 6 * You may obtain a copy of the License at
112 // If we have skipped any characters, we need to copy them now.
118 // Copy the replacement string into the dest buffer as needed.
126 // Copy leftover characters if there are any.
132 // Regrow and copy, expensive! No padding as this is the final copy.
163 char[] copy = new char[size]; local
165 System.arraycopy(dest, 0, copy, 0, index);
167 return copy;
  /external/guava/guava/src/com/google/common/hash/
BloomFilterStrategies.java 5 * in compliance with the License. You may obtain a copy of the License at
183 BitArray copy() { method in class:BloomFilterStrategies.BitArray
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ObjectArrays.java 6 * You may obtain a copy of the License at
83 T[] copy = newArray(original, newLength); local
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/
HashBasedTableTest.java 6 * You may obtain a copy of the License at
72 Table<String, Integer, Character> copy = HashBasedTable.create(original); local
73 assertEquals(original, copy);
74 assertEquals((Character) 'a', copy.get("foo", 1));
HashMultimapTest.java 6 * You may obtain a copy of the License at
49 HashMultimap<String, Integer> copy = HashMultimap.create(multimap); local
50 assertEquals(multimap, copy);
51 assertEquals(2, copy.expectedValuesPerKey);
ImmutableSetTest.java 6 * You may obtain a copy of the License at
117 ImmutableSet<String> copy = ImmutableSet.copyOf(sortedSet); local
118 assertNotSame(sortedSet, copy);
  /external/guava/guava-testlib/test/com/google/common/testing/
SerializableTesterTest.java 6 * You may obtain a copy of the License at
32 String copy = SerializableTester.reserializeAndAssert(original); local
33 assertEquals(original, copy);
34 assertNotSame(original, copy);
  /external/guava/guava-tests/test/com/google/common/collect/
HashBasedTableTest.java 6 * You may obtain a copy of the License at
75 Table<String, Integer, Character> copy = HashBasedTable.create(original); local
76 assertEquals(original, copy);
77 assertEquals((Character) 'a', copy.get("foo", 1));
HashMultimapTest.java 6 * You may obtain a copy of the License at
87 HashMultimap<String, Integer> copy = HashMultimap.create(multimap); local
88 assertEquals(multimap, copy);
89 assertEquals(2, copy.expectedValuesPerKey);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ReplaceableString.java 115 * @param srcStart the beginning index to copy, inclusive; <code>0
117 * @param srcLimit the ending index to copy, exclusive;
164 * Copy a substring of this object, retaining attribute (out-of-band)
178 public void copy(int start, int limit, int dest) { method in class:ReplaceableString
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ReplaceableString.java 122 * @param srcStart the beginning index to copy, inclusive; <code>0
124 * @param srcLimit the ending index to copy, exclusive;
174 * Copy a substring of this object, retaining attribute (out-of-band)
189 public void copy(int start, int limit, int dest) { method in class:ReplaceableString

Completed in 458 milliseconds

<<11121314151617181920>>