/external/mesa3d/src/mesa/main/ |
D | 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; 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() [all …]
|
/external/v8/test/mjsunit/ |
D | 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); 41 assertNotIn(Realm.shared.thrower_0, Realm.shared.error_1); [all …]
|
/external/icu/icu4j/main/shared/build/ |
D | locations.properties | 6 icu4j.collate.dir = ${shared.dir}/../classes/collate 7 icu4j.core.dir = ${shared.dir}/../classes/core 8 icu4j.charset.dir = ${shared.dir}/../classes/charset 9 icu4j.currdata.dir = ${shared.dir}/../classes/currdata 10 icu4j.langdata.dir = ${shared.dir}/../classes/langdata 11 icu4j.localespi.dir = ${shared.dir}/../classes/localespi 12 icu4j.regiondata.dir = ${shared.dir}/../classes/regiondata 13 icu4j.translit.dir = ${shared.dir}/../classes/translit 15 icu4j.test-framework.dir = ${shared.dir}/../tests/framework 16 icu4j.core-tests.dir = ${shared.dir}/../tests/core [all …]
|
/external/clang/test/OpenMP/ |
D | parallel_shared_messages.cpp | 62 #pragma omp parallel shared // expected-error {{expected '(' after 'shared'}} in main() 63 …#pragma omp parallel shared ( // expected-error {{expected expression}} expected-error {{expected … in main() 64 #pragma omp parallel shared () // expected-error {{expected expression}} in main() 65 …#pragma omp parallel shared (argc // expected-error {{expected ')'}} expected-note {{to match this… in main() 66 …#pragma omp parallel shared (argc, // expected-error {{expected expression}} expected-error {{expe… in main() 67 …#pragma omp parallel shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable n… in main() 68 #pragma omp parallel shared (argc) in main() 69 #pragma omp parallel shared (S1) // expected-error {{'S1' does not refer to a value}} in main() 70 #pragma omp parallel shared (a, b, c, d, f) in main() 71 #pragma omp parallel shared (argv[1]) // expected-error {{expected variable name}} in main() [all …]
|
D | task_shared_messages.cpp | 66 #pragma omp task shared // expected-error {{expected '(' after 'share… in main() 68 #pragma omp task shared( // expected-error {{expected expression}} exp… in main() 70 #pragma omp task shared() // expected-error {{expected expression}} in main() 72 #pragma omp task shared(argc // expected-error {{expected ')'}} expected-n… in main() 74 #pragma omp task shared(argc, // expected-error {{expected expression}} exp… in main() 76 #pragma omp task shared(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}} in main() 78 #pragma omp task shared(argc) in main() 80 #pragma omp task shared(S1) // expected-error {{'S1' does not refer to a value}} in main() 82 #pragma omp task shared(a, b, c, d, f) in main() 84 #pragma omp task shared(argv[1]) // expected-error {{expected variable name}} in main() [all …]
|
D | teams_shared_messages.cpp | 63 #pragma omp teams shared // expected-error {{expected '(' after 'shared'}} in main() 66 …#pragma omp teams shared ( // expected-error {{expected expression}} expected-error {{expected ')'… in main() 69 #pragma omp teams shared () // expected-error {{expected expression}} in main() 72 …#pragma omp teams shared (argc // expected-error {{expected ')'}} expected-note {{to match this '(… in main() 75 …#pragma omp teams shared (argc, // expected-error {{expected expression}} expected-error {{expecte… in main() 78 …#pragma omp teams shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name… in main() 81 #pragma omp teams shared (argc) in main() 84 #pragma omp teams shared (S1) // expected-error {{'S1' does not refer to a value}} in main() 87 #pragma omp teams shared (a, b, c, d, f) in main() 90 #pragma omp teams shared (argv[1]) // expected-error {{expected variable name}} in main() [all …]
|
D | parallel_sections_shared_messages.cpp | 66 #pragma omp parallel sections shared // expected-error {{expected '(' after 'shared'}} in main() 68 #pragma omp parallel sections shared( // expected-error {{expected expression}} expected-error {{ex… in main() 70 #pragma omp parallel sections shared() // expected-error {{expected expression}} in main() 72 #pragma omp parallel sections shared(argc // expected-error {{expected ')'}} expected-note {{to mat… in main() 74 #pragma omp parallel sections shared(argc, // expected-error {{expected expression}} expected-error… in main() 76 #pragma omp parallel sections shared(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected var… in main() 78 #pragma omp parallel sections shared(argc) in main() 80 #pragma omp parallel sections shared(S1) // expected-error {{'S1' does not refer to a value}} in main() 82 #pragma omp parallel sections shared(a, b, c, d, f) in main() 84 #pragma omp parallel sections shared(argv[1]) // expected-error {{expected variable name}} in main() [all …]
|
/external/compiler-rt/test/profile/ |
D | instrprof-dynamic-two-shared.test | 2 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 …]
|
D | instrprof-dynamic-one-shared.test | 2 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
|
D | instrprof-shared.test | 2 This test produces three shared libraries: 12 The test is to verify that programs linked against these shared objects with and without instrument… 17 RUN: %clang_profgen -o %t.d/libt-instr.so -fPIC -shared %S/Inputs/instrprof-shared-lib.c 18 RUN: %clang -o %t.d/libt-no-instr1.so -fPIC -shared %S/Inputs/instrprof-shared-lib.c 19 RUN: %clang -c -o %t.d/instrprof-shared-lib-no-instr2.o -fPIC %S/Inputs/instrprof-shared-lib.c 20 RUN: %clang_profgen -o %t.d/libt-no-instr2.so -fPIC -shared %t.d/instrprof-shared-lib-no-instr2.o 22 RUN: %clang_profgen -o %t-instr-instr -L%t.d -rpath %t.d -lt-instr %S/Inputs/instrprof-shared-main… 23 …g_profgen -o %t-instr-no-instr1 -L%t.d -rpath %t.d -lt-no-instr1 %S/Inputs/instrprof-shared-main.c 24 …g_profgen -o %t-instr-no-instr2 -L%t.d -rpath %t.d -lt-no-instr2 %S/Inputs/instrprof-shared-main.c 25 RUN: %clang -o %t-no-instr1-instr -L%t.d -rpath %t.d -lt-instr %S/Inputs/instrprof-shared-main.c [all …]
|
/external/vboot_reference/tests/ |
D | vboot_firmware_tests.c | 28 static VbSharedDataHeader* shared = (VbSharedDataHeader*)shared_data; variable 81 VbSharedDataInit(shared, sizeof(shared_data)); in ResetMocks() 82 shared->fw_version_tpm = 0x00020004; in ResetMocks() 228 TEST_EQ(shared->flags & VBSD_LF_DEV_SWITCH_ON, 0, in LoadFirmwareTest() 229 "Dev flag in shared.flags dev=0"); in LoadFirmwareTest() 230 TEST_EQ(shared->check_fw_a_result, VBSD_LF_CHECK_DEV_MISMATCH, in LoadFirmwareTest() 232 TEST_EQ(shared->check_fw_b_result, VBSD_LF_CHECK_REC_MISMATCH, in LoadFirmwareTest() 236 shared->flags |= VBSD_BOOT_DEV_SWITCH_ON; in LoadFirmwareTest() 244 TEST_NEQ(shared->flags & VBSD_LF_DEV_SWITCH_ON, 0, in LoadFirmwareTest() 245 "Dev flag in shared.flags dev=1"); in LoadFirmwareTest() [all …]
|
D | vboot_api_init_tests.c | 25 static VbSharedDataHeader *shared = (VbSharedDataHeader *)shared_data; variable 64 VbSharedDataInit(shared, sizeof(shared_data)); in ResetMocks() 158 /* Test passing in too small a shared data area */ in VbInitTest() 161 TestVbInit(VBERROR_INIT_SHARED_DATA, 0, "Shared data too small"); in VbInitTest() 166 TEST_EQ(shared->timer_vb_init_enter, 21, " time enter"); in VbInitTest() 167 TEST_EQ(shared->timer_vb_init_exit, 43, " time exit"); in VbInitTest() 168 TEST_EQ(shared->flags, 0, " shared flags"); in VbInitTest() 185 * Test boot switch flags which are just passed through to shared in VbInitTest() 191 TEST_EQ(shared->flags, VBSD_BOOT_FIRMWARE_WP_ENABLED, in VbInitTest() 192 " shared flags"); in VbInitTest() [all …]
|
D | vboot_api_kernel4_tests.c | 28 static VbSharedDataHeader *shared = (VbSharedDataHeader *)shared_data; variable 58 VbSharedDataInit(shared, sizeof(shared_data)); in ResetMocks() 105 shared->kernel_version_tpm = new_version; in VbBootNormal() 115 shared->kernel_version_tpm = new_version; in VbBootDeveloper() 125 shared->kernel_version_tpm = new_version; in VbBootRecovery() 151 shared->flags |= VBSD_EC_SOFTWARE_SYNC; in VbSlkTest() 160 shared->flags |= VBSD_EC_SOFTWARE_SYNC; in VbSlkTest() 178 shared->flags |= VBSD_FWB_TRIED; in VbSlkTest() 179 shared->firmware_index = 1; in VbSlkTest() 187 shared->flags |= VBSD_FWB_TRIED; in VbSlkTest() [all …]
|
D | vboot_api_firmware_tests.c | 30 static VbSharedDataHeader* shared = (VbSharedDataHeader*)shared_data; variable 64 VbSharedDataInit(shared, sizeof(shared_data)); in ResetMocks() 65 shared->fw_keyblock_flags = 0xABCDE0; in ResetMocks() 74 shared->fw_version_tpm_start = mock_tpm_version; in ResetMocks() 127 shared->fw_version_tpm = mock_lf_tpm_version; in LoadFirmware() 150 TEST_EQ(shared->timer_vb_select_firmware_enter, 21, " time enter"); in VbSelectFirmwareTest() 151 TEST_EQ(shared->timer_vb_select_firmware_exit, 43, " time exit"); in VbSelectFirmwareTest() 159 shared->flags |= VBSD_BOOT_DEV_SWITCH_ON; in VbSelectFirmwareTest() 167 shared->recovery_reason = VBNV_RECOVERY_US_TEST; in VbSelectFirmwareTest() 178 shared->recovery_reason = VBNV_RECOVERY_US_TEST; in VbSelectFirmwareTest() [all …]
|
/external/llvm/test/CodeGen/WinEH/ |
D | wineh-no-demotion.ll | 25 br i1 %bool, label %shared, label %cleanupret 32 br label %shared 34 shared: 37 to label %shared.cont unwind label %inner 39 shared.cont: 43 %phi = phi i32 [ %x, %shared ], [ 0, %invoke.cont ] 48 ; CHECK: %phi = phi i32 [ %x, %shared ], [ 0, %invoke.cont ], [ %x.for.left, %shared.for.left ] 60 to label %shared.cont unwind label %left 64 br i1 %bool, label %shared, label %cleanupret 71 br label %shared [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/neon-animation/animations/ |
D | hero-animation.html | 12 <link rel="import" href="../neon-shared-element-animation-behavior.html"> 16 `<hero-animation>` is a shared element animation that scales and transform an element such that it 17 appears to be shared between two pages. Use this in `<neon-animated-pages>`. The source page 28 id: <shared-element-id>, 47 var shared = this.findSharedElements(config); 48 if (!shared) { 52 var fromRect = shared.from.getBoundingClientRect(); 53 var toRect = shared.to.getBoundingClientRect(); 60 this._effect = new KeyframeEffect(shared.to, [ 65 this.setPrefixedProperty(shared.to, 'transformOrigin', '0 0'); [all …]
|
/external/v8/src/ |
D | compiler.cc | 338 int opt_count = function->shared()->opt_count(); in RecordOptimizationStats() 339 function->shared()->set_opt_count(opt_count + 1); in RecordOptimizationStats() 357 code_size += function->shared()->SourceSize(); in RecordOptimizationStats() 375 bool IsEvalToplevel(Handle<SharedFunctionInfo> shared) { in IsEvalToplevel() argument 376 return shared->is_toplevel() && shared->script()->IsScript() && in IsEvalToplevel() 377 Script::cast(shared->script())->compilation_type() == in IsEvalToplevel() 388 Handle<SharedFunctionInfo> shared = info->shared_info(); in RecordFunctionCompilation() local 398 int line_num = Script::GetLineNumber(script, shared->start_position()) + 1; in RecordFunctionCompilation() 400 Script::GetColumnNumber(script, shared->start_position()) + 1; in RecordFunctionCompilation() 407 CodeCreateEvent(log_tag, *abstract_code, *shared, script_name, in RecordFunctionCompilation() [all …]
|
D | runtime-profiler.cc | 66 Code* shared_code = function->shared()->code(); in GetICCounts() 95 function->shared()->PassesFilter(FLAG_hydrogen_filter)) { in TraceRecompile() 117 DCHECK(!function->shared()->HasBytecodeArray()); in Optimize() 127 DCHECK(function->shared()->HasBytecodeArray()); in Baseline() 133 SharedFunctionInfo* shared = function->shared(); in AttemptOnStackReplacement() local 134 if (!FLAG_use_osr || function->shared()->IsBuiltin()) { in AttemptOnStackReplacement() 139 if (shared->optimization_disabled()) return; in AttemptOnStackReplacement() 144 if (shared->uses_arguments()) return; in AttemptOnStackReplacement() 156 BackEdgeTable::Patch(isolate_, shared->code()); in AttemptOnStackReplacement() 163 SharedFunctionInfo* shared = function->shared(); in MaybeOptimizeFullCodegen() local [all …]
|
/external/libchrome/base/memory/ |
D | shared_memory.h | 31 // Options for creating a shared memory object. 45 // If true, and the shared memory already exists, Create() will open the 46 // existing shared memory and ignore the size parameter. If false, 47 // shared memory must not exist. This flag is meaningless unless 52 // Size of the shared memory object to be created. 59 // If true, the file can be shared read-only to a process. 63 // Platform abstraction for shared memory. Provides a C++ wrapper 77 // shared memory file. 87 // shared memory file that was created by a remote process and not shared 104 // Closes a shared memory handle. [all …]
|
/external/valgrind/helgrind/tests/ |
D | hg03_inherit.c | 11 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() 45 // a steals shared[0] from root thread, so is excl(a) in main() 46 pthread_create(&b, NULL, t2, (void *)&shared[1]); in main() 47 // b steals shared[1] from root thread, so is excl(b) in main() 50 // b's stuff (shared[1]) still belongs to b, so is excl(b) in main() 52 // ret is excl(root), and shared[0] is re-acquired as excl(root) in main() 55 ret += shared[0]; /* no error - a is finished */ in main() [all …]
|
/external/ImageMagick/ |
D | Platforms.txt | 21 ./configure --enable-shared 25 ./configure --enable-shared --with-modules 28 equivalent DLL. Using a shared build gets PerlMagick over the hurdle. 90 see an installed shared library until the 'ldconfig' command has 95 System fails to find shared library needed by ImageMagick. 113 Digital Unix provides an outdated JPEG shared library as part of the 123 install the JPEG library as a shared library. 142 If the problem library is a shared library (.so extension) then 143 install your own library as a shared library. Then add the required 144 -L and -R options to find your shared library at both link and run [all …]
|
/external/clang/test/Driver/ |
D | windows-cross.c | 21 …dows/ARM/8.1 -B %S/Inputs/Windows/ARM/8.1/usr/bin -shared -rtlib=compiler-rt -stdlib=libc++ -o sha… 22 // RUN: | FileCheck %s --check-prefix CHECK-SHARED 24 …SHARED: armv7-windows-itanium-ld" "--sysroot={{.*}}/Inputs/Windows/ARM/8.1" "-m" "thumb2pe" "-shar… 26 …M/8.1 -B %S/Inputs/Windows/ARM/8.1/usr/bin -shared -rtlib=compiler-rt -stdlib=libc++ -nostartfiles… 29 …"-shared" "-Bdynamic" "--enable-auto-image-base" "--entry" "_DllMainCRTStartup" "--allow-multiple-… 31 …B %S/Inputs/Windows/ARM/8.1/usr/bin -shared -rtlib=compiler-rt -stdlib=libc++ -nostartfiles -nodef… 34 …"-shared" "-Bdynamic" "--enable-auto-image-base" "--entry" "_DllMainCRTStartup" "--allow-multiple-… 36 …root %S/Inputs/Windows/ARM/8.1 -B %/Inputs/Windows/ARM/8.1/usr/bin -shared -o shared.dll -x c++ %s… 41 …ws/ARM/8.1 -B %S/Inputs/Windows/ARM/8.1/usr/bin -fuse-ld=lld-link2 -shared -o shared.dll -x c++ %s… 46 …ws/ARM/8.1 -B %S/Inputs/Windows/ARM/8.1/usr/bin -fuse-ld=lld-link2 -shared -o shared.dll -fsanitiz… [all …]
|
/external/vboot_reference/firmware/lib/ |
D | vboot_firmware.c | 44 VbSharedDataHeader *shared = in LoadFirmware() local 61 shared->firmware_index = 0xFF; in LoadFirmware() 74 is_dev = (shared->flags & VBSD_BOOT_DEV_SWITCH_ON ? 1 : 0); in LoadFirmware() 76 shared->flags |= VBSD_LF_DEV_SWITCH_ON; in LoadFirmware() 82 shared->flags |= VBSD_FWB_TRIED; in LoadFirmware() 107 check_result = &shared->check_fw_a_result; in LoadFirmware() 112 check_result = &shared->check_fw_b_result; in LoadFirmware() 146 if (key_version < (shared->fw_version_tpm >> 16)) { in LoadFirmware() 187 if (combined_version < shared->fw_version_tpm && in LoadFirmware() 218 if (!(shared->flags & VBSD_BOOT_RO_NORMAL_SUPPORT)) { in LoadFirmware() [all …]
|
D | vboot_api_init.c | 22 VbSharedDataHeader *shared = in VbInit() local 58 /* Initialize shared data structure */ in VbInit() 59 if (0 != VbSharedDataInit(shared, cparams->shared_data_size)) { in VbInit() 60 VBDEBUG(("Shared data init error\n")); in VbInit() 64 shared->timer_vb_init_enter = VbExGetTimer(); in VbInit() 68 shared->flags = 0; in VbInit() 70 shared->flags |= VBSD_BOOT_REC_SWITCH_ON; in VbInit() 72 shared->flags |= VBSD_BOOT_FIRMWARE_WP_ENABLED; in VbInit() 74 shared->flags |= VBSD_BOOT_FIRMWARE_SW_WP_ENABLED; in VbInit() 76 shared->flags |= VBSD_BOOT_S3_RESUME; in VbInit() [all …]
|
/external/curl/m4/ |
D | xc-lt-iface.m4 | 39 # Default behavior is to enable shared and static libraries on systems 48 # User may have disabled shared or static libraries. 62 AC_MSG_ERROR([can not disable shared and static libraries simultaneously]) 67 # and build runs for shared and static is to enable shared libraries 68 # and disable static ones. On these systems option '--disable-shared' 82 # Make libtool aware of current shared and static library preferences 91 # Default behavior is to build PIC objects for shared libraries and 111 # Default behavior on some systems where building a shared library out 113 # "relocation R_X86_64_32 can not be used when making a shared object" 115 # be overriden using 'configure --disable-shared --without-pic'. [all …]
|