Home
last modified time | relevance | path

Searched defs:State (Results 1 – 25 of 344) sorted by relevance

12345678910>>...14

/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DContext.h304 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/cef/tests/ceftests/
Dtest_request.h22 struct State { struct
48 using RequestDoneCallback = base::OnceCallback<void(const State& state)>; argument
/third_party/skia/third_party/externals/tint/src/transform/
Dcanonicalize_entry_point_io.cc80 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 …]
Dmultiplanar_external_texture.cc44 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 …]
Dzero_init_workgroup_memory.cc37 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 …]
Dvertex_pulling.cc204 struct State { struct
205 State(CloneContext& context, const VertexPulling::Config& c) in State() function
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 …]
Dsimplify_pointers.cc50 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()
Dunshadow.cc33 struct Unshadow::State { struct in tint::transform::Unshadow
35 CloneContext& ctx;
39 explicit State(CloneContext& context) : ctx(context) {} in State() argument
42 void Run() { in Run()
Ddecompose_memory_access.cc296 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/ninja/src/
Dstate.h85 struct State { struct
90 State(); argument
118 typedef ExternalStringHashMap<Node*>::Type Paths;
119 Paths paths_;
122 map<string, Pool*> pools_;
125 vector<Edge*> edges_;
127 BindingEnv bindings_;
128 vector<Node*> defaults_;
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DTextureStage.hpp97 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 …]
DSampler.hpp145 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 …]
DBlitter.hpp56 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/skia/third_party/externals/tint/src/diagnostic/
Dformatter.cc58 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/spirv-tools/utils/vscode/src/lsp/protocol/
Denums.go133 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/spirv-tools/utils/vscode/src/lsp/protocol/
Denums.go133 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/
Denums.go133 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/spirv-tools/source/
Dbinary.cpp185 struct State { struct in __anon0385c9ce0111::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/swiftshader/third_party/SPIRV-Tools/source/
Dbinary.cpp185 struct State { struct in __anon9a983eba0111::Parser
186 State(const uint32_t* words_arg, size_t num_words_arg, in State() argument
201 State() : State(0, 0, nullptr) {} in State() argument
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/spirv-tools/source/
Dbinary.cpp185 struct State { struct in __anon990b0d190111::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/flutter/skia/third_party/externals/spirv-tools/source/
Dbinary.cpp173 struct State { struct in __anon242b46630111::Parser
174 State(const uint32_t* words_arg, size_t num_words_arg, in State() argument
189 State() : State(0, 0, nullptr) {} in State() function
190 const uint32_t* words; // Words in the binary SPIR-V module.
191 size_t num_words; // Number of words in the module.
192 spv_diagnostic* diagnostic; // Where diagnostics go.
193 size_t word_index; // The current position in words.
194 spv_endianness_t endian; // The endianness of the binary.
197 bool requires_endian_conversion;
202 std::unordered_map<uint32_t, uint32_t> id_to_type_id;
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DThreadSafeModule.h31 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/skia/third_party/externals/swiftshader/src/Device/
DBlitter.hpp77 struct State : Memset<State>, Options struct in sw::Blitter
79 State() in State() function
82 State(const Options &options) in State() function
86State(vk::Format sourceFormat, vk::Format destFormat, int srcSamples, int destSamples, const Optio… in State() function
95 vk::Format sourceFormat;
96 vk::Format destFormat;
97 int srcSamples = 0;
98 int destSamples = 0;
99 bool filter3D = false;
/third_party/typescript/tests/baselines/reference/
DgeneratorTypeCheck63.js25 export const Nothing: Strategy<State> = strategy("Nothing", function* (state: State) {
30 export const Nothing1: Strategy<State> = strategy("Nothing", function* (state: State) {
33 export const Nothing2: Strategy<State> = strategy("Nothing", function* (state: State) {
37 export const Nothing3: Strategy<State> = strategy("Nothing", function* (state: State) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMCallingConv.cpp23 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()

12345678910>>...14