/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
KDFParameters.java | 12 byte[] shared; field in class:KDFParameters 15 byte[] shared, 18 this.shared = shared; 24 return shared;
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/params/ |
KDFParameters.java | 14 byte[] shared; field in class:KDFParameters 17 byte[] shared, 20 this.shared = shared; 26 return shared;
|
/external/ltp/testcases/kernel/fs/fs_bind/bind/ |
00_Descriptions.txt | 25 test01 - shared child to shared parent. 26 test02 - shared child to private parent. 27 test03 - shared child to slave parent. 28 test04 - shared child to unclonable parent. 29 test05 - private child to shared parent. 34 test09 - slave child to shared parent. 38 test13 - uncloneable child to shared parent. 42 test17 - shared subtree with shared child to shared subtree [all...] |
/external/mesa3d/src/mesa/main/ |
shared.c | 26 * \file shared.c 27 * Shared-context state 35 #include "shared.h" 48 free_shared_state(struct gl_context *ctx, struct gl_shared_state *shared); 51 * Allocate and initialize a shared context state structure. 62 struct gl_shared_state *shared; local 65 shared = CALLOC_STRUCT(gl_shared_state); 66 if (!shared) 69 simple_mtx_init(&shared->Mutex, mtx_plain); 71 shared->DisplayList = _mesa_NewHashTable() [all...] |
/external/ltp/testcases/kernel/fs/fs_bind/rbind/ |
00_Descriptions.txt | 26 test01 - shared child to shared parent. 27 test02 - shared child to private parent. 28 test03 - shared child to slave parent. 29 test04 - shared child to unclonable parent. 30 test05 - private child to shared parent. 34 test09 - slave child to shared parent. 38 test13 - uncloneable child to shared parent. 42 test17 - shared subtree with shared child to shared subtree [all...] |
/build/make/core/combo/ |
HOST_linux-x86_64.mk | 20 define $(combo_var_prefix)transform-shared-lib-to-toc
|
/external/replicaisland/src/com/replica/replicaisland/ |
GameComponent.java | 41 public boolean shared; field in class:GameComponent 45 shared = false;
|
/frameworks/av/media/libmedia/include/media/ |
SingleStateQueue.h | 41 struct Shared { 57 Mutator(Shared *shared) 58 : mSequence(0), mShared(shared) 61 // shared->init(); 68 Shared *shared = mShared; local 71 android_atomic_acquire_store(sequence, &shared->mSequence); 72 shared->mValue = value; 74 android_atomic_release_store(sequence, &shared->mSequence) 126 Shared *shared = mShared; local [all...] |
/external/clang/test/OpenMP/ |
parallel_default_messages.cpp | 7 #pragma omp parallel default ( // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}} 8 #pragma omp parallel default () // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} 10 #pragma omp parallel default (shared), default(shared) // expected-error {{directive '#pragma omp parallel' cannot contain more than one 'default' clause}} 11 #pragma omp parallel default (x) // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} 18 #pragma omp parallel default(shared)
|
task_default_messages.cpp | 7 #pragma omp task default( // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}} 8 #pragma omp task default() // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} 10 #pragma omp task default(shared), default(shared) // expected-error {{directive '#pragma omp task' cannot contain more than one 'default' clause}} 11 #pragma omp task default(x) // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} 18 #pragma omp task default(shared)
|
parallel_shared_messages.cpp | 62 #pragma omp parallel shared // expected-error {{expected '(' after 'shared'}} 63 #pragma omp parallel shared ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 64 #pragma omp parallel shared () // expected-error {{expected expression}} 65 #pragma omp parallel shared (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 66 #pragma omp parallel shared (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 67 #pragma omp parallel shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}} 68 #pragma omp parallel shared (argc) 69 #pragma omp parallel shared (S1) // expected-error {{'S1' does not refer to a value}} 70 #pragma omp parallel shared (a, b, c, d, f [all...] |
task_shared_messages.cpp | 66 #pragma omp task shared // expected-error {{expected '(' after 'shared'}} 68 #pragma omp task shared( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 70 #pragma omp task shared() // expected-error {{expected expression}} 72 #pragma omp task shared(argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 74 #pragma omp task shared(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 76 #pragma omp task shared(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}} 78 #pragma omp task shared(argc) 80 #pragma omp task shared(S1) // expected-error {{'S1' does not refer to a value}} 82 #pragma omp task shared(a, b, c, d, f [all...] |
parallel_sections_default_messages.cpp | 8 #pragma omp parallel sections default( // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}} 10 #pragma omp parallel sections default() // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} 14 #pragma omp parallel sections default(shared), default(shared) // expected-error {{directive '#pragma omp parallel sections' cannot contain more than one 'default' clause}} 16 #pragma omp parallel sections default(x) // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} 33 #pragma omp parallel sections default(shared)
|
parallel_sections_shared_messages.cpp | 66 #pragma omp parallel sections shared // expected-error {{expected '(' after 'shared'}} 68 #pragma omp parallel sections shared( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 70 #pragma omp parallel sections shared() // expected-error {{expected expression}} 72 #pragma omp parallel sections shared(argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 74 #pragma omp parallel sections shared(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 76 #pragma omp parallel sections shared(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}} 78 #pragma omp parallel sections shared(argc) 80 #pragma omp parallel sections shared(S1) // expected-error {{'S1' does not refer to a value}} 82 #pragma omp parallel sections shared(a, b, c, d, f [all...] |
target_parallel_shared_messages.cpp | 62 #pragma omp target parallel shared // expected-error {{expected '(' after 'shared'}} 64 #pragma omp target parallel shared ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 66 #pragma omp target parallel shared () // expected-error {{expected expression}} 68 #pragma omp target parallel shared (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 70 #pragma omp target parallel shared (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 72 #pragma omp target parallel shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}} 74 #pragma omp target parallel shared (argc) 76 #pragma omp target parallel shared (S1) // expected-error {{'S1' does not refer to a value}} 78 #pragma omp target parallel shared (a, b, c, d, f [all...] |
teams_shared_messages.cpp | 63 #pragma omp teams shared // expected-error {{expected '(' after 'shared'}} 66 #pragma omp teams shared ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 69 #pragma omp teams shared () // expected-error {{expected expression}} 72 #pragma omp teams shared (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 75 #pragma omp teams shared (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 78 #pragma omp teams shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}} 81 #pragma omp teams shared (argc) 84 #pragma omp teams shared (S1) // expected-error {{'S1' does not refer to a value}} 87 #pragma omp teams shared (a, b, c, d, f [all...] |
/device/google/cuttlefish/shared/tv/ |
device.mk | 17 DEVICE_MANIFEST_FILE += device/google/cuttlefish/shared/config/manifest.xml 18 DEVICE_MANIFEST_FILE += device/google/cuttlefish/shared/tv/manifest.xml 21 $(call inherit-product, device/google/cuttlefish/shared/device.mk)
|
/external/ltp/testcases/kernel/fs/fs_bind/move/ |
00_Descriptions.txt | 25 test01 - shared child to shared parent. 26 test02 - shared subtree to private parent. 27 test03 - shared subtree to slave parent. 28 test04 - shared subtree to uncloneable parent. 29 test05 - private subtree to shared parent. 33 test09 - slave subtree to shared parent. 37 test13 - uncloneable subtree to shared parent. 41 test17 - tree with shared parent - check ERROR. 42 test18 - private to private - with shared childre [all...] |
/device/google/cuttlefish/shared/wear/ |
device.mk | 17 DEVICE_MANIFEST_FILE += device/google/cuttlefish/shared/config/manifest.xml 20 $(call inherit-product, device/google/cuttlefish/shared/device.mk)
|
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/ |
MultiViewInputStreamFactory.java | 15 package com.google.archivepatcher.shared;
|
/external/ltp/testcases/kernel/fs/acl/ |
tacl_xattr.sh | 125 if [ ! -e tacl/mount-ext2/shared ] 127 mkdir -p -m 777 tacl/mount-ext2/shared 134 mkdir $CUR_PATH/tacl/mount-ext2/shared/team1 135 touch $CUR_PATH/tacl/mount-ext2/shared/team1/file1 137 cd $CUR_PATH/tacl/mount-ext2/shared/team1 141 cd $CUR_PATH/tacl/mount-ext2/shared 149 mkdir $CUR_PATH/tacl/mount-ext2/shared/team2 150 touch $CUR_PATH/tacl/mount-ext2/shared/team2/file1 152 cd $CUR_PATH/tacl/mount-ext2/shared/team2 156 cd $CUR_PATH/tacl/mount-ext2/shared [all...] |
/bionic/libc/private/ |
bionic_futex.h | 57 static inline int __futex_wake_ex(volatile void* ftx, bool shared, int count) { 58 return __futex(ftx, shared ? FUTEX_WAKE : FUTEX_WAKE_PRIVATE, count, nullptr, 0); 65 static inline int __futex_wait_ex(volatile void* ftx, bool shared, int value) { 66 return __futex(ftx, (shared ? FUTEX_WAIT_BITSET : FUTEX_WAIT_BITSET_PRIVATE), value, nullptr, 70 __LIBC_HIDDEN__ int __futex_wait_ex(volatile void* ftx, bool shared, int value, 73 static inline int __futex_pi_unlock(volatile void* ftx, bool shared) { 74 return __futex(ftx, shared ? FUTEX_UNLOCK_PI : FUTEX_UNLOCK_PI_PRIVATE, 0, nullptr, 0); 77 __LIBC_HIDDEN__ int __futex_pi_lock_ex(volatile void* ftx, bool shared, bool use_realtime_clock,
|
/external/ltp/testcases/kernel/syscalls/ipc/shmdt/ |
shmdt01.c | 25 * shmdt01 - check that shared memory is detached correctly 28 * create a shared memory resource of size sizeof(int) 35 * attempt to write a value to the shared memory address 73 int *shared; /* variable to use for shared memory attach */ variable 97 TEST(shmdt((const void *)shared)); 106 /* reattach the shared memory segment in case we are looping */ 107 shared = shmat(shm_id_1, 0, 0); 109 if (shared == (void *)-1) { 127 /* stat the shared memory segment * [all...] |
/external/skia/tests/ |
SkSharedMutexTest.cpp | 26 int shared[kSharedSize]; local 29 shared[i] = 0; 36 int v = shared[0]; 38 REPORTER_ASSERT(r, v == shared[i]); 48 shared[i] = value;
|
/external/skqp/tests/ |
SkSharedMutexTest.cpp | 26 int shared[kSharedSize]; local 29 shared[i] = 0; 36 int v = shared[0]; 38 REPORTER_ASSERT(r, v == shared[i]); 48 shared[i] = value;
|