Home
last modified time | relevance | path

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

12345678910>>...23

/external/swiftshader/src/OpenGL/libGLESv2/
DContext.h334 struct State struct
336 Color colorClearValue;
337 GLclampf depthClearValue;
338 int stencilClearValue;
340 bool cullFaceEnabled;
341 GLenum cullMode;
342 GLenum frontFace;
343 bool depthTestEnabled;
344 GLenum depthFunc;
345 bool blendEnabled;
[all …]
/external/swiftshader/src/OpenGL/libGLES_CM/
DContext.h217 struct State struct
219 Color colorClearValue;
220 GLclampf depthClearValue;
221 int stencilClearValue;
223 bool cullFaceEnabled;
224 GLenum cullMode;
225 GLenum frontFace;
226 bool depthTestEnabled;
227 GLenum depthFunc;
228 bool blendEnabled;
[all …]
/external/tensorflow/tensorflow/core/kernels/data/
Diterator_ops.h72 struct State { struct
73 State(std::shared_ptr<FunctionLibraryDefinition> flib_def, in State() function
83 ~State() { cancellation_manager.StartCancel(); } in ~State() argument
103 std::shared_ptr<State> iterator_state_ GUARDED_BY(mu_); argument
/external/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() function
59 State(const Options &options) : Memset(this, 0), Options(options) {} in State() argument
61 bool operator==(const State &state) const in operator ==()
67 Format sourceFormat;
68 Format destFormat;
69 int destSamples;
/external/pdfium/core/fxge/skia/
Dfx_skia_device_embeddertest.cpp20 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/
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 …]
/external/deqp-deps/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 …]
/external/angle/third_party/spirv-tools/src/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 …]
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaBase.cs15 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/v8/src/heap/
Dmemory-reducer.h91 struct State { struct
92 State(Action action, int started_gcs, double next_gc_start_ms, in State() argument
99 Action action;
100 int started_gcs;
124 static State Step(const State& state, const Event& event); argument
/external/angle/third_party/spirv-tools/src/source/
Dbinary.cpp177 struct State { struct in __anondb6d8eb90111::Parser
178 State(const uint32_t* words_arg, size_t num_words_arg, in State() argument
193 State() : State(0, 0, nullptr) {} in State() argument
194 const uint32_t* words; // Words in the binary SPIR-V module.
195 size_t num_words; // Number of words in the module.
196 spv_diagnostic* diagnostic; // Where diagnostics go.
197 size_t word_index; // The current position in words.
198 size_t instruction_count; // The count of processed instructions
199 spv_endianness_t endian; // The endianness of the binary.
202 bool requires_endian_conversion;
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/
Dbinary.cpp175 struct State { struct in __anon5f19753f0111::Parser
176 State(const uint32_t* words_arg, size_t num_words_arg, in State() argument
191 State() : State(0, 0, nullptr) {} in State() function
192 const uint32_t* words; // Words in the binary SPIR-V module.
193 size_t num_words; // Number of words in the module.
194 spv_diagnostic* diagnostic; // Where diagnostics go.
195 size_t word_index; // The current position in words.
196 size_t instruction_count; // The count of processed instructions
197 spv_endianness_t endian; // The endianness of the binary.
200 bool requires_endian_conversion;
[all …]
/external/deqp-deps/SPIRV-Tools/source/
Dbinary.cpp177 struct State { struct in __anon90799f450111::Parser
178 State(const uint32_t* words_arg, size_t num_words_arg, in State() function
193 State() : State(0, 0, nullptr) {} in State() function
194 const uint32_t* words; // Words in the binary SPIR-V module.
195 size_t num_words; // Number of words in the module.
196 spv_diagnostic* diagnostic; // Where diagnostics go.
197 size_t word_index; // The current position in words.
198 size_t instruction_count; // The count of processed instructions
199 spv_endianness_t endian; // The endianness of the binary.
202 bool requires_endian_conversion;
[all …]
/external/swiftshader/src/Device/
DBlitter.hpp74 struct State : Memset<State>, Options struct in sw::Blitter
76 State() in State() argument
79 State(const Options &options) in State() function
83State(vk::Format sourceFormat, vk::Format destFormat, int srcSamples, int destSamples, const Optio… in State() function
92 bool operator==(const State &state) const in operator ==()
98 vk::Format sourceFormat;
99 vk::Format destFormat;
100 int srcSamples = 0;
101 int destSamples = 0;
/external/tensorflow/tensorflow/core/framework/
Dcancellation.h150 struct State { struct
151 Notification cancelled_notification;
152 gtl::FlatMap<CancellationToken, CancelCallback> callbacks;
156 CancellationManager* first_child = nullptr; // Not owned.
/external/v8/src/numbers/
Dmath-random.h27 struct State { struct
28 uint64_t s0;
29 uint64_t s1;
/external/clang/lib/Format/
DContinuationIndenter.cpp79 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/gwp_asan/gwp_asan/
Dcrash_handler.cpp21 bool __gwp_asan_error_is_mine(const gwp_asan::AllocatorState *State, in __gwp_asan_error_is_mine()
32 __gwp_asan_get_internal_crash_address(const gwp_asan::AllocatorState *State) { in __gwp_asan_get_internal_crash_address()
37 addrToMetadata(const gwp_asan::AllocatorState *State, in addrToMetadata()
44 __gwp_asan_diagnose_error(const gwp_asan::AllocatorState *State, in __gwp_asan_diagnose_error()
80 __gwp_asan_get_metadata(const gwp_asan::AllocatorState *State, in __gwp_asan_get_metadata()
/external/tensorflow/tensorflow/compiler/xla/service/
Dcomputation_placer.h103 struct State { struct
109 static std::map<se::Platform::Id, State>* GetPlatformComputationPlacers(); argument
/external/clang/lib/StaticAnalyzer/Checkers/
DPointerArithChecker.cpp110 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/
DARMCallingConv.h30 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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMCallingConv.h30 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/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
DState.java7 final class State class
12 State(@SuppressWarnings("hiding") int state, @SuppressWarnings("hiding") ArrayList nodes) in State() method in State

12345678910>>...23