/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/script/ |
D | state.go | 23 type State struct { struct 24 engine *Engine // the engine currently executing the script, if any 26 ctx context.Context 27 cancel context.CancelFunc 28 file string 29 log bytes.Buffer 31 workdir string // initial working directory 32 pwd string // current working directory during execution 33 env []string // environment list (for os/exec) 34 envMap map[string]string // environment mapping (matches env) [all …]
|
/aosp_15_r20/frameworks/native/services/surfaceflinger/ |
H A D | Layer.h | 97 struct State { struct 98 int32_t sequence; // changes when visible regions can change 100 FloatRect crop; 101 LayerMetadata metadata; 103 ui::Dataspace dataspace; 105 uint64_t frameNumber; 106 uint64_t previousFrameNumber; 109 uint64_t barrierFrameNumber; 110 ui::Transform transform; 112 uint32_t producerId = 0; [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/src/recovery/bbr/ |
D | mod.rs | 95 pub struct State { struct 97 state: BBRStateMachine, argument 101 pacing_rate: u64, 105 btlbw: u64, 108 btlbwfilter: Minmax<u64>, 112 rtprop: Duration, 115 rtprop_stamp: Instant, 120 rtprop_expired: bool, 124 pacing_gain: f64, 128 cwnd_gain: f64, [all …]
|
/aosp_15_r20/external/rust/crates/quiche/src/recovery/bbr/ |
D | mod.rs | 95 pub struct State { struct 97 state: BBRStateMachine, argument 101 pacing_rate: u64, 105 btlbw: u64, 108 btlbwfilter: Minmax<u64>, 112 rtprop: Duration, 115 rtprop_stamp: Instant, 120 rtprop_expired: bool, 124 pacing_gain: f64, 128 cwnd_gain: f64, [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ir/ |
D | node_gen.go | 7 func (n *AddStringExpr) Format(s fmt.State, verb rune) { fmtNode(n, s, verb) } 41 func (n *AddrExpr) Format(s fmt.State, verb rune) { fmtNode(n, s, verb) } 78 func (n *AssignListStmt) Format(s fmt.State, verb rune) { fmtNode(n, s, verb) } 109 func (n *AssignOpStmt) Format(s fmt.State, verb rune) { fmtNode(n, s, verb) } 146 func (n *AssignStmt) Format(s fmt.State, verb rune) { fmtNode(n, s, verb) } 183 func (n *BasicLit) Format(s fmt.State, verb rune) { fmtNode(n, s, verb) } 202 func (n *BinaryExpr) Format(s fmt.State, verb rune) { fmtNode(n, s, verb) } 242 func (n *BlockStmt) Format(s fmt.State, verb rune) { fmtNode(n, s, verb) } 267 func (n *BranchStmt) Format(s fmt.State, verb rune) { fmtNode(n, s, verb) } 286 func (n *CallExpr) Format(s fmt.State, verb rune) { fmtNode(n, s, verb) } [all …]
|
/aosp_15_r20/frameworks/rs/ |
H A D | rsAllocation.h | 55 struct State { struct 56 const Type * type; 58 uint32_t usageFlags; 59 RsAllocationMipmapControl mipmapControl; 63 uint32_t yuv; 64 uint32_t elementSizeBytes; 65 bool hasMipmaps; 66 bool hasFaces; 67 bool hasReferences; 68 void * userProvidedPtr; [all …]
|
H A D | rsType.h | 43 struct State { struct 44 const Element * element; 48 uint32_t dimX; 49 uint32_t dimY; 50 uint32_t dimZ; 51 uint32_t *lodDimX; 52 uint32_t *lodDimY; 53 uint32_t *lodDimZ; 54 uint32_t *arrays; 55 uint32_t lodCount; [all …]
|
H A D | rsProgram.h | 36 struct State { struct 43 Allocation **textures; 44 RsTextureTarget *textureTargets; 45 uint32_t texturesCount; 47 Sampler **samplers; 48 uint32_t samplersCount; 50 Allocation **constants; 51 Type **constantTypes; 52 uint32_t constantsCount; 54 Element **inputElements; [all …]
|
H A D | rsProgramStore.h | 43 struct State { struct 44 bool ditherEnable; 47 bool colorRWriteEnable; 48 bool colorGWriteEnable; 49 bool colorBWriteEnable; 50 bool colorAWriteEnable; 51 RsBlendSrcFunc blendSrc; 52 RsBlendDstFunc blendDst; 55 bool depthWriteEnable; 56 RsDepthFunc depthFunc;
|
H A D | rsElement.h | 44 struct State { struct 45 RsDataType dataType; 46 RsDataKind dataKind; 47 uint32_t vectorSize; 48 uint32_t elementSizeBytes; 51 const Element **fields; 52 uint32_t *fieldArraySizes; 53 const char **fieldNames; 54 uint32_t *fieldNameLengths; 55 uint32_t *fieldOffsetBytes; [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/chacha8rand/ |
D | chacha8.go | 27 type State struct { struct 28 buf [32]uint64 29 seed [4]uint64 30 i uint32 31 n uint32 32 c uint32 44 func (s *State) Next() (uint64, bool) { 54 func (s *State) Init(seed [32]byte) { 64 func (s *State) Init64(seed [4]uint64) { 75 func (s *State) Refill() { [all …]
|
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/source/ |
H A D | binary.cpp | 195 struct State { struct in __anon280bd92a0111::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 …]
|
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/source/ |
D | binary.cpp | 195 struct State { struct in __anon9062b3f00111::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 …]
|
/aosp_15_r20/external/angle/third_party/spirv-tools/src/source/ |
H A D | binary.cpp | 195 struct State { struct in __anon720ffbe40111::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 …]
|
/aosp_15_r20/external/angle/third_party/spirv-tools/src/utils/vscode/src/lsp/protocol/ |
H A 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 …]
|
/aosp_15_r20/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 …]
|
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/ |
H A 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 …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/wasm/ |
D | ssa.go | 167 func ssaMarkMoves(s *ssagen.State, b *ssa.Block) { 170 func ssaGenBlock(s *ssagen.State, b, next *ssa.Block) { 230 func ssaGenValue(s *ssagen.State, v *ssa.Value) { 326 func ssaGenValueOnStack(s *ssagen.State, v *ssa.Value, extend bool) { 503 func getValue32(s *ssagen.State, v *ssa.Value) { 520 func getValue64(s *ssagen.State, v *ssa.Value) { 534 func i32Const(s *ssagen.State, val int32) { 539 func i64Const(s *ssagen.State, val int64) { 544 func f32Const(s *ssagen.State, val float64) { 549 func f64Const(s *ssagen.State, val float64) { [all …]
|
/aosp_15_r20/external/clang/lib/Format/ |
H A 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 …]
|
/aosp_15_r20/frameworks/compile/mclinker/include/mcld/LD/ |
D | DiagnosticEngine.h | 96 struct State { struct 98 State() : numArgs(0), ID(-1), severity(None), file(NULL) {} in State() argument 99 ~State() {} in ~State() argument 119 State& state() { return m_State; } in state() argument
|
/aosp_15_r20/frameworks/av/media/libstagefright/xmlparser/ |
H A D | MediaCodecsXmlParser.cpp | 204 struct State { struct 206 Data *mData; 209 struct CodecAndType { 217 std::vector<std::string> mIncludeStack; 218 std::vector<Section> mSectionStack; 219 std::vector<StringSet> mVariantsStack; 220 std::vector<CodecAndType> mCurrent; 225 Data &data() { return *mData; } in data() 229 struct RestorePoint { 237 RestorePoint createRestorePoint() const { in createRestorePoint() [all …]
|
/aosp_15_r20/external/pdfium/core/fxge/skia/ |
H A D | fx_skia_device_embeddertest.cpp | 41 struct State { struct 42 enum class Change { kNo, kYes }; 43 enum class Save { kNo, kYes }; 44 enum class Clip { kNo, kSame, kDifferentPath, kDifferentMatrix }; 45 enum class Graphic { kNone, kPath, kText }; 47 Change m_change; 48 Save m_save; 49 Clip m_clip; 50 Graphic m_graphic; 51 uint32_t m_pixel; [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/hyper/src/proto/h1/ |
D | conn.rs | 810 struct State { struct 811 allow_half_close: bool, 813 cached_headers: Option<HeaderMap>, 816 error: Option<crate::Error>, 818 keep_alive: KA, 846 /// State of allowed reads argument 848 /// State of allowed writes argument 872 impl fmt::Debug for State { argument 946 impl State { implementation
|
/aosp_15_r20/external/perfetto/src/trace_processor/perfetto_sql/engine/ |
H A D | runtime_table_function.h | 42 struct State { struct 43 PerfettoSqlEngine* engine; 44 SqlSource sql_defn_str; 46 FunctionPrototype prototype; 47 std::vector<sql_argument::ArgumentDefinition> return_values; 49 std::optional<SqliteEngine::PreparedStatement> temporary_create_stmt; 51 bool IsReturnValueColumn(size_t i) const { in IsReturnValueColumn() 56 bool IsArgumentColumn(size_t i) const { in IsArgumentColumn() 62 bool IsPrimaryKeyColumn(size_t i) const { in IsPrimaryKeyColumn() 67 size_t TotalColumnCount() const { in TotalColumnCount()
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/ |
D | scriptconds_test.go | 65 func defaultCCIsAbsolute(s *script.State) (bool, error) { 77 func ccIs(s *script.State, want string) (bool, error) { 98 func hasBuildmode(s *script.State, mode string) (bool, error) { 106 func hasNet(s *script.State, host string) (bool, error) { 140 func hasGodebug(s *script.State, value string) (bool, error) { 150 func hasGoexperiment(s *script.State, value string) (bool, error) { 217 func cgoLinkExt(s *script.State) (bool, error) { 223 func mustLinkExt(s *script.State) (bool, error) { 229 func pieLinkExt(s *script.State) (bool, error) {
|