/external/pdfium/core/fxge/skia/ |
D | fx_skia_device_embeddertest.cpp | 20 struct State { struct 21 enum class Change { kNo, kYes }; 22 enum class Save { kNo, kYes }; 23 enum class Clip { kNo, kSame, kDifferentPath, kDifferentMatrix }; 24 enum class Graphic { kNone, kPath, kText }; 26 Change m_change; 27 Save m_save; 28 Clip m_clip; 29 Graphic m_graphic; 30 uint32_t m_pixel; [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/ |
D | enums.go | 133 func formatEnum(f fmt.State, c rune, i int, names []string, unknown string) { 154 func (e TextDocumentSyncKind) Format(f fmt.State, c rune) { 162 func (e InitializeError) Format(f fmt.State, c rune) { 170 func (e MessageType) Format(f fmt.State, c rune) { 178 func (e FileChangeType) Format(f fmt.State, c rune) { 186 func (e WatchKind) Format(f fmt.State, c rune) { 194 func (e CompletionTriggerKind) Format(f fmt.State, c rune) { 202 func (e DiagnosticSeverity) Format(f fmt.State, c rune) { 210 func (e DiagnosticTag) Format(f fmt.State, c rune) { 218 func (e CompletionItemKind) Format(f fmt.State, c rune) { [all …]
|
/external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/protocol/ |
D | enums.go | 133 func formatEnum(f fmt.State, c rune, i int, names []string, unknown string) { 154 func (e TextDocumentSyncKind) Format(f fmt.State, c rune) { 162 func (e InitializeError) Format(f fmt.State, c rune) { 170 func (e MessageType) Format(f fmt.State, c rune) { 178 func (e FileChangeType) Format(f fmt.State, c rune) { 186 func (e WatchKind) Format(f fmt.State, c rune) { 194 func (e CompletionTriggerKind) Format(f fmt.State, c rune) { 202 func (e DiagnosticSeverity) Format(f fmt.State, c rune) { 210 func (e DiagnosticTag) Format(f fmt.State, c rune) { 218 func (e CompletionItemKind) Format(f fmt.State, c rune) { [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/vscode/src/lsp/protocol/ |
D | enums.go | 133 func formatEnum(f fmt.State, c rune, i int, names []string, unknown string) { 154 func (e TextDocumentSyncKind) Format(f fmt.State, c rune) { 162 func (e InitializeError) Format(f fmt.State, c rune) { 170 func (e MessageType) Format(f fmt.State, c rune) { 178 func (e FileChangeType) Format(f fmt.State, c rune) { 186 func (e WatchKind) Format(f fmt.State, c rune) { 194 func (e CompletionTriggerKind) Format(f fmt.State, c rune) { 202 func (e DiagnosticSeverity) Format(f fmt.State, c rune) { 210 func (e DiagnosticTag) Format(f fmt.State, c rune) { 218 func (e CompletionItemKind) Format(f fmt.State, c rune) { [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/ |
D | binary.cpp | 195 struct State { struct in __anoncb9311530111::Parser 196 State(const uint32_t* words_arg, size_t num_words_arg, in State() argument 211 State() : State(0, 0, nullptr) {} in State() argument 212 const uint32_t* words; // Words in the binary SPIR-V module. 213 size_t num_words; // Number of words in the module. 214 spv_diagnostic* diagnostic; // Where diagnostics go. 215 size_t word_index; // The current position in words. 216 size_t instruction_count; // The count of processed instructions 217 spv_endianness_t endian; // The endianness of the binary. 220 bool requires_endian_conversion; [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/ |
D | binary.cpp | 195 struct State { struct in __anonc75213a00111::Parser 196 State(const uint32_t* words_arg, size_t num_words_arg, in State() argument 211 State() : State(0, 0, nullptr) {} in State() argument 212 const uint32_t* words; // Words in the binary SPIR-V module. 213 size_t num_words; // Number of words in the module. 214 spv_diagnostic* diagnostic; // Where diagnostics go. 215 size_t word_index; // The current position in words. 216 size_t instruction_count; // The count of processed instructions 217 spv_endianness_t endian; // The endianness of the binary. 220 bool requires_endian_conversion; [all …]
|
/external/deqp-deps/SPIRV-Tools/source/ |
D | binary.cpp | 195 struct State { struct in __anon2c1c37e60111::Parser 196 State(const uint32_t* words_arg, size_t num_words_arg, in State() function 211 State() : State(0, 0, nullptr) {} in State() argument 212 const uint32_t* words; // Words in the binary SPIR-V module. 213 size_t num_words; // Number of words in the module. 214 spv_diagnostic* diagnostic; // Where diagnostics go. 215 size_t word_index; // The current position in words. 216 size_t instruction_count; // The count of processed instructions 217 spv_endianness_t endian; // The endianness of the binary. 220 bool requires_endian_conversion; [all …]
|
/external/lzma/CS/7zip/Compress/LZMA/ |
D | LzmaBase.cs | 15 public struct State struct in SevenZip.Compression.LZMA.Base 17 public uint Index; 18 public void Init() { Index = 0; } in Init() 19 public void UpdateChar() in UpdateChar() 25 public void UpdateMatch() { Index = (uint)(Index < 7 ? 7 : 10); } in UpdateMatch() 26 public void UpdateRep() { Index = (uint)(Index < 7 ? 8 : 11); } in UpdateRep() 27 public void UpdateShortRep() { Index = (uint)(Index < 7 ? 9 : 11); } in UpdateShortRep() 28 public bool IsCharState() { return Index < 7; } in IsCharState()
|
/external/clang/lib/Format/ |
D | ContinuationIndenter.cpp | 79 LineState State; in getInitialState() local 98 bool ContinuationIndenter::canBreak(const LineState &State) { in canBreak() 142 bool ContinuationIndenter::mustBreak(const LineState &State) { in mustBreak() 277 unsigned ContinuationIndenter::addTokenToState(LineState &State, bool Newline, in addTokenToState() 312 void ContinuationIndenter::addTokenOnCurrentLine(LineState &State, bool DryRun, in addTokenOnCurrentLine() 439 unsigned ContinuationIndenter::addTokenOnNewLine(LineState &State, in addTokenOnNewLine() 596 unsigned ContinuationIndenter::getNewLineColumn(const LineState &State) { in getNewLineColumn() 708 unsigned ContinuationIndenter::moveStateToNextToken(LineState &State, in moveStateToNextToken() 825 void ContinuationIndenter::moveStatePastFakeLParens(LineState &State, in moveStatePastFakeLParens() 904 void ContinuationIndenter::moveStatePastFakeRParens(LineState &State) { in moveStatePastFakeRParens() [all …]
|
/external/swiftshader/src/Device/ |
D | Blitter.hpp | 76 struct State : Memset<State>, Options struct in sw::Blitter 78 State() in State() function 81 State(const Options &options) in State() function 85 …State(vk::Format sourceFormat, vk::Format destFormat, int srcSamples, int destSamples, const Optio… in State() function 94 vk::Format sourceFormat; 95 vk::Format destFormat; 96 int srcSamples = 0; 97 int destSamples = 0; 98 bool filter3D = false;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | ThreadSafeModule.h | 31 struct State { struct 32 State(std::unique_ptr<LLVMContext> Ctx) : Ctx(std::move(Ctx)) {} in State() argument 42 Lock(std::shared_ptr<State> S) : S(std::move(S)), L(this->S->Mutex) {} in Lock() argument
|
/external/tensorflow/tensorflow/core/framework/ |
D | cancellation.h | 150 struct State { struct 151 Notification cancelled_notification; 152 gtl::FlatMap<CancellationToken, CancelCallback> callbacks; 156 CancellationManager* first_child = nullptr; // Not owned.
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | PointerArithChecker.cpp | 110 ProgramStateRef State = C.getState(); in getPointedRegion() local 132 ProgramStateRef State = C.getState(); in getArrayRegion() local 157 ProgramStateRef State = C.getState(); in reportPointerArithMisuse() local 222 ProgramStateRef State = C.getState(); in checkPostStmt() local 251 ProgramStateRef State = C.getState(); in checkPostStmt() local 266 ProgramStateRef State = C.getState(); in checkPostStmt() local 284 ProgramStateRef State = C.getState(); in checkPreStmt() local 308 ProgramStateRef State = C.getState(); in checkPreStmt() local 325 ProgramStateRef State = C.getState(); in checkPreStmt() local
|
/external/llvm/lib/Target/ARM/ |
D | ARMCallingConv.h | 30 CCState &State, bool CanFail) { in f64AssignAPCS() 61 CCState &State) { in CC_ARM_APCS_Custom_f64() 73 CCState &State, bool CanFail) { in f64AssignAAPCS() 115 CCState &State) { in CC_ARM_AAPCS_Custom_f64() 125 CCValAssign::LocInfo &LocInfo, CCState &State) { in f64RetAssign() 147 CCState &State) { in RetCC_ARM_APCS_Custom_f64() 158 CCState &State) { in RetCC_ARM_AAPCS_Custom_f64() 183 CCState &State) { in CC_ARM_AAPCS_Custom_Aggregate()
|
/external/rust/crates/tokio/src/runtime/thread_pool/ |
D | idle.rs | 28 struct State(usize); struct 141 impl State { implementation 142 fn new(num_workers: usize) -> State { in new() 150 fn load(cell: &AtomicUsize, ordering: Ordering) -> State { in load() 193 impl From<usize> for State { implementation 194 fn from(src: usize) -> State { in from() 205 impl fmt::Debug for State { implementation
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMCallingConv.cpp | 23 CCState &State, bool CanFail) { in f64AssignAPCS() 54 CCState &State) { in CC_ARM_APCS_Custom_f64() 66 CCState &State, bool CanFail) { in f64AssignAAPCS() 108 CCState &State) { in CC_ARM_AAPCS_Custom_f64() 118 CCValAssign::LocInfo LocInfo, CCState &State) { in f64RetAssign() 140 CCState &State) { in RetCC_ARM_APCS_Custom_f64() 151 CCState &State) { in RetCC_ARM_AAPCS_Custom_f64() 176 CCState &State) { in CC_ARM_AAPCS_Custom_Aggregate()
|
/external/rust/crates/crc32fast/src/specialized/ |
D | aarch64.rs | 4 pub struct State { struct 8 impl State { impl
|
/external/gwp_asan/gwp_asan/ |
D | crash_handler.cpp | 23 bool __gwp_asan_error_is_mine(const gwp_asan::AllocatorState *State, in __gwp_asan_error_is_mine() 34 __gwp_asan_get_internal_crash_address(const gwp_asan::AllocatorState *State) { in __gwp_asan_get_internal_crash_address() 39 addrToMetadata(const gwp_asan::AllocatorState *State, in addrToMetadata() 46 __gwp_asan_diagnose_error(const gwp_asan::AllocatorState *State, in __gwp_asan_diagnose_error() 82 __gwp_asan_get_metadata(const gwp_asan::AllocatorState *State, in __gwp_asan_get_metadata()
|
/external/tensorflow/tensorflow/core/platform/ |
D | status.h | 142 struct State { struct 150 // a `State` structure containing the error code and message(s) argument
|
/external/toolchain-utils/llvm_tools/ |
D | nightly_revert_checker.py | 33 State = t.Any variable 182 def _write_state(state_file: str, new_state: State) -> None: 207 state: State, new_state: State): 234 interesting_shas: t.List[t.Tuple[str, str]], state: State, 260 interesting_shas: t.List[t.Tuple[str, str]], state: State,
|
/external/rust/crates/crc32fast/src/ |
D | baseline.rs | 4 pub struct State { struct 8 impl State { argument
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCCallingConv.cpp | 27 CCState &State) { in CC_PPC32_SVR4_Custom_Dummy() 35 CCState &State) { in CC_PPC32_SVR4_Custom_AlignArgRegs() 60 ISD::ArgFlagsTy &ArgFlags, CCState &State) { in CC_PPC32_SVR4_Custom_SkipLastArgRegsPPCF128() 85 CCState &State) { in CC_PPC32_SVR4_Custom_AlignFPArgRegs() 113 CCState &State) { in CC_PPC32_SPE_CustomSplitFP64() 142 CCState &State) { in CC_PPC32_SPE_RetF64()
|
/external/crosvm/common/cros_asyncv2/src/blocking/ |
D | pool.rs | 23 struct State { struct 24 tasks: VecDeque<Runnable>, 25 num_threads: usize, 26 num_idle: usize, 27 num_notified: usize, 28 worker_threads: Slab<JoinHandle<()>>, 29 exited_threads: Option<Receiver<usize>>, 30 exit: Sender<usize>, 31 shutting_down: bool,
|
/external/crosvm/cros_async/src/blocking/ |
D | pool.rs | 25 struct State { struct 26 tasks: VecDeque<Runnable>, 27 num_threads: usize, 28 num_idle: usize, 29 num_notified: usize, 30 worker_threads: Slab<JoinHandle<()>>, 31 exited_threads: Option<Receiver<usize>>, 32 exit: Sender<usize>, 33 shutting_down: bool,
|
/external/crosvm/common/cros_async/src/blocking/ |
D | pool.rs | 25 struct State { struct 26 tasks: VecDeque<Runnable>, 27 num_threads: usize, 28 num_idle: usize, 29 num_notified: usize, 30 worker_threads: Slab<JoinHandle<()>>, 31 exited_threads: Option<Receiver<usize>>, 32 exit: Sender<usize>, 33 shutting_down: bool,
|