| /third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
| D | Context.h | 304 struct State struct 306 Color colorClearValue; 307 GLclampf depthClearValue; 308 int stencilClearValue; 310 bool cullFaceEnabled; 311 GLenum cullMode; 312 GLenum frontFace; 313 bool depthTestEnabled; 314 GLenum depthFunc; 315 bool blendEnabled; [all …]
|
| /third_party/skia/third_party/externals/tint/src/transform/ |
| D | canonicalize_entry_point_io.cc | 80 struct CanonicalizeEntryPointIO::State { struct in tint::transform::CanonicalizeEntryPointIO 82 struct OutputValue { 94 CloneContext& ctx; 96 CanonicalizeEntryPointIO::Config const cfg; 98 const ast::Function* func_ast; 100 const sem::Function* func_sem; 103 ast::VariableList wrapper_ep_parameters; 105 ast::StructMemberList wrapper_struct_param_members; 107 Symbol wrapper_struct_param_name; 109 ast::ExpressionList inner_call_parameters; [all …]
|
| D | multiplanar_external_texture.cc | 44 struct MultiplanarExternalTexture::State { struct in tint::transform::MultiplanarExternalTexture 46 CloneContext& ctx; 49 ProgramBuilder& b; 53 const NewBindingPoints* new_binding_points; 56 Symbol params_struct_sym; 59 Symbol texture_load_external_sym; 62 Symbol texture_sample_external_sym; 66 std::unordered_map<Symbol, NewBindingSymbols> new_binding_symbols; 72 State(CloneContext& context, const NewBindingPoints* newBindingPoints) in State() argument 76 void Process() { in Process() [all …]
|
| D | zero_init_workgroup_memory.cc | 37 struct ZeroInitWorkgroupMemory::State { struct in tint::transform::ZeroInitWorkgroupMemory 39 CloneContext& ctx; 42 ProgramBuilder& b = *ctx.dst; 46 uint32_t workgroup_size_const = 0; 49 std::function<const ast::Expression*()> workgroup_size_expr; 53 struct ArrayIndex { 77 using ArrayIndices = utils::UniqueVector<ArrayIndex, ArrayIndex::Hasher>; 81 struct Expression { 92 struct Statement { 102 std::vector<Statement> statements; [all …]
|
| D | vertex_pulling.cc | 204 struct State { struct 205 State(CloneContext& context, const VertexPulling::Config& c) in State() argument 212 struct LocationReplacement { 219 struct LocationInfo { 224 CloneContext& ctx; 225 VertexPulling::Config const cfg; 226 std::unordered_map<uint32_t, LocationInfo> location_info; 227 std::function<const ast::Expression*()> vertex_index_expr = nullptr; 228 std::function<const ast::Expression*()> instance_index_expr = nullptr; 229 Symbol pulling_position_name; [all …]
|
| D | simplify_pointers.cc | 50 struct SimplifyPointers::State { struct in tint::transform::SimplifyPointers 52 CloneContext& ctx; 56 explicit State(CloneContext& context) : ctx(context) {} in State() argument 66 static void CollectSavedArrayIndices(const ast::Expression* expr, F&& cb) { in CollectSavedArrayIndices() 94 PointerOp Reduce(const ast::Expression* in) const { in Reduce() 125 void Run() { in Run()
|
| D | unshadow.cc | 33 struct Unshadow::State { struct in tint::transform::Unshadow 35 CloneContext& ctx; 39 explicit State(CloneContext& context) : ctx(context) {} in State() function 42 void Run() { in Run()
|
| D | decompose_memory_access.cc | 296 struct DecomposeMemoryAccess::State { struct in tint::transform::DecomposeMemoryAccess 298 CloneContext& ctx; 300 ProgramBuilder& b; 306 std::unordered_map<const ast::Expression*, BufferAccess> accesses; 308 std::vector<const ast::Expression*> expression_order; 310 std::unordered_map<LoadStoreKey, Symbol, LoadStoreKey::Hasher> load_funcs; 312 std::unordered_map<LoadStoreKey, Symbol, LoadStoreKey::Hasher> store_funcs; 314 std::unordered_map<AtomicKey, Symbol, AtomicKey::Hasher> atomic_funcs; 316 std::vector<Store> stores; 318 BlockAllocator<Offset> offsets_; [all …]
|
| /third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
| D | TextureStage.hpp | 97 struct State struct in sw::TextureStage 101 unsigned int stageOperation : BITS(STAGE_LAST); 102 unsigned int firstArgument : BITS(SOURCE_LAST); 103 unsigned int secondArgument : BITS(SOURCE_LAST); 104 unsigned int thirdArgument : BITS(SOURCE_LAST); 105 unsigned int stageOperationAlpha : BITS(STAGE_LAST); 106 unsigned int firstArgumentAlpha : BITS(SOURCE_LAST); 107 unsigned int secondArgumentAlpha : BITS(SOURCE_LAST); 108 unsigned int thirdArgumentAlpha : BITS(SOURCE_LAST); 109 unsigned int firstModifier : BITS(MODIFIER_LAST); [all …]
|
| D | Sampler.hpp | 145 struct State struct in sw::Sampler 149 TextureType textureType : BITS(TEXTURE_LAST); 150 Format textureFormat : BITS(FORMAT_LAST); 151 FilterType textureFilter : BITS(FILTER_LAST); 152 AddressingMode addressingModeU : BITS(ADDRESSING_LAST); 153 AddressingMode addressingModeV : BITS(ADDRESSING_LAST); 154 AddressingMode addressingModeW : BITS(ADDRESSING_LAST); 155 MipmapType mipmapFilter : BITS(FILTER_LAST); 156 bool sRGB : 1; 157 SwizzleType swizzleR : BITS(SWIZZLE_LAST); [all …]
|
| D | Blitter.hpp | 56 struct State : Memset<State>, Options struct in sw::Blitter 58 State() : Memset(this, 0) {} in State() argument 59 State(const Options &options) : Memset(this, 0), Options(options) {} in State() function 61 bool operator==(const State &state) const in operator ==() 67 Format sourceFormat; 68 Format destFormat; 69 int destSamples;
|
| /third_party/ninja/src/ |
| D | state.h | 92 struct State { struct 97 State(); argument 129 typedef ExternalStringHashMap<Node*>::Type Paths; 130 Paths paths_; 133 std::map<std::string, Pool*> pools_; 136 std::vector<Edge*> edges_; 138 BindingEnv bindings_; 139 std::vector<Node*> defaults_;
|
| /third_party/skia/third_party/externals/tint/src/diagnostic/ |
| D | formatter.cc | 58 struct Formatter::State { struct in tint::diag::Formatter 61 explicit State(Printer* p) : printer(p) {} in State() argument 62 ~State() { flush(); } in ~State() 67 void set_style(const diag::Style& new_style) { in set_style() 75 void flush() { in flush() 88 State& operator<<(const T& msg) { in operator <<() 94 void newline() { stream << std::endl; } in newline() 99 void repeat(char c, size_t n) { in repeat() 104 Printer* printer; 105 diag::Style style; [all …]
|
| /third_party/skia/third_party/externals/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 …]
|
| /third_party/skia/third_party/externals/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 …]
|
| /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 …]
|
| /third_party/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()
|
| /third_party/spirv-tools/source/ |
| D | binary.cpp | 195 struct State { struct in __anond65e55990111::Parser 196 State(const uint32_t* words_arg, size_t num_words_arg, in State() function 211 State() : State(0, 0, nullptr) {} in State() function 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 …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
| D | binary.cpp | 185 struct State { struct in __anonad6fb73a0111::Parser 186 State(const uint32_t* words_arg, size_t num_words_arg, in State() function 201 State() : State(0, 0, nullptr) {} in State() function 202 const uint32_t* words; // Words in the binary SPIR-V module. 203 size_t num_words; // Number of words in the module. 204 spv_diagnostic* diagnostic; // Where diagnostics go. 205 size_t word_index; // The current position in words. 206 size_t instruction_count; // The count of processed instructions 207 spv_endianness_t endian; // The endianness of the binary. 210 bool requires_endian_conversion; [all …]
|
| /third_party/skia/third_party/externals/spirv-tools/source/ |
| D | binary.cpp | 185 struct State { struct in __anon1acbc24e0111::Parser 186 State(const uint32_t* words_arg, size_t num_words_arg, in State() argument 201 State() : State(0, 0, nullptr) {} in State() function 202 const uint32_t* words; // Words in the binary SPIR-V module. 203 size_t num_words; // Number of words in the module. 204 spv_diagnostic* diagnostic; // Where diagnostics go. 205 size_t word_index; // The current position in words. 206 size_t instruction_count; // The count of processed instructions 207 spv_endianness_t endian; // The endianness of the binary. 210 bool requires_endian_conversion; [all …]
|
| /third_party/node/deps/v8/src/heap/ |
| D | memory-reducer.h | 91 struct State { struct 92 State(Action action, int started_gcs, double next_gc_start_ms, in State() function 99 Action action; 100 int started_gcs; 101 double next_gc_start_ms; 102 double last_gc_time_ms; 126 static State Step(const State& state, const Event& event); argument
|
| /third_party/skia/third_party/externals/swiftshader/src/Device/ |
| D | Blitter.hpp | 77 struct State : Memset<State>, Options struct in sw::Blitter 79 State() in State() argument 82 State(const Options &options) in State() argument 86 …State(vk::Format sourceFormat, vk::Format destFormat, int srcSamples, int destSamples, const Optio… in State() argument 95 vk::Format sourceFormat; 96 vk::Format destFormat; 97 int srcSamples = 0; 98 int destSamples = 0; 99 bool filter3D = false;
|
| /third_party/skia/third_party/externals/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
|
| /third_party/node/deps/v8/src/numbers/ |
| D | math-random.h | 27 struct State { struct 28 uint64_t s0; 29 uint64_t s1;
|
| /third_party/rust/crates/cxx/src/ |
| D | sip.rs | 31 struct State { struct 36 v0: u64, 37 v2: u64, 38 v1: u64, 39 v3: u64, 219 fn c_rounds(state: &mut State) { in c_rounds() 223 fn d_rounds(state: &mut State) { in d_rounds()
|