Searched refs:shared (Results 1 - 25 of 783) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DKDFParameters.java12 byte[] shared; field in class:KDFParameters
15 byte[] shared,
18 this.shared = shared;
24 return shared;
14 KDFParameters( byte[] shared, byte[] iv) argument
/external/ltp/testcases/kernel/fs/fs_bind/bind/
H A D00_Descriptions.txt25 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 chil
[all...]
/external/valgrind/helgrind/tests/
H A Dhg03_inherit.c11 static volatile int shared[2]; variable
41 shared[0] = 22;
42 shared[1] = 77;
44 pthread_create(&a, NULL, t1, (void *)&shared[0]);
45 // a steals shared[0] from root thread, so is excl(a)
46 pthread_create(&b, NULL, t2, (void *)&shared[1]);
47 // b steals shared[1] from root thread, so is excl(b)
50 // b's stuff (shared[1]) still belongs to b, so is excl(b)
52 // ret is excl(root), and shared[0] is re-acquired as excl(root)
55 ret += shared[
[all...]
H A Dhg06_readshared.c6 static int shared; variable
10 return (void *)(long)(shared + 44);
15 return (void *)(long)(shared + 55);
22 shared = 22;
30 assert(shared == 22);
H A Dhg01_all_ok.c8 static int shared = 0; variable
13 if (shared == 1)
20 shared++;
21 if (shared == 1) {
25 if (shared == 2) {
H A Dhg04_race.c6 static int shared; variable
10 shared++;
/external/ltp/testcases/kernel/fs/fs_bind/rbind/
H A D00_Descriptions.txt26 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 chil
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGameComponent.java41 public boolean shared; field in class:GameComponent
45 shared = false;
/external/clang/test/OpenMP/
H A Dparallel_default_messages.cpp7 #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)
H A Dtask_default_messages.cpp7 #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)
H A Dparallel_sections_shared_messages.cpp66 #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(
[all...]
H A Dparallel_shared_messages.cpp62 #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 (
[all...]
H A Dtask_shared_messages.cpp66 #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(
[all...]
H A Dparallel_sections_default_messages.cpp8 #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)
H A Dtarget_parallel_shared_messages.cpp62 #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 (
[all...]
H A Dteams_shared_messages.cpp63 #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 (
[all...]
H A Dtarget_parallel_default_messages.cpp8 #pragma omp target parallel default ( // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
10 #pragma omp target parallel default () // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
14 #pragma omp target parallel default (shared), default(shared) // expected-error {{directive '#pragma omp target parallel' cannot contain more than one 'default' clause}}
16 #pragma omp target parallel default (x) // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
24 #pragma omp target parallel default(shared)
/external/mesa3d/src/mesa/main/
H A Dshared.c26 * \file shared.c
35 #include "shared.h"
47 * Allocate and initialize a shared context state structure.
58 struct gl_shared_state *shared; local
61 shared = CALLOC_STRUCT(gl_shared_state);
62 if (!shared)
65 mtx_init(&shared->Mutex, mtx_plain);
67 shared->DisplayList = _mesa_NewHashTable();
68 shared->BitmapAtlas = _mesa_NewHashTable();
69 shared
308 free_shared_state(struct gl_context *ctx, struct gl_shared_state *shared) argument
[all...]
/external/ltp/testcases/kernel/fs/fs_bind/move/
H A D00_Descriptions.txt25 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...]
/external/ltp/testcases/kernel/fs/acl/
H A Dtacl_xattr.sh125 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...]
/external/ltp/testcases/kernel/syscalls/ipc/shmdt/
H A Dshmdt01.c25 * 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 memor
[all...]
/external/skia/tests/
H A DSkSharedMutexTest.cpp26 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/
H A DSkSharedMutexTest.cpp26 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/vboot_reference/tests/
H A Dvboot_firmware_tests.c28 static VbSharedDataHeader* shared = (VbSharedDataHeader*)shared_data; variable
81 VbSharedDataInit(shared, sizeof(shared_data));
82 shared->fw_version_tpm = 0x00020004;
228 TEST_EQ(shared->flags & VBSD_LF_DEV_SWITCH_ON, 0,
229 "Dev flag in shared.flags dev=0");
230 TEST_EQ(shared->check_fw_a_result, VBSD_LF_CHECK_DEV_MISMATCH,
232 TEST_EQ(shared->check_fw_b_result, VBSD_LF_CHECK_REC_MISMATCH,
236 shared->flags |= VBSD_BOOT_DEV_SWITCH_ON;
244 TEST_NEQ(shared->flags & VBSD_LF_DEV_SWITCH_ON, 0,
245 "Dev flag in shared
[all...]
/external/v8/src/parsing/
H A Dparse-info.cc44 ParseInfo::ParseInfo(Handle<SharedFunctionInfo> shared) argument
45 : ParseInfo(shared->GetIsolate()->allocator()) {
46 isolate_ = shared->GetIsolate();
48 set_toplevel(shared->is_toplevel());
51 set_is_named_expression(shared->is_named_expression());
52 set_calls_eval(shared->scope_info()->CallsEval());
53 set_compiler_hints(shared->compiler_hints());
54 set_start_position(shared->start_position());
55 set_end_position(shared->end_position());
56 function_literal_id_ = shared
75 ParseInfo(Handle<SharedFunctionInfo> shared, std::shared_ptr<Zone> zone) argument
105 AllocateWithoutScript(Handle<SharedFunctionInfo> shared) argument
[all...]

Completed in 601 milliseconds

1234567891011>>