/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
AbstractRealVector.java | 7 * the License. You may obtain a copy of the License at 111 RealVector result = v.copy(); 139 RealVector result = v.copy(); 151 return copy().mapAddToSelf(d); 167 public abstract AbstractRealVector copy(); method in class:AbstractRealVector 350 return copy().mapAbsToSelf(); 364 return copy().mapAcosToSelf(); 378 return copy().mapAsinToSelf(); 392 return copy().mapAtanToSelf(); 406 return copy().mapCbrtToSelf() 781 RealVector copy = copy(); local [all...] |
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
NuPlayerStreamListener.cpp | 6 * You may obtain a copy of the License at 142 size_t copy = entry->mSize; local 143 if (copy > size) { 144 copy = size; 152 if (mem == NULL || mem->size() < copy || mem->size() - copy < entry->mOffset) { 159 copy); 161 entry->mOffset += copy; 162 entry->mSize -= copy; 170 return copy; [all...] |
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
TeeOpTest.java | 12 * version 2 for more details (a copy is included in the LICENSE file that 15 * You should have received a copy of the GNU General Public License version 58 List<Integer> copy = new ArrayList<>(); local 60 assertCountSum(countTo(0).stream().peek(copy::add), 0, 0); 61 assertCountSum(copy.iterator(), 0, 0); 63 copy.clear(); 64 assertCountSum(countTo(10).stream().peek(copy::add), 10, 55); 65 assertCountSum(copy.iterator(), 10, 55); 67 copy.clear(); 68 assertCountSum(countTo(10).stream().map(mDoubler).peek(copy::add), 10, 110) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
structmember.c | 40 PyMemberDef copy;
local 41 copy.name = l->name;
42 copy.type = l->type;
43 copy.offset = l->offset;
44 copy.flags = l->flags;
45 copy.doc = NULL;
46 return PyMember_GetOne(addr, ©);
148 PyMemberDef copy;
local 149 copy.name = l->name;
150 copy.type = l->type; [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
structmember.c | 40 PyMemberDef copy;
local 41 copy.name = l->name;
42 copy.type = l->type;
43 copy.offset = l->offset;
44 copy.flags = l->flags;
45 copy.doc = NULL;
46 return PyMember_GetOne(addr, ©);
148 PyMemberDef copy;
local 149 copy.name = l->name;
150 copy.type = l->type; [all...] |
/external/python/cpython2/Python/ |
structmember.c | 40 PyMemberDef copy; local 41 copy.name = l->name; 42 copy.type = l->type; 43 copy.offset = l->offset; 44 copy.flags = l->flags; 45 copy.doc = NULL; 46 return PyMember_GetOne(addr, ©); 148 PyMemberDef copy; local 149 copy.name = l->name; 150 copy.type = l->type [all...] |
/frameworks/av/media/libmedia/include/media/ |
MediaProfiles.h | 7 ** You may obtain a copy of the License at 217 VideoCodec(const VideoCodec& copy) { 218 mCodec = copy.mCodec; 219 mBitRate = copy.mBitRate; 220 mFrameWidth = copy.mFrameWidth; 221 mFrameHeight = copy.mFrameHeight; 222 mFrameRate = copy.mFrameRate; 241 AudioCodec(const AudioCodec& copy) { 242 mCodec = copy.mCodec; 243 mBitRate = copy.mBitRate [all...] |
/prebuilts/go/darwin-x86/src/runtime/pprof/ |
protobuf.go | 43 copy(b.tmp[:], b.data[n2:n3]) 44 copy(b.data[n1+(n3-n2):], b.data[n1:n2]) 45 copy(b.data[n1:], b.tmp[:n3-n2]) 82 copy(b.tmp[:], b.data[n2:n3]) 83 copy(b.data[n1+(n3-n2):], b.data[n1:n2]) 84 copy(b.data[n1:], b.tmp[:n3-n2]) 137 copy(b.tmp[:], b.data[n2:n3]) 138 copy(b.data[n1+(n3-n2):], b.data[n1:n2]) 139 copy(b.data[n1:], b.tmp[:n3-n2])
|
/prebuilts/go/linux-x86/src/runtime/pprof/ |
protobuf.go | 43 copy(b.tmp[:], b.data[n2:n3]) 44 copy(b.data[n1+(n3-n2):], b.data[n1:n2]) 45 copy(b.data[n1:], b.tmp[:n3-n2]) 82 copy(b.tmp[:], b.data[n2:n3]) 83 copy(b.data[n1+(n3-n2):], b.data[n1:n2]) 84 copy(b.data[n1:], b.tmp[:n3-n2]) 137 copy(b.tmp[:], b.data[n2:n3]) 138 copy(b.data[n1+(n3-n2):], b.data[n1:n2]) 139 copy(b.data[n1:], b.tmp[:n3-n2])
|
/bionic/libc/bionic/ |
scandir.cpp | 6 * You may obtain a copy of the License at 64 dirent* copy = CopyDirent(entry); local 65 if (copy == nullptr) { 68 names_[size_++] = copy; 88 dirent* copy = reinterpret_cast<dirent*>(malloc(size)); local 89 memcpy(copy, original, original->d_reclen); 90 return copy;
|
/external/guava/guava-tests/benchmark/com/google/common/collect/ |
SortedCopyBenchmark.java | 5 * in compliance with the License. You may obtain a copy of the License at 88 List<Integer> copy = new ArrayList<Integer>(input); local 89 Collections.sort(copy); 90 dummy += copy.get(0); 94 List<Integer> copy = new ArrayList<Integer>(input); local 95 Collections.sort(copy); 96 dummy += ImmutableList.copyOf(copy).get(0);
|
/external/libcxx/test/std/containers/sequences/deque/deque.special/ |
copy.pass.cpp | 16 // copy(InputIterator first, InputIterator last, OutputIterator result); 56 assert(std::copy(c1.cbegin(), c1.cend(), c2.begin()) == c2.end()); 58 assert(std::copy(c2.cbegin(), c2.cend(), c1.begin()) == c1.end()); 60 assert(std::copy(c1.cbegin(), c1.cend(), RAI(c2.begin())) == RAI(c2.end())); 62 assert(std::copy(c2.cbegin(), c2.cend(), RAI(c1.begin())) == RAI(c1.end())); 64 assert(std::copy(RACI(c1.cbegin()), RACI(c1.cend()), c2.begin()) == c2.end()); 66 assert(std::copy(ICI(c2.cbegin()), ICI(c2.cend()), c1.begin()) == c1.end());
|
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/ |
ByteStringMicro.java | 84 final byte[] copy = new byte[size]; 85 System.arraycopy(bytes, offset, copy, 0, size); 86 return new ByteStringMicro(copy); 123 * @param target buffer to copy into 133 * @param target buffer to copy into 136 * @param size number of bytes to copy 149 final byte[] copy = new byte[size]; 150 System.arraycopy(bytes, 0, copy, 0, size); 151 return copy;
|
/external/zlib/src/contrib/minizip/ |
make_vms.com | 1 $ if f$search("ioapi.h_orig") .eqs. "" then copy ioapi.h ioapi.h_orig 3 $ copy sys$input: zdef 12 $ copy vmsdefs.h,ioapi.h_orig ioapi.h
|
/frameworks/base/graphics/java/android/graphics/ |
LinearGradient.java | 6 * You may obtain a copy of the License at 117 protected Shader copy() { method in class:LinearGradient 118 final LinearGradient copy; local 120 copy = new LinearGradient(mX0, mY0, mX1, mY1, mColors.clone(), 123 copy = new LinearGradient(mX0, mY0, mX1, mY1, mColor0, mColor1, mTileMode); 125 copyLocalMatrix(copy); 126 return copy;
|
/frameworks/native/opengl/tools/glgen/src/ |
GenerateGLES.java | 6 * You may obtain a copy of the License at 26 static void copy(String filename, PrintStream out) throws IOException { method in class:GenerateGLES 51 copy(javaPath, glStream); method 52 copy(stubRoot + ".cpp", cStream); 99 copy("stubs/gles11/" + suffix + "Header.java-if", gl11Stream); 100 copy("stubs/gles11/" + suffix + "cHeader.cpp", gl11cStream); 101 copy("stubs/gles11/common.cpp", gl11cStream);
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.special/ |
copy.pass.cpp | 16 // copy(InputIterator first, InputIterator last, OutputIterator result); 56 assert(std::copy(c1.cbegin(), c1.cend(), c2.begin()) == c2.end()); 58 assert(std::copy(c2.cbegin(), c2.cend(), c1.begin()) == c1.end()); 60 assert(std::copy(c1.cbegin(), c1.cend(), RAI(c2.begin())) == RAI(c2.end())); 62 assert(std::copy(c2.cbegin(), c2.cend(), RAI(c1.begin())) == RAI(c1.end())); 64 assert(std::copy(RACI(c1.cbegin()), RACI(c1.cend()), c2.begin()) == c2.end()); 66 assert(std::copy(ICI(c2.cbegin()), ICI(c2.cend()), c1.begin()) == c1.end());
|
/test/framework/build/ |
Android.mk | 6 # You may obtain a copy of the License at 89 $(call copy-many-files,$(vtslab_apk_modules)) \ 90 $(call copy-many-files,$(host_hc_copy_pairs)) \ 91 $(call copy-many-files,$(host_hc_extra_copy_pairs)) \ 92 $(call copy-many-files,$(host_acloud_copy_pairs)) \ 93 $(call copy-many-files,$(host_vti_proto_copy_pairs)) \ 94 $(call copy-many-files,$(vts_host_python_copy_pairs)) \
|
/toolchain/binutils/binutils-2.27/zlib/contrib/minizip/ |
make_vms.com | 1 $ if f$search("ioapi.h_orig") .eqs. "" then copy ioapi.h ioapi.h_orig 3 $ copy sys$input: zdef 12 $ copy vmsdefs.h,ioapi.h_orig ioapi.h
|
/external/libusb/msvc/ |
ddk_build.cmd | 33 copy target+..\..\msvc\libusb_sources sources >NUL 2>&1 73 copy %srcPath%\libusb-%version%.dll %dstPath%\dll 74 copy %srcPath%\libusb-%version%.pdb %dstPath%\dll 76 copy %srcPath%\libusb-%version%.lib %dstPath%\lib 85 copy ..\..\msvc\listdevs_sources sources >NUL 2>&1 95 copy %srcPath%\listdevs.exe %dstPath%\examples 96 copy %srcPath%\listdevs.pdb %dstPath%\examples 105 copy ..\..\msvc\xusb_sources sources >NUL 2>&1 115 copy %srcPath%\xusb.exe %dstPath%\examples 116 copy %srcPath%\xusb.pdb %dstPath%\example [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
UnmodifiableCollectionTests.java | 6 * You may obtain a copy of the License at 118 Collection<E> copy = new ArrayList<E>(); local 119 copy.addAll(collection); 126 assertCollectionsAreEquivalent(copy, collection); 133 assertCollectionsAreEquivalent(copy, collection); 140 assertCollectionsAreEquivalent(copy, collection); 143 assertCollectionsAreEquivalent(copy, collection); 150 assertCollectionsAreEquivalent(copy, collection); 157 assertCollectionsAreEquivalent(copy, collection); 164 assertCollectionsAreEquivalent(copy, collection) 208 Multiset<E> copy = LinkedHashMultiset.create(multiset); local [all...] |
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/ |
inflate.c | 20 * - Unroll direct copy to three copies per loop in inffast.c 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 46 * - Unroll last copy for window match in inflate_fast() 98 unsigned copy)); 396 local int updatewindow(strm, end, copy) 399 unsigned copy; 421 /* copy state->wsize or less output bytes into the circular window */ 422 if (copy >= state->wsize) { 429 if (dist > copy) dist = copy; 633 unsigned copy; \/* number of stored or match bytes to copy *\/ local [all...] |
/external/python/cpython3/Modules/zlib/ |
inflate.c | 20 * - Unroll direct copy to three copies per loop in inffast.c 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 46 * - Unroll last copy for window match in inflate_fast() 98 unsigned copy)); 396 local int updatewindow(strm, end, copy) 399 unsigned copy; 421 /* copy state->wsize or less output bytes into the circular window */ 422 if (copy >= state->wsize) { 429 if (dist > copy) dist = copy; 633 unsigned copy; \/* number of stored or match bytes to copy *\/ local [all...] |
/external/zlib/src/ |
inflate.c | 20 * - Unroll direct copy to three copies per loop in inffast.c 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 46 * - Unroll last copy for window match in inflate_fast() 98 unsigned copy)); 396 local int updatewindow(strm, end, copy) 399 unsigned copy; 421 /* copy state->wsize or less output bytes into the circular window */ 422 if (copy >= state->wsize) { 429 if (dist > copy) dist = copy; 633 unsigned copy; \/* number of stored or match bytes to copy *\/ local [all...] |
/build/make/core/ |
soong_java_prebuilt.mk | 23 $(eval $(call copy-one-file,$(LOCAL_PREBUILT_MODULE_FILE),$(full_classes_jar))) 24 $(eval $(call copy-one-file,$(LOCAL_PREBUILT_MODULE_FILE),$(full_classes_pre_proguard_jar))) 27 $(eval $(call copy-one-file,$(LOCAL_DROIDDOC_STUBS_JAR),$(OUT_DOCS)/$(LOCAL_MODULE)-stubs.srcjar)) 32 $(eval $(call copy-one-file,$(LOCAL_DROIDDOC_DOC_ZIP),$(OUT_DOCS)/$(LOCAL_MODULE)-docs.zip)) 36 $(eval $(call copy-one-file,$(LOCAL_SOONG_JACOCO_REPORT_CLASSES_JAR),\ 46 @echo "Copy: $@" 47 $(copy-file-to-target) 64 $(eval $(call copy-one-file,$(LOCAL_SOONG_STATIC_LIBRARY_EXTRA_PACKAGES),$(my_static_library_extra_packages))) 70 $(eval $(call copy-one-file,$(LOCAL_SOONG_HEADER_JAR),$(full_classes_header_jar))) 72 $(eval $(call copy-one-file,$(full_classes_jar),$(full_classes_header_jar)) [all...] |