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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserThreadTest.cpp 17 ASSERT_TRUE(HTMLParserThread::shared());
21 ASSERT_FALSE(HTMLParserThread::shared());
23 ASSERT_TRUE(HTMLParserThread::shared());
  /external/valgrind/main/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);
hg01_all_ok.c 8 static int shared = 0; variable
13 if (shared == 1)
20 shared++;
21 if (shared == 1) {
25 if (shared == 2) {
  /external/chromium_org/v8/test/mjsunit/
cross-realm-filtering.js 10 Realm.shared = {
18 Realm.shared.thrower_0(); \
20 Realm.shared.error_0 = e.stack; \
23 Realm.shared.thrower_1(); \
25 Realm.shared.error_1 = e.stack; \
36 assertSame(3, Realm.shared.error_0.length);
37 assertSame(4, Realm.shared.error_1.length);
39 assertTrue(Realm.shared.thrower_1 === Realm.shared.error_1[2].getFunction());
40 assertNotIn(Realm.shared.thrower_0, Realm.shared.error_0)
    [all...]
  /hardware/intel/img/libdrm/
Android.mk 9 $(TARGET_OUT_HEADERS)/libdrm/shared-core
40 shared-core/drm.h shared-core/drm_mode.h shared-core/drm_sarea.h
46 shared-core/i915_drm.h \
47 shared-core/mach64_drm.h \
48 shared-core/mga_drm.h \
49 shared-core/nouveau_drm.h \
50 shared-core/r128_drm.h \
51 shared-core/r300_reg.h
    [all...]
  /frameworks/av/media/libmedia/
SingleStateQueue.cpp 24 template<typename T> SingleStateQueue<T>::Mutator::Mutator(Shared *shared)
25 : mSequence(0), mShared((Shared *) shared)
28 //shared->init();
33 Shared *shared = mShared; local
36 android_atomic_acquire_store(sequence, &shared->mSequence);
37 shared->mValue = value;
39 android_atomic_release_store(sequence, &shared->mSequence)
65 Shared *shared = mShared; local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GameComponent.java 41 public boolean shared; field in class:GameComponent
45 shared = false;
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadRestrictionVerifier.h 54 void setShared(bool shared)
59 m_shared = shared;
64 ASSERT(shared != previouslyShared);
  /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)
parallel_sections_shared_messages.cpp 58 #pragma omp parallel sections shared // expected-error {{expected '(' after 'shared'}}
60 #pragma omp parallel sections shared( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
62 #pragma omp parallel sections shared() // expected-error {{expected expression}}
64 #pragma omp parallel sections shared(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
66 #pragma omp parallel sections shared(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
68 #pragma omp parallel sections shared(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
70 #pragma omp parallel sections shared(argc)
72 #pragma omp parallel sections shared(S1) // expected-error {{'S1' does not refer to a value}}
74 #pragma omp parallel sections shared(a, b, c, d, f
    [all...]
parallel_shared_messages.cpp 54 #pragma omp parallel shared // expected-error {{expected '(' after 'shared'}}
55 #pragma omp parallel shared ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
56 #pragma omp parallel shared () // expected-error {{expected expression}}
57 #pragma omp parallel shared (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
58 #pragma omp parallel shared (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
59 #pragma omp parallel shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
60 #pragma omp parallel shared (argc)
61 #pragma omp parallel shared (S1) // expected-error {{'S1' does not refer to a value}}
62 #pragma omp parallel 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)
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/auto_ptr_Y
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/unique_ptr_Y
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared_ptr_Y_rv
31 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared_ptr_r
    [all...]
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/owner_before_shared_ptr
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/dereference
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/arrow
31 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/op_boo
    [all...]
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/default
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/unique_ptr
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_throw
31 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/weak_pt
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
shared.c 26 * \file shared.c
27 * Shared-context state
38 #include "shared.h"
49 * Allocate and initialize a shared context state structure.
60 struct gl_shared_state *shared; local
63 shared = CALLOC_STRUCT(gl_shared_state);
64 if (!shared)
67 _glthread_INIT_MUTEX(shared->Mutex);
69 shared->DisplayList = _mesa_NewHashTable();
70 shared->TexObjects = _mesa_NewHashTable()
    [all...]
  /external/mesa3d/src/mesa/main/
shared.c 26 * \file shared.c
27 * Shared-context state
38 #include "shared.h"
49 * Allocate and initialize a shared context state structure.
60 struct gl_shared_state *shared; local
63 shared = CALLOC_STRUCT(gl_shared_state);
64 if (!shared)
67 _glthread_INIT_MUTEX(shared->Mutex);
69 shared->DisplayList = _mesa_NewHashTable();
70 shared->TexObjects = _mesa_NewHashTable()
    [all...]
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/allocate_shared
  /libcore/luni/src/main/java/java/nio/channels/
FileLock.java 27 * can be <em>exclusive</em> or <em>shared</em>. Multiple processes can hold
28 * shared locks on the same region of a file, but only a single process can hold
30 * simultaneously hold a shared lock overlapping the exclusive lock. An
31 * application can determine whether a {@code FileLock} is shared or exclusive
37 * locks held in this process. Locks are shared amongst all threads in the
58 * the platform is adopting advisory locks and always acquire shared locks when
82 // If true then shared, if false then exclusive
83 private final boolean shared; field in class:FileLock
95 * @param shared
96 * the lock's sharing mode of lock; {@code true} is shared,
    [all...]
  /external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
Android.mk 17 test_makefile := external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/Android.mk
19 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/lock
23 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/unlock
27 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/try_lock_until
31 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/try_lock_fo
    [all...]
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/reset_pointer_deleter
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/swap
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/reset_pointer
31 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/rese
    [all...]
  /external/chromium_org/third_party/sqlite/src/
mkextu.sh 3 # This script is used to compile SQLite into a shared library on Linux.
5 # Two separate shared libraries are generated. "sqlite3.so" is the core
11 echo gcc $CFLAGS -shared fts2amal.c -o fts2.so
12 gcc $CFLAGS -shared fts2amal.c -o fts2.so
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.dest/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.dest/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.dest/tested_elsewhere
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.io/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.io/Android.mk
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.io/io

Completed in 838 milliseconds

1 2 3 4 5 6 7 8 91011>>