/external/freetype/src/autofit/ |
D | afglobal.c | 130 af_face_globals_compute_style_coverage( AF_FaceGlobals globals ) in af_face_globals_compute_style_coverage() argument 133 FT_Face face = globals->face; in af_face_globals_compute_style_coverage() 135 FT_UShort* gstyles = globals->glyph_styles; in af_face_globals_compute_style_coverage() 142 for ( i = 0; i < (FT_UInt)globals->glyph_count; i++ ) in af_face_globals_compute_style_coverage() 176 globals->module->default_script ) in af_face_globals_compute_style_coverage() 190 gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage() 201 if ( gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage() 219 gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage() 230 if ( gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage() 239 af_shaper_get_coverage( globals, style_class, gstyles, 0 ); in af_face_globals_compute_style_coverage() [all …]
|
/external/perfetto/ui/src/frontend/ |
D | index.ts | 24 import {globals, QuantizedLoad, SliceDetails, ThreadDesc} from './globals'; 38 globals.state = applyPatches(globals.state, patches); 42 globals.frontendLocalState.mergeState(globals.state.frontendLocalState); 52 if (!globals.overviewStore.has(key)) { 53 globals.overviewStore.set(key, []); 56 globals.overviewStore.get(key)!.push(...value); 58 globals.overviewStore.get(key)!.push(value); 61 globals.rafScheduler.scheduleRedraw(); 65 globals.setTrackData(args.id, args.data); 67 globals.rafScheduler.scheduleFullRedraw(); [all …]
|
D | track_panel.ts | 20 import {globals} from './globals'; 30 return globals.state.pinnedTracks.indexOf(id) !== -1; 82 globals.rafScheduler.scheduleFullRedraw(); 90 globals.rafScheduler.scheduleFullRedraw(); 109 globals.rafScheduler.scheduleFullRedraw(); 114 globals.rafScheduler.scheduleFullRedraw(); 121 globals.rafScheduler.scheduleFullRedraw(); 124 globals.dispatch(Actions.moveTrack({srcId, op: this.dropping, dstId})); 135 globals.rafScheduler.scheduleRedraw(); 139 globals.rafScheduler.scheduleRedraw(); [all …]
|
D | track_group_panel.ts | 21 import {globals} from './globals'; 49 return assertExists(globals.state.trackGroups[this.trackGroupId]); 54 globals.state.tracks[this.trackGroupState.summaryTrackId]); 72 globals.dispatch(Actions.toggleTrackGroupCollapsed({ 105 globals.frontendLocalState.timeScale, 106 globals.frontendLocalState.visibleWindowTime, 116 const localState = globals.frontendLocalState; 133 if (globals.state.currentSelection !== null) { 134 if (globals.state.currentSelection.kind === 'NOTE') { 135 const note = globals.state.notes[globals.state.currentSelection.id]; constant [all …]
|
D | notes_panel.ts | 20 import {globals} from './globals'; 42 globals.rafScheduler.scheduleRedraw(); 47 globals.rafScheduler.scheduleRedraw(); 51 globals.frontendLocalState.setShowNotePreview(false); 52 globals.rafScheduler.scheduleRedraw(); 68 const timeScale = globals.frontendLocalState.timeScale; 69 const range = globals.frontendLocalState.visibleWindowTime; 81 for (const note of Object.values(globals.state.notes)) { 90 const selection = globals.state.currentSelection; 118 if (aNoteIsHovered) globals.frontendLocalState.setShowNotePreview(false); [all …]
|
D | topbar.ts | 21 import {globals} from './globals'; 31 globals.queryResults.delete(QUERY_ID); 32 globals.dispatch(Actions.deleteQuery({queryId: QUERY_ID})); 49 globals.rafScheduler.scheduleFullRedraw(); 56 globals.rafScheduler.scheduleFullRedraw(); 61 globals.rafScheduler.scheduleFullRedraw(); 76 globals.rafScheduler.scheduleFullRedraw(); 81 globals.rafScheduler.scheduleFullRedraw(); 87 globals.dispatch( 91 globals.dispatch(Actions.executeQuery( [all …]
|
D | viewer_page.ts | 24 import {globals} from './globals'; 47 const data = globals.trackDataStore.get(LogExistsKey) as LogExists; 53 const resp = globals.queryResults.get('command') as QueryResponse; 97 globals.queryResults.delete('command'); 98 globals.rafScheduler.scheduleFullRedraw(); 141 globals.rafScheduler.scheduleFullRedraw(); 166 globals.rafScheduler.scheduleFullRedraw(); 188 const frontendLocalState = globals.frontendLocalState; 200 globals.rafScheduler.scheduleFullRedraw(); 214 const traceTime = globals.state.traceTime; [all …]
|
D | frontend_local_state.ts | 19 import {globals} from './globals'; 42 const startSec = Math.max(ts.start, globals.state.traceTime.startSec); 43 const endSec = Math.min(ts.end, globals.state.traceTime.endSec); 52 globals.dispatch(Actions.setVisibleTraceTime({ 73 globals.rafScheduler.scheduleFullRedraw(); 79 globals.rafScheduler.scheduleRedraw(); 86 globals.rafScheduler.scheduleRedraw(); 91 globals.rafScheduler.scheduleRedraw(); 96 globals.rafScheduler.scheduleRedraw();
|
D | logs_panel.ts | 28 import {globals} from './globals'; 54 globals.dispatch(Actions.updateLogsPagination({ 66 this.bounds = globals.trackDataStore.get(LogBoundsKey) as LogBounds; 67 this.entries = globals.trackDataStore.get(LogEntriesKey) as LogEntries; 72 this.bounds = globals.trackDataStore.get(LogBoundsKey) as LogBounds; 73 this.entries = globals.trackDataStore.get(LogEntriesKey) as LogEntries; 80 globals.rafScheduler.scheduleFullRedraw(); 84 globals.frontendLocalState.setHoveredTimestamp(ts); 88 globals.frontendLocalState.setHoveredTimestamp(-1); 97 const vis = globals.frontendLocalState.visibleWindowTime; [all …]
|
/external/python/cpython3/Tools/c-globals/ |
D | README | 2 # C Globals and CPython Runtime State. 8 * globals used exclusively in main or in the REPL 14 The ignored-globals.txt file is organized similarly. Of the different 18 Globals that hold module state (i.e. in Modules/*.c) cause problems 22 Globals in the last category should be avoided as well. The problem 25 globals. Unlike the other globals, the runtime state represents a set 31 Consequently, the globals for Python's runtime state have been 32 consolidated under a single top-level _PyRuntime global. No new globals 34 _PyRuntimeState or one of its sub-structs. The check-c-globals script 35 should be run to ensure that no new globals have been added: [all …]
|
/external/llvm/lib/CodeGen/ |
D | GlobalMerge.cpp | 1 //===-- GlobalMerge.cpp - Internal globals merging -----------------------===// 9 // This pass merges globals with internal linkage into one. This way all the 10 // globals which were merged into a biggest one can be addressed using offsets 13 // when many globals are involved. 53 // However, merging globals can have tradeoffs: 105 cl::desc("Improve global merge pass to ignore globals only used alone"), 119 STATISTIC(NumMerged, "Number of globals merged"); 130 /// Currently, this applies a dead simple heuristic: only consider globals 140 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals, 142 /// \brief Merge everything in \p Globals for which the corresponding bit [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | GlobalMerge.cpp | 1 //===- GlobalMerge.cpp - Internal globals merging -------------------------===// 10 // This pass merges globals with internal linkage into one. This way all the 11 // globals which were merged into a biggest one can be addressed using offsets 14 // when many globals are involved. 54 // However, merging globals can have tradeoffs: 121 cl::desc("Improve global merge pass to ignore globals only used alone"), 135 STATISTIC(NumMerged, "Number of globals merged"); 149 /// Currently, this applies a dead simple heuristic: only consider globals 159 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals, 162 /// Merge everything in \p Globals for which the corresponding bit [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/Generic/ |
D | debug-names-many-cu.ll | 74 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !15) 80 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !25) 86 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !35) 92 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !45) 98 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !55) 104 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !65) 110 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !75) 116 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !85) 122 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !95) 128 …325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !105) [all …]
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMGlobalMerge.cpp | 1 //===-- ARMGlobalMerge.cpp - Internal globals merging --------------------===// 9 // This pass merges globals with internal linkage into one. This way all the 10 // globals which were merged into a biggest one can be addressed using offsets 13 // when many globals are involved. 77 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals, 89 return "Merge internal globals"; in getPassName() 114 bool ARMGlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals, in doMerge() argument 124 std::stable_sort(Globals.begin(), Globals.end(), GlobalCmp(TD)); in doMerge() 128 for (size_t i = 0, e = Globals.size(); i != e; ) { in doMerge() 134 Type *Ty = Globals[j]->getType()->getElementType(); in doMerge() [all …]
|
/external/clang/test/CodeGenCXX/ |
D | arm64.cpp | 2 …N: %clang_cc1 %s -triple=arm64-apple-ios -emit-llvm -o - | FileCheck -check-prefix=CHECK-GLOBALS %s 48 // CHECK-GLOBALS-DAG: @_ZTSN5test21AE = constant [11 x i8] 49 …// CHECK-GLOBALS-DAG: @_ZTIN5test21AE = constant { {{.*}}, i8* getelementptr inbounds ([11 x i8], … 53 // CHECK-GLOBALS-DAG: @_ZTSN5test21BE = linkonce_odr hidden constant 54 …// CHECK-GLOBALS-DAG: @_ZTIN5test21BE = linkonce_odr hidden constant { {{.*}}, i8* getelementptr i… 57 // CHECK-GLOBALS-DAG: @_ZTSPN5test21BE = linkonce_odr hidden constant 58 …// CHECK-GLOBALS-DAG: @_ZTIPN5test21BE = linkonce_odr hidden constant { {{.*}}, i8* getelementptr … 62 // CHECK-GLOBALS-DAG: @_ZTSN5test21CE = linkonce_odr hidden constant 63 …// CHECK-GLOBALS-DAG: @_ZTIN5test21CE = linkonce_odr hidden constant { {{.*}}, i8* inttoptr (i64 a… 66 // CHECK-GLOBALS-DAG: @_ZTSPN5test21CE = linkonce_odr hidden constant [all …]
|
D | microsoft-abi-vtables-return-thunks.cpp | 2 // RUN: FileCheck --check-prefix=GLOBALS %s < %t 29 // GLOBALS-LABEL: @"\01??_7J@test1@@6B@" = linkonce_odr unnamed_addr constant [3 x i8*] 30 // GLOBALS: @"\01?foo@J@test1@@QAEPAUB@2@XZ" 31 // GLOBALS: @"\01?foo@J@test1@@QAEPAUC@2@XZ" 32 // GLOBALS: @"\01?foo@J@test1@@UAEPAUD@2@XZ" 47 // GLOBALS-LABEL: @"\01??_7K@test1@@6B@" = linkonce_odr unnamed_addr constant [4 x i8*] 48 // GLOBALS: @"\01?foo@K@test1@@QAEPAUB@2@XZ" 49 // GLOBALS: @"\01?foo@K@test1@@QAEPAUC@2@XZ" 50 // GLOBALS: @"\01?foo@K@test1@@QAEPAUD@2@XZ" 51 // GLOBALS: @"\01?foo@K@test1@@UAEPAUE@2@XZ" [all …]
|
/external/perfetto/ui/src/tracks/process_scheduling/ |
D | frontend.ts | 20 import {globals} from '../../frontend/globals'; 50 const {timeScale, visibleWindowTime} = globals.frontendLocalState; 59 data.resolution !== globals.getCurResolution()) { 60 globals.requestTrackData(this.trackState.id); 81 const {timeScale, visibleWindowTime} = globals.frontendLocalState; 108 const {timeScale, visibleWindowTime} = globals.frontendLocalState; 127 const threadInfo = globals.threads.get(utid); 130 const isHovering = globals.frontendLocalState.hoveredUtid !== -1; 131 const isThreadHovered = globals.frontendLocalState.hoveredUtid === utid; 132 const isProcessHovered = globals.frontendLocalState.hoveredPid === pid; [all …]
|
/external/libcxxabi/src/ |
D | cxa_exception.cpp | 260 __cxa_eh_globals *globals = __cxa_get_globals(); in __cxa_throw() local 269 globals->uncaughtExceptions += 1; // Not atomically, since globals are thread-local in __cxa_throw() 314 __cxa_eh_globals* globals = __cxa_get_globals(); in __cxa_begin_cleanup() local 322 exception_header->nextPropagatingException = globals->propagatingExceptions; in __cxa_begin_cleanup() 323 globals->propagatingExceptions = exception_header; in __cxa_begin_cleanup() 331 if (NULL != globals->propagatingExceptions) in __cxa_begin_cleanup() 333 globals->propagatingExceptions = exception_header; in __cxa_begin_cleanup() 352 __cxa_eh_globals* globals = __cxa_get_globals(); in __cxa_end_cleanup_impl() local 353 __cxa_exception* exception_header = globals->propagatingExceptions; in __cxa_end_cleanup_impl() 366 globals->propagatingExceptions = exception_header->nextPropagatingException; in __cxa_end_cleanup_impl() [all …]
|
/external/perfetto/ui/src/tracks/cpu_slices/ |
D | frontend.ts | 23 import {globals} from '../../frontend/globals'; 56 const {timeScale, visibleWindowTime} = globals.frontendLocalState; 65 data.resolution !== globals.getCurResolution()) { 66 globals.requestTrackData(this.trackState.id); 87 const {timeScale, visibleWindowTime} = globals.frontendLocalState; 113 const {timeScale, visibleWindowTime} = globals.frontendLocalState; 133 const threadInfo = globals.threads.get(utid); 151 const isHovering = globals.frontendLocalState.hoveredUtid !== -1; 152 const isThreadHovered = globals.frontendLocalState.hoveredUtid === utid; 153 const isProcessHovered = globals.frontendLocalState.hoveredPid === pid; [all …]
|
/external/freetype/src/pshinter/ |
D | pshglob.c | 41 psh_globals_scale_widths( PSH_Globals globals, in psh_globals_scale_widths() argument 44 PSH_Dimension dim = &globals->dimension[direction]; in psh_globals_scale_widths() 619 psh_globals_destroy( PSH_Globals globals ) in psh_globals_destroy() argument 621 if ( globals ) in psh_globals_destroy() 626 memory = globals->memory; in psh_globals_destroy() 627 globals->dimension[0].stdw.count = 0; in psh_globals_destroy() 628 globals->dimension[1].stdw.count = 0; in psh_globals_destroy() 630 globals->blues.normal_top.count = 0; in psh_globals_destroy() 631 globals->blues.normal_bottom.count = 0; in psh_globals_destroy() 632 globals->blues.family_top.count = 0; in psh_globals_destroy() [all …]
|
/external/python/cpython3/Objects/clinic/ |
D | funcobject.c.h | 6 "function(code, globals, name=None, argdefs=None, closure=None)\n" 13 " globals\n" 14 " the globals dictionary\n" 23 func_new_impl(PyTypeObject *type, PyCodeObject *code, PyObject *globals, 30 static const char * const _keywords[] = {"code", "globals", "name", "argdefs", "closure", NULL}; in func_new() 33 PyObject *globals; in func_new() local 39 &PyCode_Type, &code, &PyDict_Type, &globals, &name, &defaults, &closure)) { in func_new() 42 return_value = func_new_impl(type, code, globals, name, defaults, closure); in func_new()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | NameAnonGlobals.cpp | 1 //===- NameAnonGlobals.cpp - ThinLTO Support: Name Unnamed Globals --------===// 10 // This file implements naming anonymous globals to make sure they can be 26 // globals. 47 for (auto &GV : TheModule.globals()) { in get() 65 // Rename all the anon globals in the module 86 // Legacy pass that provides a name to every anon globals. 94 StringRef getPassName() const override { return "Name Anon Globals"; } in getPassName() 112 INITIALIZE_PASS_BEGIN(NameAnonGlobalLegacyPass, "name-anon-globals", 113 "Provide a name to nameless globals", false, false) 114 INITIALIZE_PASS_END(NameAnonGlobalLegacyPass, "name-anon-globals", [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/AddressSanitizer/ |
D | global_metadata_array.ll | 1 ; RUN: opt < %s -asan -asan-module -asan-globals-live-support=0 -mtriple=x86_64-unknown-linux-gnu -… 2 ; RUN: opt < %s -asan -asan-module -asan-globals-live-support=0 -mtriple=x86_64-apple-macosx10.11.0… 3 ; RUN: opt < %s -asan -asan-module -asan-globals-live-support=0 -mtriple=x86_64-pc-windows-msvc19.0… 4 ; RUN: opt < %s -asan -asan-module -asan-globals-live-support=0 -asan-mapping-scale=5 -mtriple=x86_… 8 ; Globals: 16 ; Check that globals were instrumented: 22 …__asan_gen_.[0-9]+]] = private unnamed_addr constant [22 x i8] c"/tmp/asan-globals.cpp\00", align 1 57 !llvm.asan.globals = !{!0, !1, !2, !3, !4} 68 !6 = !{!"/tmp/asan-globals.cpp", i32 5, i32 5} 69 !7 = !{!"/tmp/asan-globals.cpp", i32 7, i32 5} [all …]
|
/external/pdfium/testing/resources/javascript/ |
D | globals_expected.txt | 2 Alert: Enumerable Globals: 4 Alert: Expected Globals: 14 Alert: Enumerable Globals: 24 Alert: Expected Globals: 37 Alert: Enumerable Globals: 39 Alert: Expected Globals: 50 Alert: Enumerable Globals: 60 Alert: Expected Globals: 81 Alert: Enumerable Globals: 83 Alert: Expected Globals: [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/PDB/DIA/ |
D | pdbdump-symbol-format.test | 8 ; RUN: llvm-pdbutil pretty -globals %p/../Inputs/symbolformat.pdb | FileCheck --check-prefix=GLOBAL… 62 ; GLOBALS: ---GLOBALS--- 63 ; GLOBALS-DAG: func [{{.*}}] (FPO) unsigned int __cdecl fpo_func(unsigned int n) 64 ; GLOBALS-DAG: data [{{.*}}, sizeof=4] static void* g_global_pointer 65 ; GLOBALS-DAG: data [{{.*}}, sizeof=4] static int g_global_int 66 ; GLOBALS-DAG: data [{{.*}}, sizeof=12] static int g_array[3] 67 ; GLOBALS-DAG: data [{{.*}}, sizeof=4] static int (* g_pointer_to_array)[3] 68 ; GLOBALS-DAG: data [{{.*}}, sizeof=4] static const int* g_pointer_to_const_int 69 ; GLOBALS-DAG: data [sizeof=4] int* const g_const_pointer_to_int = 0 70 ; GLOBALS-DAG: data [sizeof=4] const int* const g_const_pointer_to_const_int = 0
|