HomeSort by relevance Sort by last modified time
    Searched refs:shared (Results 1 - 25 of 1985) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
movw-shared-1.d 1 #name: MOVW/MOVT shared libraries test 1
2 #source: movw-shared-1.s
3 #ld: -shared
4 #error: .*: relocation R_ARM_MOVW_ABS_NC against `a' can not be used when making a shared object; recompile with -fPIC
movw-shared-2.d 1 #name: MOVW/MOVT shared libraries test 2
2 #source: movw-shared-2.s
3 #ld: -shared
4 #error: .*: relocation R_ARM_MOVT_ABS against `b' can not be used when making a shared object; recompile with -fPIC
movw-shared-3.d 1 #name: MOVW/MOVT shared libraries test 3
2 #source: movw-shared-3.s
3 #ld: -shared
4 #error: .*: relocation R_ARM_THM_MOVW_ABS_NC against `c' can not be used when making a shared object; recompile with -fPIC
movw-shared-4.d 1 #name: MOVW/MOVT shared libraries test 4
2 #source: movw-shared-4.s
3 #ld: -shared
4 #error: .*: relocation R_ARM_THM_MOVT_ABS against `d' can not be used when making a shared object; recompile with -fPIC
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-i386/
warn1.d 1 #name: --warn-shared-textrel --fatal-warnings
3 #ld: -shared -melf_i386 --warn-shared-textrel --fatal-warnings
4 #error: .*warning: creating a DT_TEXTREL in a shared object.
protected1.d 2 #ld: -shared -melf_i386
3 #error: .*relocation R_386_GOTOFF against protected function `foo' can not be used when making a shared object
  /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...]
  /frameworks/base/packages/ExtShared/src/android/ext/shared/
Version.java 17 package android.ext.shared;
  /external/valgrind/helgrind/tests/
hg03_inherit.c 11 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[0]; /* no error - a is finished *
    [all...]
hg06_readshared.c 6 static int shared; variable
10 return (void *)(long)(shared + 44);
15 return (void *)(long)(shared + 55);
22 shared = 22;
30 assert(shared == 22);
  /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;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68k/
got-multigot-15-er.d 2 #ld: -shared --got=multigot
got-negative-15-er.d 2 #ld: -shared --got=negative
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-x86-64/
protected1.d 2 #ld: -shared -melf_x86_64
3 #error: .*relocation R_X86_64_PC32 against protected symbol `foo' can not be used when making a shared object
  /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)
119 Shared *shared = mShared; local
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-frv/
fdpic-shared-2-fail.d 1 #name: FRV uClinux PIC relocs to global symbols, failing shared linking
3 #ld: -shared
tls-shared-1-fail.d 1 #name: FRV TLS relocs, shared linking
3 #ld: -shared tmpdir/tls-1-dep.so
  /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...]
  /external/mesa3d/src/mesa/main/
shared.c 26 * \file shared.c
27 * Shared-context state
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()
    [all...]

Completed in 476 milliseconds

1 2 3 4 5 6 7 8 91011>>