/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Context.h | 333 struct State struct 335 Color colorClearValue; 336 GLclampf depthClearValue; 337 int stencilClearValue; 339 bool cullFaceEnabled; 340 GLenum cullMode; 341 GLenum frontFace; 342 bool depthTestEnabled; 343 GLenum depthFunc; 344 bool blendEnabled; [all …]
|
/external/swiftshader/src/OpenGL/libGLES_CM/ |
D | Context.h | 217 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/syzkaller/syz-hub/state/ |
D | state.go | 25 type State struct { struct 26 corpusSeq uint64 27 reproSeq uint64 28 dir string 29 Corpus *db.DB 30 Repros *db.DB 31 Managers map[string]*Manager 112 func (st *State) createManager(name string) (*Manager, error) { 144 func (st *State) Connect(name string, fresh bool, calls []string, corpus [][]byte) error { 178 func (st *State) Sync(name string, add [][]byte, del []string) ([][]byte, int, error) { [all …]
|
/external/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 : Options struct in sw::Blitter 59 State(const Options &options) : Options(options) {} in State() argument 61 bool operator==(const State &state) const in operator ==() 66 Format sourceFormat; 67 Format destFormat; 68 int destSamples;
|
/external/epid-sdk/epid/common-testhelper/ |
D | finite_field_wrapper-testhelper.cc | 40 struct FiniteFieldObj::State { struct in FiniteFieldObj 42 struct InnerState { 55 InnerState* inner_state; 58 std::shared_ptr<FiniteField> ff_; 61 size_t size_; 64 State() : ff_(nullptr, finite_field_deleter), size_(0) { in State() argument 74 ~State() { in ~State() 82 void SetInnerState(FiniteFieldObj const& gf) { in SetInnerState() 90 void SetInnerState(InnerState* state) { in SetInnerState()
|
D | ecgroup_wrapper-testhelper.cc | 42 struct EcGroupObj::State { struct in EcGroupObj 44 std::shared_ptr<EcGroup> group_; 45 FiniteFieldObj fintefield_; 48 State() : group_(nullptr, ecgroup_deleter) {} in State() argument 56 ~State() {} in ~State()
|
D | bignum_wrapper-testhelper.cc | 39 struct BigNumObj::State { struct in BigNumObj 41 size_t size; 44 std::shared_ptr<BigNum> bn_; 47 State() : size(0), bn_() {} in State() argument 50 void write(unsigned char const* buf, size_t buflen, size_t len) { in write()
|
D | ffelement_wrapper-testhelper.cc | 40 struct FfElementObj::State { struct in FfElementObj 42 FiniteFieldObj ff_; 44 size_t size; 46 std::shared_ptr<FfElement> ffe_; 48 State() : ff_(), size(0), ffe_() {} in State() function 50 void write(FiniteFieldObj* ff, unsigned char const* buf, size_t buflen) { in write()
|
D | ecpoint_wrapper-testhelper.cc | 40 struct EcPointObj::State { struct in EcPointObj 42 EcGroupObj group_; 44 std::shared_ptr<EcPoint> point_; 46 State() : group_(), point_() {} in State() argument 48 void write(EcGroupObj* group, unsigned char const* buf, size_t buflen) { in write()
|
/external/pdfium/core/fxge/skia/ |
D | fx_skia_device_unittest.cpp | 18 struct State { struct 19 enum class Change { kNo, kYes }; 20 enum class Save { kNo, kYes }; 21 enum class Clip { kNo, kSame, kDifferentPath, kDifferentMatrix }; 22 enum class Graphic { kNone, kPath, kText }; 24 Change m_change; 25 Save m_save; 26 Clip m_clip; 27 Graphic m_graphic; 28 uint32_t m_pixel; [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/v8/src/heap/ |
D | memory-reducer.h | 87 struct State { struct 88 State(Action action, int started_gcs, double next_gc_start_ms, in State() function 95 Action action; 96 int started_gcs; 120 static State Step(const State& state, const Event& event); argument
|
/external/swiftshader/third_party/SPIRV-Tools/source/ |
D | binary.cpp | 175 struct State { struct in __anon15630c7d0111::Parser 176 State(const uint32_t* words_arg, size_t num_words_arg, in State() argument 191 State() : State(0, 0, nullptr) {} in State() argument 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/ |
D | binary.cpp | 175 struct State { struct in __anonbccc42030111::Parser 176 State(const uint32_t* words_arg, size_t num_words_arg, in State() function 190 State() : State(0, 0, nullptr) {} in State() function 191 const uint32_t* words; // Words in the binary SPIR-V module. 192 size_t num_words; // Number of words in the module. 193 spv_diagnostic* diagnostic; // Where diagnostics go. 194 size_t word_index; // The current position in words. 195 spv_endianness_t endian; // The endianness of the binary. 198 bool requires_endian_conversion; 203 std::unordered_map<uint32_t, uint32_t> id_to_type_id; [all …]
|
/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 | Sampler.hpp | 145 struct State struct in sw::Sampler 149 TextureType textureType : BITS(TEXTURE_LAST); 150 VkFormat textureFormat : BITS(VK_FORMAT_END_RANGE); 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 : Options struct in sw::Blitter 59 State(const Options &options) : Options(options) {} in State() argument 61 bool operator==(const State &state) const in operator ==() 66 VkFormat sourceFormat; 67 VkFormat destFormat; 68 int destSamples;
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMCallingConv.h | 31 CCState &State, bool CanFail) { in f64AssignAPCS() 62 CCState &State) { in CC_ARM_APCS_Custom_f64() 74 CCState &State, bool CanFail) { in f64AssignAAPCS() 110 CCState &State) { in CC_ARM_AAPCS_Custom_f64() 120 CCValAssign::LocInfo &LocInfo, CCState &State) { in f64RetAssign() 142 CCState &State) { in RetCC_ARM_APCS_Custom_f64() 153 CCState &State) { in RetCC_ARM_AAPCS_Custom_f64()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | computation_placer.h | 100 struct State { struct 106 static std::map<se::Platform::Id, State>* GetPlatformComputationPlacers(); argument
|
/external/curl/docs/ |
D | DEPRECATE.md | 28 ### State subsection 57 ### State subsection 73 ### State subsection
|
/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/swiftshader/third_party/llvm-7.0/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/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()
|