Home
last modified time | relevance | path

Searched refs:duplicate (Results 1 – 25 of 1000) sorted by relevance

12345678910>>...40

/external/cronet/third_party/boringssl/src/crypto/pool/
Dpool.c96 CRYPTO_BUFFER *duplicate = lh_CRYPTO_BUFFER_retrieve(pool->bufs, &tmp); in crypto_buffer_new() local
97 if (data_is_static && duplicate != NULL && !duplicate->data_is_static) { in crypto_buffer_new()
100 duplicate = NULL; in crypto_buffer_new()
102 if (duplicate != NULL) { in crypto_buffer_new()
103 CRYPTO_refcount_inc(&duplicate->references); in crypto_buffer_new()
107 if (duplicate != NULL) { in crypto_buffer_new()
108 return duplicate; in crypto_buffer_new()
139 CRYPTO_BUFFER *duplicate = lh_CRYPTO_BUFFER_retrieve(pool->bufs, buf); in crypto_buffer_new() local
140 if (data_is_static && duplicate != NULL && !duplicate->data_is_static) { in crypto_buffer_new()
143 duplicate = NULL; in crypto_buffer_new()
[all …]
/external/boringssl/src/crypto/pool/
Dpool.c96 CRYPTO_BUFFER *duplicate = lh_CRYPTO_BUFFER_retrieve(pool->bufs, &tmp); in crypto_buffer_new() local
97 if (data_is_static && duplicate != NULL && !duplicate->data_is_static) { in crypto_buffer_new()
100 duplicate = NULL; in crypto_buffer_new()
102 if (duplicate != NULL) { in crypto_buffer_new()
103 CRYPTO_refcount_inc(&duplicate->references); in crypto_buffer_new()
107 if (duplicate != NULL) { in crypto_buffer_new()
108 return duplicate; in crypto_buffer_new()
139 CRYPTO_BUFFER *duplicate = lh_CRYPTO_BUFFER_retrieve(pool->bufs, buf); in crypto_buffer_new() local
140 if (data_is_static && duplicate != NULL && !duplicate->data_is_static) { in crypto_buffer_new()
143 duplicate = NULL; in crypto_buffer_new()
[all …]
/external/rust/crates/argh/tests/ui/duplicate-name/
Dduplicate-short-name.stderr2 --> tests/ui/duplicate-name/duplicate-short-name.rs:4:5
10 --> tests/ui/duplicate-name/duplicate-short-name.rs:8:5
18 --> tests/ui/duplicate-name/duplicate-short-name.rs:12:5
26 --> tests/ui/duplicate-name/duplicate-short-name.rs:16:5
Dduplicate-long-name.stderr2 --> tests/ui/duplicate-name/duplicate-long-name.rs:4:5
10 --> tests/ui/duplicate-name/duplicate-long-name.rs:8:5
18 --> tests/ui/duplicate-name/duplicate-long-name.rs:12:5
26 --> tests/ui/duplicate-name/duplicate-long-name.rs:16:5
/external/rust/crates/pin-project/tests/ui/pin_project/
Dinvalid.stderr25 error: duplicate #[pin] attribute
28 33 | #[pin] //~ ERROR duplicate #[pin] attribute
31 error: duplicate #[pin] attribute
37 error: duplicate #[pin] attribute
43 error: duplicate #[pin] attribute
46 59 | #[pin] //~ ERROR duplicate #[pin] attribute
97 error: duplicate `PinnedDrop` argument
100 109 | #[pin_project(PinnedDrop, PinnedDrop)] //~ ERROR duplicate `PinnedDrop` argument
103 error: duplicate `UnsafeUnpin` argument
106 112 | #[pin_project(UnsafeUnpin, UnsafeUnpin)] //~ ERROR duplicate `UnsafeUnpin` argument
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateFormatSymbols.java741 return duplicate(eras); in getEras()
750 eras = duplicate(newEras); in setEras()
759 return duplicate(eraNames); in getEraNames()
768 eraNames = duplicate(newEraNames); in setEraNames()
777 return duplicate(narrowEras); in getNarrowEras()
786 narrowEras = duplicate(newNarrowEras); in setNarrowEras()
795 return duplicate(months); in getMonths()
841 return duplicate(returnValue); in getMonths()
850 months = duplicate(newMonths); in setMonths()
866 months = duplicate(newMonths); in setMonths()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDateFormatSymbols.java729 return duplicate(eras); in getEras()
737 eras = duplicate(newEras); in setEras()
745 return duplicate(eraNames); in getEraNames()
753 eraNames = duplicate(newEraNames); in setEraNames()
761 return duplicate(narrowEras); in getNarrowEras()
769 narrowEras = duplicate(newNarrowEras); in setNarrowEras()
777 return duplicate(months); in getMonths()
822 return duplicate(returnValue); in getMonths()
830 months = duplicate(newMonths); in setMonths()
845 months = duplicate(newMonths); in setMonths()
[all …]
/external/minigbm/cros_gralloc/gralloc0/tests/
Dgralloctest.c395 struct grallocinfo info, duplicate; in test_gralloc_order() local
399 grallocinfo_init(&duplicate, 512, 512, HAL_PIXEL_FORMAT_BGRA_8888, in test_gralloc_order()
409 duplicate.handle = native_handle; in test_gralloc_order()
411 CHECK(unregister_buffer(ctx->module, &duplicate) == 0); in test_gralloc_order()
412 CHECK(register_buffer(ctx->module, &duplicate)); in test_gralloc_order()
414 CHECK(unlock(ctx->module, &duplicate) == 0); in test_gralloc_order()
416 CHECK(lock(ctx->module, &duplicate)); in test_gralloc_order()
417 CHECK(duplicate.vaddr); in test_gralloc_order()
418 CHECK(unlock(ctx->module, &duplicate)); in test_gralloc_order()
420 CHECK(unregister_buffer(ctx->module, &duplicate)); in test_gralloc_order()
[all …]
/external/tpm2-tss/src/tss2-esys/api/
DEsys_Duplicate.c84 TPM2B_PRIVATE **duplicate, in Esys_Duplicate() argument
105 r = Esys_Duplicate_Finish(esysContext, encryptionKeyOut, duplicate, in Esys_Duplicate()
277 TPM2B_PRIVATE **duplicate, in Esys_Duplicate_Finish() argument
283 esysContext, encryptionKeyOut, duplicate, in Esys_Duplicate_Finish()
310 if (duplicate != NULL) { in Esys_Duplicate_Finish()
311 *duplicate = calloc(sizeof(TPM2B_PRIVATE), 1); in Esys_Duplicate_Finish()
312 if (*duplicate == NULL) { in Esys_Duplicate_Finish()
378 (duplicate != NULL) ? *duplicate : NULL, in Esys_Duplicate_Finish()
391 if (duplicate != NULL) in Esys_Duplicate_Finish()
392 SAFE_FREE(*duplicate); in Esys_Duplicate_Finish()
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/testers/
DListRemoveTester.java42 E duplicate = arrayAndDuplicate.duplicate; in testRemove_duplicate() local
44 int firstIndex = getList().indexOf(duplicate); in testRemove_duplicate()
46 assertTrue("remove(present) should return true", getList().remove(duplicate)); in testRemove_duplicate()
49 getList().contains(duplicate)); in testRemove_duplicate()
53 firstIndex == getList().indexOf(duplicate)); in testRemove_duplicate()
DListRemoveAllTester.java44 E duplicate = arrayAndDuplicate.duplicate; in testRemoveAll_duplicate() local
48 getList().removeAll(MinimalCollection.of(duplicate))); in testRemoveAll_duplicate()
52 getList().contains(duplicate)); in testRemoveAll_duplicate()
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DListRemoveTester.java42 E duplicate = arrayAndDuplicate.duplicate; in testRemove_duplicate() local
44 int firstIndex = getList().indexOf(duplicate); in testRemove_duplicate()
46 assertTrue("remove(present) should return true", getList().remove(duplicate)); in testRemove_duplicate()
49 getList().contains(duplicate)); in testRemove_duplicate()
53 firstIndex == getList().indexOf(duplicate)); in testRemove_duplicate()
DListRemoveAllTester.java44 E duplicate = arrayAndDuplicate.duplicate; in testRemoveAll_duplicate() local
48 getList().removeAll(MinimalCollection.of(duplicate))); in testRemoveAll_duplicate()
52 getList().contains(duplicate)); in testRemoveAll_duplicate()
/external/rust/crates/quiche/deps/boringssl/src/crypto/pool/
Dpool.c84 CRYPTO_BUFFER *const duplicate = in CRYPTO_BUFFER_new() local
86 if (duplicate != NULL) { in CRYPTO_BUFFER_new()
87 CRYPTO_refcount_inc(&duplicate->references); in CRYPTO_BUFFER_new()
91 if (duplicate != NULL) { in CRYPTO_BUFFER_new()
92 return duplicate; in CRYPTO_BUFFER_new()
118 CRYPTO_BUFFER *duplicate = lh_CRYPTO_BUFFER_retrieve(pool->bufs, buf); in CRYPTO_BUFFER_new() local
120 if (duplicate == NULL) { in CRYPTO_BUFFER_new()
125 CRYPTO_refcount_inc(&duplicate->references); in CRYPTO_BUFFER_new()
134 return duplicate; in CRYPTO_BUFFER_new()
/external/grpc-grpc/test/cpp/end2end/
DBUILD51 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
73 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
94 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
134 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
217 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
236 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
257 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
277 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
297 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
318 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
[all …]
/external/llvm/test/MC/ARM/
Deh-directive-movsp.s7 .section .duplicate
9 .global duplicate symbol
10 .type duplicate,%function
11 duplicate: label
20 @ CHECK: Name: .ARM.exidx.duplicate
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DAbstractContainerTester.java176 public final E duplicate; field in AbstractContainerTester.ArrayWithDuplicate
178 private ArrayWithDuplicate(E[] elements, E duplicate) { in ArrayWithDuplicate() argument
180 this.duplicate = duplicate; in ArrayWithDuplicate()
189 E duplicate = elements[(elements.length / 2) - 1]; in createArrayWithDuplicateElement() local
190 elements[(elements.length / 2) + 1] = duplicate; in createArrayWithDuplicateElement()
191 return new ArrayWithDuplicate<>(elements, duplicate); in createArrayWithDuplicateElement()
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/
DAbstractContainerTester.java176 public final E duplicate; field in AbstractContainerTester.ArrayWithDuplicate
178 private ArrayWithDuplicate(E[] elements, E duplicate) { in ArrayWithDuplicate() argument
180 this.duplicate = duplicate; in ArrayWithDuplicate()
189 E duplicate = elements[(elements.length / 2) - 1]; in createArrayWithDuplicateElement() local
190 elements[(elements.length / 2) + 1] = duplicate; in createArrayWithDuplicateElement()
191 return new ArrayWithDuplicate<>(elements, duplicate); in createArrayWithDuplicateElement()
/external/llvm/test/tools/llvm-dwp/X86/
Dduplicate.test1 RUN: not llvm-dwp %p/../Inputs/duplicate/c.dwo %p/../Inputs/duplicate/c.dwo -o %t 2>&1 \
4 RUN: not llvm-dwp %p/../Inputs/duplicate/c.dwo %p/../Inputs/duplicate/bc.dwp -o %t 2>&1 \
7 RUN: not llvm-dwp %p/../Inputs/duplicate/ac.dwp %p/../Inputs/duplicate/c.dwo -o %t 2>&1 \
/external/clang/test/SemaObjC/
Dcheck-dup-decl-methods-1.m12 - (int*) meth; // expected-error {{duplicate declaration of method 'meth'}}
21 - (int) catm : (char*)ch1; // expected-error {{duplicate declaration of method 'catm:'}}
29 + (int) catm1 : (char)ch : (int*)i; // expected-error {{duplicate declaration of method 'catm1::'}}
30 + (T**) meth1; // expected-error {{duplicate declaration of method 'meth1'}}
36 - (int*) meth; // expected-error {{duplicate declaration of method 'meth'}}
Dduplicate-ivar-in-class-extension.m12 int ivar; // expected-error {{duplicate member 'ivar'}}
13 int another_ivar; // expected-error {{duplicate member 'another_ivar'}}
14 int iSuper; // expected-error {{duplicate member 'iSuper'}}
30 return self->ivar; // would be ambiguous if the duplicate ivar were allowed
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
DUnknownEntry.java37 this.content = (ByteBuffer) content.duplicate().rewind(); in setContent()
42 this.content = (ByteBuffer) byteBuffer.duplicate().rewind(); in parse()
47 return content.duplicate(); in get()
52 ByteBuffer bb = content.duplicate(); in toString()
/external/skia/tests/sksl/errors/
DOverloadedBuiltin.glsl3 error: 4: duplicate definition of 'half fma(half a, half b, half c)'
6 error: 7: duplicate definition of 'half2 sin(half2 a)'
9 error: 8: duplicate definition of 'float3 sin(float3 a)'
15 error: 13: duplicate definition of 'half cos(half2 a)'
24 error: 17: duplicate definition of 'float pow(float x, float y)'
/external/tpm2-tss/src/tss2-sys/api/
DTss2_Sys_Import.c20 const TPM2B_PRIVATE *duplicate, in Tss2_Sys_Import_Prepare() argument
74 if (!duplicate) { in Tss2_Sys_Import_Prepare()
81 rval = Tss2_MU_TPM2B_PRIVATE_Marshal(duplicate, ctx->cmdBuffer, in Tss2_Sys_Import_Prepare()
145 const TPM2B_PRIVATE *duplicate, in Tss2_Sys_Import() argument
158 objectPublic, duplicate, inSymSeed, in Tss2_Sys_Import()
/external/cronet/base/win/
Dscoped_process_information_unittest.cc132 base::win::ScopedProcessInformation duplicate; in TEST_F() local
133 duplicate.DuplicateFrom(process_info); in TEST_F()
137 ASSERT_EQ(duplicate.process_id(), process_info.process_id()); in TEST_F()
139 ASSERT_EQ(duplicate.thread_id(), process_info.thread_id()); in TEST_F()
148 base::Process dup_process(duplicate.TakeProcessHandle()); in TEST_F()
153 ASSERT_TRUE(::CloseHandle(duplicate.TakeThreadHandle())); in TEST_F()

12345678910>>...40