Home
last modified time | relevance | path

Searched refs:shared (Results 1 – 25 of 4565) sorted by relevance

12345678910>>...183

/external/mesa3d/src/mesa/main/
Dshared.c60 struct gl_shared_state *shared; in _mesa_alloc_shared_state() local
63 shared = CALLOC_STRUCT(gl_shared_state); in _mesa_alloc_shared_state()
64 if (!shared) in _mesa_alloc_shared_state()
67 _glthread_INIT_MUTEX(shared->Mutex); in _mesa_alloc_shared_state()
69 shared->DisplayList = _mesa_NewHashTable(); in _mesa_alloc_shared_state()
70 shared->TexObjects = _mesa_NewHashTable(); in _mesa_alloc_shared_state()
71 shared->Programs = _mesa_NewHashTable(); in _mesa_alloc_shared_state()
74 shared->DefaultVertexProgram = in _mesa_alloc_shared_state()
80 shared->DefaultFragmentProgram = in _mesa_alloc_shared_state()
86 shared->ATIShaders = _mesa_NewHashTable(); in _mesa_alloc_shared_state()
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Dshared.c60 struct gl_shared_state *shared; in _mesa_alloc_shared_state() local
63 shared = CALLOC_STRUCT(gl_shared_state); in _mesa_alloc_shared_state()
64 if (!shared) in _mesa_alloc_shared_state()
67 _glthread_INIT_MUTEX(shared->Mutex); in _mesa_alloc_shared_state()
69 shared->DisplayList = _mesa_NewHashTable(); in _mesa_alloc_shared_state()
70 shared->TexObjects = _mesa_NewHashTable(); in _mesa_alloc_shared_state()
71 shared->Programs = _mesa_NewHashTable(); in _mesa_alloc_shared_state()
74 shared->DefaultVertexProgram = in _mesa_alloc_shared_state()
80 shared->DefaultFragmentProgram = in _mesa_alloc_shared_state()
86 shared->ATIShaders = _mesa_NewHashTable(); in _mesa_alloc_shared_state()
[all …]
/external/chromium_org/v8/test/mjsunit/
Dcross-realm-filtering.js10 Realm.shared = {
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);
41 assertNotIn(Realm.shared.thrower_0, Realm.shared.error_1);
44 assertSame(5, Realm.shared.error_0.length);
45 assertSame(4, Realm.shared.error_1.length);
47 assertTrue(Realm.shared.thrower_0 === Realm.shared.error_0[2].getFunction());
48 assertNotIn(Realm.shared.thrower_1, Realm.shared.error_0);
[all …]
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
DAndroid.mk17 …ernal/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/A…
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_…
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr…
31 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/weak_ptr
35 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer…
39 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/shared_…
43 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer
47 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer…
51 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/shared_…
[all …]
/external/clang/test/OpenMP/
Dparallel_shared_messages.cpp54 #pragma omp parallel shared // expected-error {{expected '(' after 'shared'}} in main()
55 …#pragma omp parallel shared ( // expected-error {{expected expression}} expected-error {{expected … in main()
56 #pragma omp parallel shared () // expected-error {{expected expression}} in main()
57 …#pragma omp parallel shared (argc // expected-error {{expected ')'}} expected-note {{to match this… in main()
58 …#pragma omp parallel shared (argc, // expected-error {{expected expression}} expected-error {{expe… in main()
59 …#pragma omp parallel shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable n… in main()
60 #pragma omp parallel shared (argc) in main()
61 #pragma omp parallel shared (S1) // expected-error {{'S1' does not refer to a value}} in main()
62 #pragma omp parallel shared (a, b, c, d, f) in main()
63 #pragma omp parallel shared (argv[1]) // expected-error {{expected variable name}} in main()
[all …]
Dparallel_sections_shared_messages.cpp58 #pragma omp parallel sections shared // expected-error {{expected '(' after 'shared'}} in main()
60 #pragma omp parallel sections shared( // expected-error {{expected expression}} expected-error {{ex… in main()
62 #pragma omp parallel sections shared() // expected-error {{expected expression}} in main()
64 #pragma omp parallel sections shared(argc // expected-error {{expected ')'}} expected-note {{to mat… in main()
66 #pragma omp parallel sections shared(argc, // expected-error {{expected expression}} expected-error… in main()
68 #pragma omp parallel sections shared(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected var… in main()
70 #pragma omp parallel sections shared(argc) in main()
72 #pragma omp parallel sections shared(S1) // expected-error {{'S1' does not refer to a value}} in main()
74 #pragma omp parallel sections shared(a, b, c, d, f) in main()
76 #pragma omp parallel sections shared(argv[1]) // expected-error {{expected variable name}} in main()
[all …]
/external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
DAndroid.mk17 …xternal/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/And…
19 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_adopt…
23 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/default
27 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/move_ctor
31 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_try_t…
35 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_durat…
39 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_time_…
43 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/move_assign
47 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex
51 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_defer…
/external/compiler-rt/test/profile/
Dinstrprof-dynamic-two-shared.test2 RUN: %clang_profgen -o %t.d/a.shared -fPIC -shared %S/Inputs/instrprof-dynamic-a.cpp
3 RUN: %clang_profgen -o %t.d/b.shared -fPIC -shared %S/Inputs/instrprof-dynamic-b.cpp
4 RUN: %clang_profgen -o %t-shared -fPIC -rpath %t.d %t.d/a.shared %t.d/b.shared %S/Inputs/instrprof-…
9 RUN: env LLVM_PROFILE_FILE=%t-shared.profraw %run %t-shared
12 RUN: llvm-profdata merge -o %t-shared.profdata %t-shared.profraw
15 RUN: %clang_profuse=%t-shared.profdata -o %t-a.shared.ll -S -emit-llvm %S/Inputs/instrprof-dynamic-…
16 RUN: diff %t-a.static.ll %t-a.shared.ll
19 RUN: %clang_profuse=%t-shared.profdata -o %t-b.shared.ll -S -emit-llvm %S/Inputs/instrprof-dynamic-…
20 RUN: diff %t-b.static.ll %t-b.shared.ll
23 RUN: %clang_profuse=%t-shared.profdata -o %t-main.shared.ll -S -emit-llvm %S/Inputs/instrprof-dynam…
[all …]
Dinstrprof-dynamic-one-shared.test2 RUN: %clang_profgen -o %t.d/a.shared -fPIC -shared %S/Inputs/instrprof-dynamic-a.cpp
3 RUN: %clang_profgen -o %t-shared -fPIC -rpath %t.d %t.d/a.shared %S/Inputs/instrprof-dynamic-b.cpp …
8 RUN: env LLVM_PROFILE_FILE=%t-shared.profraw %run %t-shared
11 RUN: llvm-profdata merge -o %t-shared.profdata %t-shared.profraw
14 RUN: %clang_profuse=%t-shared.profdata -o %t-a.shared.ll -S -emit-llvm %S/Inputs/instrprof-dynamic-…
15 RUN: diff %t-a.static.ll %t-a.shared.ll
18 RUN: %clang_profuse=%t-shared.profdata -o %t-b.shared.ll -S -emit-llvm %S/Inputs/instrprof-dynamic-…
19 RUN: diff %t-b.static.ll %t-b.shared.ll
22 RUN: %clang_profuse=%t-shared.profdata -o %t-main.shared.ll -S -emit-llvm %S/Inputs/instrprof-dynam…
23 RUN: diff %t-main.static.ll %t-main.shared.ll
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
DAndroid.mk17 …ernal/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/And…
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/owner_bef…
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/dereferen…
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_bool
35 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/owner_bef…
39 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/unique
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/
DAndroid.mk17 …ernal/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/…
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/auto_p…
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/unique…
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared…
31 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared…
35 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared…
39 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared…
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/
DAndroid.mk17 …ernal/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/And…
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/reset_poi…
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_poi…
31 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/reset
35 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/reset_poi…
/external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
DAndroid.mk17 …xternal/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/…
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…
31 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/try_lock…
35 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/try_lock
/external/chromium_org/third_party/sqlite/src/test/
Dshared.test12 # $Id: shared.test,v 1.36 2009/03/16 13:19:36 danielk1977 Exp $
34 do_test shared-[expr $av+1].1.0 {
68 # shared-1.*: Simple test to verify basic sanity of table level locking when
70 # shared-2.*: Test that a read transaction can co-exist with a
73 # shared-3.*: Simple test of read-uncommitted mode.
74 # shared-4.*: Check that the schema is locked and unlocked correctly.
75 # shared-5.*: Test that creating/dropping schema items works when databases
77 # shared-6.*: Locking, UNION ALL queries and sub-queries.
78 # shared-7.*: Autovacuum and shared-cache.
79 # shared-8.*: Tests related to the text encoding of shared-cache databases.
[all …]
/external/chromium_org/android_webview/
Djava_library_common.mk42 $(call intermediates-dir-for,GYP,shared)/enums/window_open_disposition_java/org/chromium/ui/WindowO…
43 $(call intermediates-dir-for,GYP,shared)/enums/bitmap_format_java/org/chromium/ui/gfx/BitmapFormat.…
44 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/base/ApplicationState.java \
45 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/base/MemoryPressureLevelList.java \
46 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/content/browser/GestureEventType.ja…
47 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/content/browser/SpeechRecognitionEr…
48 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/content/browser/input/CanonicalAxis…
49 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/content/browser/input/CanonicalButt…
50 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/content/browser/input/PopupItemType…
51 $(call intermediates-dir-for,GYP,shared)/templates/org/chromium/content/browser/input/SelectionEven…
[all …]
/external/chromium_org/third_party/leveldatabase/src/table/
Dblock_builder.cc79 size_t shared = 0; in Add() local
83 while ((shared < min_length) && (last_key_piece[shared] == key[shared])) { in Add()
84 shared++; in Add()
91 const size_t non_shared = key.size() - shared; in Add()
94 PutVarint32(&buffer_, shared); in Add()
99 buffer_.append(key.data() + shared, non_shared); in Add()
103 last_key_.resize(shared); in Add()
104 last_key_.append(key.data() + shared, non_shared); in Add()
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared.atomic/
DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared.atomic/An…
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_compare_exchange_str…
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_exchange
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_compare_exchange_wea…
31 test_name := utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_is_lock_free
35 test_name := utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_store
39 test_name := utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_load
43 test_name := utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_load_explicit
47 test_name := utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_store_explicit
51 test_name := utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_compare_exchange_weak
[all …]
/external/valgrind/main/helgrind/tests/
Dhg03_inherit.c11 static volatile int shared[2]; variable
41 shared[0] = 22; in main()
42 shared[1] = 77; in main()
44 pthread_create(&a, NULL, t1, (void *)&shared[0]); in main()
46 pthread_create(&b, NULL, t2, (void *)&shared[1]); in main()
55 ret += shared[0]; /* no error - a is finished */ in main()
60 ret += shared[1]; /* expect error - b has not finished, in main()
/external/chromium_org/v8/src/
Druntime-profiler.cc92 GetICCounts(function->shared()->code(), &typeinfo, &generic, &total, in Optimize()
123 SharedFunctionInfo* shared = function->shared(); in AttemptOnStackReplacement() local
133 if (!shared->code()->optimizable()) return; in AttemptOnStackReplacement()
138 if (shared->uses_arguments()) return; in AttemptOnStackReplacement()
150 BackEdgeTable::Patch(isolate_, shared->code()); in AttemptOnStackReplacement()
173 SharedFunctionInfo* shared = function->shared(); in OptimizeNow() local
174 Code* shared_code = shared->code(); in OptimizeNow()
179 SharedFunctionInfo* shared_function_info = functions[i]->shared(); in OptimizeNow()
213 if (shared->is_toplevel() && in OptimizeNow()
214 (frame_count > 1 || shared->SourceSize() > kMaxToplevelSourceSize)) { in OptimizeNow()
[all …]
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/
DAndroid.mk17 …ernal/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/An…
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/static_p…
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/const_po…
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/dynamic_…
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/
DAndroid.mk17 …ernal/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/And…
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/cmp_nullp…
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/lt
27 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/eq
/external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.obs/
DAndroid.mk17 …xternal/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.obs/Andr…
19 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.obs/owns_lock
23 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.obs/mutex
27 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.obs/op_bool
/external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.mod/
DAndroid.mk17 …xternal/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.mod/Andr…
19 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.mod/release
23 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.mod/member_swap
27 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.mod/nonmember_sw…
/external/chromium_org/base/
Dtools_sanity_unittest.cc294 bool *shared = new bool(false); in DataRace() local
295 TOOLS_SANITY_TEST_CONCURRENT_THREAD thread1(shared), thread2(shared); in DataRace()
297 EXPECT_TRUE(*shared); in DataRace()
298 delete shared; in DataRace()
315 bool shared = false; in TEST() local
316 ANNOTATE_BENIGN_RACE(&shared, "Intentional race - make sure doesn't show up"); in TEST()
317 TOOLS_SANITY_TEST_CONCURRENT_THREAD thread1(&shared), thread2(&shared); in TEST()
319 EXPECT_TRUE(shared); in TEST()
323 base::subtle::Atomic32 shared = 0; in TEST() local
324 ReleaseStoreThread thread1(&shared); in TEST()
[all …]
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
DAndroid.mk17 …ernal/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/…
19 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_s…
23 test_name := utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/alloca…

12345678910>>...183