/prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/ |
chacha20poly1305_generic.go | 20 copy(counter[4:], nonce) 30 copy(polyInput, additionalData) 31 copy(polyInput[roundTo16(len(additionalData)):], out[:len(plaintext)]) 37 copy(out[len(plaintext):], tag[:]) 44 copy(tag[:], ciphertext[len(ciphertext)-16:]) 48 copy(counter[4:], nonce) 54 copy(polyInput, additionalData) 55 copy(polyInput[roundTo16(len(additionalData)):], ciphertext)
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue8039.go | 7 // issue 8039. defer copy(x, <-c) did not rewrite <-c properly. 14 defer copy(s, <-c)
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/hppa/parse/ |
defbug.s | 4 .export vfork ! .label vfork ! .proc! .callinfo no_calls! .entry ! .label __vfork ! mtsp %r0,%sr0! ldil L%0xc0000004,%r1! ble R%0xc0000004(%sr0,%r1)! ldi 66 ,%r22 ! b,n yyy! b,n __vfork ! b _seterrno! copy %r28,%r26! .label yyy 6 copy %r0,%r28
|
/tools/tradefederation/core/src/com/android/tradefed/build/ |
FolderBuildInfo.java | 6 * You may obtain a copy of the License at 76 FolderBuildInfo copy = new FolderBuildInfo(getBuildId(), getBuildTargetName()); local 77 copy.addAllBuildAttributes(this); 81 copy.setRootDir(copyDir); 82 return copy;
|
/external/zlib/src/contrib/infback9/ |
infback9.c | 236 unsigned long length; /* literal or length of data to copy */ 237 unsigned long offset; /* distance back to copy string from */ 238 unsigned long copy; /* number of stored or match bytes to copy */ local 239 unsigned char FAR *from; /* where to copy match bytes from */ 246 unsigned len; /* length to copy for repeats, bits to drop */ 326 /* copy stored block from input to output */ 328 copy = length; 331 if (copy > have) copy = have [all...] |
/hardware/qcom/gps/core/ |
MsgTask.cpp | 109 MsgTask* copy = (MsgTask*)arg; local 114 if (NULL != copy->mAssociator) { 115 copy->mAssociator(); 124 msq_q_err_type result = msg_q_rcv((void*)copy->mQ, (void **)&msg); 130 msg_q_destroy((void**)&(copy->mQ)); 131 delete copy; 142 delete copy;
|
/hardware/qcom/gps/msm8084/core/ |
MsgTask.cpp | 109 MsgTask* copy = (MsgTask*)arg; local 114 if (NULL != copy->mAssociator) { 115 copy->mAssociator(); 124 msq_q_err_type result = msg_q_rcv((void*)copy->mQ, (void **)&msg); 130 msg_q_destroy((void**)&(copy->mQ)); 131 delete copy; 142 delete copy;
|
/hardware/qcom/gps/msm8994/core/ |
MsgTask.cpp | 109 MsgTask* copy = (MsgTask*)arg; local 114 if (NULL != copy->mAssociator) { 115 copy->mAssociator(); 124 msq_q_err_type result = msg_q_rcv((void*)copy->mQ, (void **)&msg); 130 msg_q_destroy((void**)&(copy->mQ)); 131 delete copy; 142 delete copy;
|
/toolchain/binutils/binutils-2.27/zlib/contrib/infback9/ |
infback9.c | 236 unsigned long length; /* literal or length of data to copy */ 237 unsigned long offset; /* distance back to copy string from */ 238 unsigned long copy; /* number of stored or match bytes to copy */ local 239 unsigned char FAR *from; /* where to copy match bytes from */ 246 unsigned len; /* length to copy for repeats, bits to drop */ 326 /* copy stored block from input to output */ 328 copy = length; 331 if (copy > have) copy = have [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/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()
328 unsigned copy, dist;
local 347 /* copy state->wsize or less output bytes into the circular window */
348 copy = out - strm->avail_out;
349 if (copy >= state->wsize) {
356 if (dist > copy) dist = copy;
357 zmemcpy(state->window + state->write, strm->next_out - copy, dist); 565 unsigned copy; \/* number of stored or match bytes to copy *\/ local [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/ |
GeometricMean.java | 7 * the License. You may obtain a copy of the License at 68 * Copy constructor, creates a new {@code GeometricMean} identical 71 * @param original the {@code GeometricMean} instance to copy 75 copy(original, this); method 90 public GeometricMean copy() { method in class:GeometricMean 92 copy(this, result); method 184 * @param source GeometricMean to copy 185 * @param dest GeometricMean to copy to 188 public static void copy(GeometricMean source, GeometricMean dest) { method in class:GeometricMean 190 dest.sumOfLogs = source.sumOfLogs.copy(); [all...] |
StandardDeviation.java | 7 * the License. You may obtain a copy of the License at 68 * Copy constructor, creates a new {@code StandardDeviation} identical 71 * @param original the {@code StandardDeviation} instance to copy 74 copy(original, this); method 251 public StandardDeviation copy() { method in class:StandardDeviation 253 copy(this, result); method 262 * @param source StandardDeviation to copy 263 * @param dest StandardDeviation to copy to 266 public static void copy(StandardDeviation source, StandardDeviation dest) { method in class:StandardDeviation 268 dest.variance = source.variance.copy(); [all...] |
/external/autotest/server/ |
system_utils.py | 11 import copy 86 return copy.copy(cls.unrestricted_drones) 99 return copy.copy(cls.drone_ip_map)
|
/external/compiler-rt/test/BlocksRuntime/ |
fail.c | 35 char *copy[argc+1]; // make a copy local 44 copy[counter++] = argv[i]; 47 copy[counter] = NULL; 61 int result = execv(copy[0], copy);
|
/external/libxml2/ |
testOOMlib.c | 187 char *copy; local 194 copy = test_malloc (len + 1); 195 if (copy == NULL) 198 memcpy (copy, str, len + 1); 200 return copy;
|
/external/protobuf/src/google/protobuf/stubs/ |
statusor_test.cc | 93 StatusOr<int> copy(original); 94 EXPECT_EQ(original.status(), copy.status()); 95 EXPECT_EQ(original.ValueOrDie(), copy.ValueOrDie()); 100 StatusOr<int> copy(original); 101 EXPECT_EQ(original.status(), copy.status()); 107 StatusOr<double> copy(original); 108 EXPECT_EQ(original.status(), copy.status()); 109 EXPECT_EQ(original.ValueOrDie(), copy.ValueOrDie()); 114 StatusOr<double> copy(original); 115 EXPECT_EQ(original.status(), copy.status()) [all...] |
/frameworks/av/media/libstagefright/ |
DataURISource.cpp | 6 * You may obtain a copy of the License at 93 size_t copy = mBuffer->size() - offset; local 94 if (copy > size) { 95 copy = size; 98 memcpy(data, mBuffer->data() + offset, copy); 100 return copy;
|
/external/ImageMagick/Magick++/lib/Magick++/ |
Drawable.h | 111 // Return polymorphic copy of object 112 virtual DrawableBase* copy() const; 132 // Copy constructor 174 // Return polymorphic copy of object 175 virtual VPathBase* copy() const = 0; 195 // Copy constructor 253 // Return polymorphic copy of object 255 DrawableBase* copy() const; 332 // Return polymorphic copy of object 333 DrawableBase* copy() const [all...] |
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/hppa/reloc/ |
funcrelocbug.s | 10 copy %r3,%r1 11 copy %r30,%r3 19 copy %r19,%r22 22 copy %r31,%r2 23 copy %r28,%r19 45 copy %r3,%r1 46 copy %r30,%r3 55 copy %r19,%r28 89 copy %r3,%r1 90 copy %r30,%r [all...] |
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.copy/ |
copy.pass.cpp | 14 // void copy(const path& from, const path& to); 15 // void copy(const path& from, const path& to, error_code& ec); 16 // void copy(const path& from, const path& to, copy_options options); 17 // void copy(const path& from, const path& to, copy_options options, 41 ASSERT_NOT_NOEXCEPT(fs::copy(p, p)); 42 ASSERT_NOT_NOEXCEPT(fs::copy(p, p, ec)); 43 ASSERT_NOT_NOEXCEPT(copy(p, p, opts)); 44 ASSERT_NOT_NOEXCEPT(copy(p, p, opts, ec)); 55 fs::copy(f, t); 81 fs::copy(f, t, ec) [all...] |
/frameworks/base/core/java/android/content/res/ |
GradientColor.java | 6 * You may obtain a copy of the License at 101 // NOTE: they need to be copied in the copy constructor! 132 private GradientColor(GradientColor copy) { 133 if (copy != null) { 134 mChangingConfigurations = copy.mChangingConfigurations; 135 mDefaultColor = copy.mDefaultColor; 136 mShader = copy.mShader; 137 mGradientType = copy.mGradientType; 138 mCenterX = copy.mCenterX; 139 mCenterY = copy.mCenterY [all...] |
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/fs.op.funcs/fs.op.copy/ |
copy.pass.cpp | 14 // void copy(const path& from, const path& to); 15 // void copy(const path& from, const path& to, error_code& ec) noexcept; 16 // void copy(const path& from, const path& to, copy_options options); 17 // void copy(const path& from, const path& to, copy_options options, 41 ASSERT_NOT_NOEXCEPT(fs::copy(p, p)); 42 ASSERT_NOEXCEPT(fs::copy(p, p, ec)); 43 ASSERT_NOT_NOEXCEPT(copy(p, p, opts)); 44 ASSERT_NOEXCEPT(copy(p, p, opts, ec)); 55 fs::copy(f, t); 81 fs::copy(f, t, ec) [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableSortedMapTest.java | 6 * You may obtain a copy of the License at 409 ImmutableSortedMap<String, Integer> copy local 411 assertEquals(Collections.<String, Integer>emptyMap(), copy); local 412 assertSame(copy, ImmutableSortedMap.copyOf(copy)); 413 assertSame(Ordering.natural(), copy.comparator()); 417 ImmutableSortedMap<String, Integer> copy local 419 assertMapEquals(copy, "one", 1); 420 assertSame(copy, ImmutableSortedMap.copyOf(copy)); 430 ImmutableSortedMap<String, Integer> copy local 444 ImmutableSortedMap<String, Integer> copy local 455 ImmutableSortedMap<String, Integer> copy local 468 ImmutableSortedMap<String, Integer> copy local 482 ImmutableSortedMap<String, Integer> copy local 529 Map<IntegerDiv10, String> copy = ImmutableMap.copyOf(original); local [all...] |
/external/skia/src/core/ |
SkRecorder.cpp | 81 // Use copy() only for optional arguments, to be copied if present or skipped if not. 82 // (For most types we just pass by value and let copy constructors do their thing.) 84 T* SkRecorder::copy(const T* src) { function in class:SkRecorder 91 // This copy() is for arrays. 94 T* SkRecorder::copy(const T src[], size_t count) { function in class:SkRecorder 109 char* SkRecorder::copy(const char src[], size_t count) { function in class:SkRecorder 120 char* SkRecorder::copy(const char* src) { function in class:SkRecorder 121 return this->copy(src, strlen(src)+1); 140 APPEND(DrawPoints, paint, mode, SkToUInt(count), this->copy(pts, count)); 175 APPEND(DrawDrawable, this->copy(matrix), drawable->getBounds(), fDrawableList->count() - 1) [all...] |
/external/skqp/src/core/ |
SkRecorder.cpp | 81 // Use copy() only for optional arguments, to be copied if present or skipped if not. 82 // (For most types we just pass by value and let copy constructors do their thing.) 84 T* SkRecorder::copy(const T* src) { function in class:SkRecorder 91 // This copy() is for arrays. 94 T* SkRecorder::copy(const T src[], size_t count) { function in class:SkRecorder 109 char* SkRecorder::copy(const char src[], size_t count) { function in class:SkRecorder 120 char* SkRecorder::copy(const char* src) { function in class:SkRecorder 121 return this->copy(src, strlen(src)+1); 140 APPEND(DrawPoints, paint, mode, SkToUInt(count), this->copy(pts, count)); 175 APPEND(DrawDrawable, this->copy(matrix), drawable->getBounds(), fDrawableList->count() - 1) [all...] |