/aosp_15_r20/external/tensorflow/tensorflow/go/op/ |
H A D | wrappers.go | 70 func Abort(scope *Scope, optional ...AbortAttr) (o *tf.Operation) { 91 func Abs(scope *Scope, x tf.Output) (y tf.Output) { 120 func AccumulateNV2(scope *Scope, inputs []tf.Output, shape tf.Shape) (sum tf.Output) { 141 func Acos(scope *Scope, x tf.Output) (y tf.Output) { 164 func Acosh(scope *Scope, x tf.Output) (y tf.Output) { 186 func Add(scope *Scope, x tf.Output, y tf.Output) (z tf.Output) { 262 func AddManySparseToTensorsMap(scope *Scope, sparse_indices tf.Output, sparse_values tf.Output, spa… 289 func AddN(scope *Scope, inputs []tf.Output) (sum tf.Output) { 352 func AddSparseToTensorsMap(scope *Scope, sparse_indices tf.Output, sparse_values tf.Output, sparse_… 375 func AddV2(scope *Scope, x tf.Output, y tf.Output) (z tf.Output) { [all …]
|
H A D | scope.go | 35 type Scope struct { struct 36 graph *tf.Graph 37 namemap map[string]int 38 namespace string 39 controlDependencies []*tf.Operation 40 device string 41 err *scopeErr 62 func (s *Scope) Finalize() (*tf.Graph, error) { 75 func (s *Scope) AddOperation(args tf.OpSpec) *tf.Operation { 97 func (s *Scope) SubScope(namespace string) *Scope { [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/go/types/ |
D | scope.go | 25 type Scope struct { struct 26 parent *Scope 27 children []*Scope 28 number int // parent.children[number-1] is this scope; 0 if there is no parent 29 elems map[string]Object // lazily allocated 30 pos, end token.Pos // scope extent; may be invalid 31 comment string // for debugging only 32 isFunc bool // set if this is a function scope (internal use only) 37 func NewScope(parent *Scope, pos, end token.Pos, comment string) *Scope { 48 func (s *Scope) Parent() *Scope { return s.parent } [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/types2/ |
D | scope.go | 22 type Scope struct { struct 23 parent *Scope 24 children []*Scope 25 number int // parent.children[number-1] is this scope; 0 if there is no parent 26 elems map[string]Object // lazily allocated 27 pos, end syntax.Pos // scope extent; may be invalid 28 comment string // for debugging only 29 isFunc bool // set if this is a function scope (internal use only) 34 func NewScope(parent *Scope, pos, end syntax.Pos, comment string) *Scope { 45 func (s *Scope) Parent() *Scope { return s.parent } [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AMDGPU/ |
H A D | SIMemoryLegalizer.cpp | 95 SIAtomicScope Scope = SIAtomicScope::SYSTEM; member in __anonc50d78070111::SIMemOpInfo 103 SIAtomicScope Scope = SIAtomicScope::SYSTEM, in SIMemOpInfo() 715 SIAtomicScope Scope = SIAtomicScope::NONE; in constructFromMIWithMMO() local 783 SIAtomicScope Scope = SIAtomicScope::NONE; in getAtomicFenceInfo() local 847 SIAtomicScope Scope, in enableLoadCacheBypass() 882 SIAtomicScope Scope, in enableStoreCacheBypass() 895 SIAtomicScope Scope, in enableRMWCacheBypass() 954 SIAtomicScope Scope, in insertWait() 1051 SIAtomicScope Scope, in insertAcquire() 1096 SIAtomicScope Scope, in insertRelease() [all …]
|
/aosp_15_r20/build/blueprint/parser/ |
H A D | parser.go | 74 func ParseAndEval(filename string, r io.Reader, scope *Scope) (file *File, errs []error) { 793 type Scope struct { struct 794 vars map[string]*Assignment 795 preventInheriting map[string]bool 796 parentScope *Scope 799 func NewScope(s *Scope) *Scope { 807 func (s *Scope) HandleAssignment(assignment *Assignment) error { 845 func (s *Scope) Get(name string) *Assignment { 858 func (s *Scope) GetLocal(name string) *Assignment { 870 func (s *Scope) DontInherit(name string) { [all …]
|
/aosp_15_r20/external/stg/test_cases/diff_tests/typedef/ |
H A D | scoped_composite_nested_struct.0.cc | 3 struct Scope { struct 23 Scope::UnnamedClass unnamed_class; argument
|
H A D | scoped_composite_nested_struct.1.cc | 1 struct Scope { struct 21 Scope::UnnamedClass unnamed_class; argument
|
/aosp_15_r20/external/stg/test_cases/info_tests/typedef/ |
H A D | scoped_composite_nested_struct.cc | 1 struct Scope { struct 21 Scope::UnnamedClass unnamed_class; argument
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/tensorexpr/ |
H A D | mem_dependency_checker.h | 275 struct Scope { struct 276 Scope(BlockPtr b, std::shared_ptr<Scope> p) in Scope() argument 280 std::shared_ptr<Scope> parent; argument 289 std::shared_ptr<Scope> currentScope_; argument
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/fend-core-1.4.6/src/ |
H A D | scope.rs | 64 pub(crate) struct Scope { struct 66 value: ScopeValue, argument 67 inner: Option<Arc<Scope>>, argument 71 a: &Option<Arc<Scope>>, in compare_option_arc_scope() 72 b: &Option<Arc<Scope>>, in compare_option_arc_scope() 82 impl Scope { implementation
|
/aosp_15_r20/prebuilts/go/linux-x86/src/go/ast/ |
D | scope.go | 20 type Scope struct { struct 21 Outer *Scope 22 Objects map[string]*Object 26 func NewScope(outer *Scope) *Scope { 34 func (s *Scope) Lookup(name string) *Object { 42 func (s *Scope) Insert(obj *Object) (alt *Object) { 50 func (s *Scope) String() string {
|
/aosp_15_r20/external/google-breakpad/src/processor/ |
H A D | cfi_frame_info_unittest.cc | 166 class Scope: public CFIFixture, public Test { }; class 169 TEST_F(Scope, CFALacksCFA) { in TEST_F() argument 179 TEST_F(Scope, CFALacksRA) { in TEST_F() argument 190 TEST_F(Scope, CFASeesCurrentRegs) { in TEST_F() argument 205 TEST_F(Scope, RASeesCFA) { in TEST_F() argument 217 TEST_F(Scope, RALacksRA) { in TEST_F() argument 228 TEST_F(Scope, RASeesCurrentRegs) { in TEST_F() argument 241 TEST_F(Scope, RegistersSeeCFA) { in TEST_F() argument 254 TEST_F(Scope, RegsLackRA) { in TEST_F() argument 266 TEST_F(Scope, RegsSeeRegs) { in TEST_F() argument [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | LexicalScopes.cpp | 124 DILocalScope *Scope = DL->getScope(); in findLexicalScope() local 141 LexicalScope *LexicalScopes::getOrCreateLexicalScope(const DILocalScope *Scope, in getOrCreateLexicalScope() 159 LexicalScopes::getOrCreateRegularScope(const DILocalScope *Scope) { in getOrCreateRegularScope() 187 LexicalScopes::getOrCreateInlinedScope(const DILocalScope *Scope, in getOrCreateInlinedScope() 211 LexicalScopes::getOrCreateAbstractScope(const DILocalScope *Scope) { in getOrCreateAbstractScope() 233 void LexicalScopes::constructScopeNest(LexicalScope *Scope) { in constructScopeNest() 284 LexicalScope *Scope = getOrCreateLexicalScope(DL); in getMachineBasicBlocks() local 303 LexicalScope *Scope = getOrCreateLexicalScope(DL); in dominates() local
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/ |
H A D | LexicalScopes.cpp | 125 DILocalScope *Scope = DL->getScope(); in findLexicalScope() local 142 LexicalScope *LexicalScopes::getOrCreateLexicalScope(const DILocalScope *Scope, in getOrCreateLexicalScope() 160 LexicalScopes::getOrCreateRegularScope(const DILocalScope *Scope) { in getOrCreateRegularScope() 188 LexicalScopes::getOrCreateInlinedScope(const DILocalScope *Scope, in getOrCreateInlinedScope() 212 LexicalScopes::getOrCreateAbstractScope(const DILocalScope *Scope) { in getOrCreateAbstractScope() 236 void LexicalScopes::constructScopeNest(LexicalScope *Scope) { in constructScopeNest() 285 LexicalScope *Scope = getOrCreateLexicalScope(DL); in getMachineBasicBlocks() local 308 LexicalScope *Scope = getOrCreateLexicalScope(DL); in dominates() local
|
/aosp_15_r20/external/llvm/lib/CodeGen/ |
H A D | LexicalScopes.cpp | 110 DILocalScope *Scope = DL->getScope(); in findLexicalScope() local 127 LexicalScope *LexicalScopes::getOrCreateLexicalScope(const DILocalScope *Scope, in getOrCreateLexicalScope() 141 LexicalScopes::getOrCreateRegularScope(const DILocalScope *Scope) { in getOrCreateRegularScope() 169 LexicalScopes::getOrCreateInlinedScope(const DILocalScope *Scope, in getOrCreateInlinedScope() 194 LexicalScopes::getOrCreateAbstractScope(const DILocalScope *Scope) { in getOrCreateAbstractScope() 216 void LexicalScopes::constructScopeNest(LexicalScope *Scope) { in constructScopeNest() 273 LexicalScope *Scope = getOrCreateLexicalScope(DL); in getMachineBasicBlocks() local 295 LexicalScope *Scope = getOrCreateLexicalScope(DL); in dominates() local
|
/aosp_15_r20/external/stg/test_cases/diff_tests/member/ |
H A D | member_types.1.cc | 1 struct Scope { struct 15 Scope::StructDecl struct_decl; argument
|
H A D | member_types.0.cc | 1 struct Scope { struct 15 Scope::StructDecl struct_decl; argument
|
/aosp_15_r20/external/stg/test_cases/info_tests/member/ |
H A D | member_types.cc | 1 struct Scope { struct 15 Scope::StructDecl struct_decl; argument
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | DebugInfo.cpp | 43 DISubprogram *llvm::getDISubprogram(const MDNode *Scope) { in getDISubprogram() 148 void DebugInfoFinder::processScope(DIScope *Scope) { in processScope() 268 bool DebugInfoFinder::addScope(DIScope *Scope) { in addScope() 496 auto *Scope = map(MLD->getScope()); in getReplacementMDLocation() local 641 auto *Scope = DL.getScope(); in stripNonLineTableDebugInfo() local 802 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, in LLVMDIBuilderCreateFunction() 817 LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, in LLVMDIBuilderCreateLexicalBlock() 826 LLVMMetadataRef Scope, in LLVMDIBuilderCreateLexicalBlockFile() 836 LLVMMetadataRef Scope, in LLVMDIBuilderCreateImportedModuleFromNamespace() 848 LLVMMetadataRef Scope, in LLVMDIBuilderCreateImportedModuleFromAlias() [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Instrumentation/ |
H A D | ControlHeightReduction.cpp | 242 auto *Scope = new CHRScope(TailRegInfos, TailSubs); in split() local 309 if (CHRScope *Scope = findScopes(R, nullptr, nullptr, Output)) { in findScopes() local 409 raw_ostream &operator<<(raw_ostream &OS, const CHRScope &Scope) { in operator <<() 873 void CHR::checkScopeHoistable(CHRScope *Scope) { in checkScopeHoistable() 1106 static void getSelectsInScope(CHRScope *Scope, in getSelectsInScope() 1132 CHRScope *Scope, in splitScope() 1290 void CHR::classifyBiasedScopes(CHRScope *Scope, CHRScope *OutermostScope) { in classifyBiasedScopes() 1315 static bool hasAtLeastTwoBiasedBranches(CHRScope *Scope) { in hasAtLeastTwoBiasedBranches() 1371 void CHR::setCHRRegions(CHRScope *Scope, CHRScope *OutermostScope) { in setCHRRegions() 1481 static void hoistScopeConditions(CHRScope *Scope, Instruction *HoistPoint, in hoistScopeConditions() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/thread/ |
H A D | scoped.rs | 13 pub struct Scope<'scope, 'env: 'scope> { struct 14 data: Arc<ScopeData>, argument 34 /// See [`Scope::spawn`] for details. argument 169 impl<'scope, 'env> Scope<'scope, 'env> { implementation 334 impl fmt::Debug for Scope<'_, '_> { implementation
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/thread/ |
H A D | scoped.rs | 13 pub struct Scope<'scope, 'env: 'scope> { struct 14 data: Arc<ScopeData>, argument 34 /// See [`Scope::spawn`] for details. argument 169 impl<'scope, 'env> Scope<'scope, 'env> { impl 334 impl fmt::Debug for Scope<'_, '_> { implementation
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/thread/ |
H A D | scoped.rs | 13 pub struct Scope<'scope, 'env: 'scope> { struct 14 data: Arc<ScopeData>, argument 34 /// See [`Scope::spawn`] for details. argument 169 impl<'scope, 'env> Scope<'scope, 'env> { impl 334 impl fmt::Debug for Scope<'_, '_> { implementation
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/thread/ |
H A D | scoped.rs | 13 pub struct Scope<'scope, 'env: 'scope> { struct 14 data: Arc<ScopeData>, argument 34 /// See [`Scope::spawn`] for details. argument 169 impl<'scope, 'env> Scope<'scope, 'env> { impl 334 impl fmt::Debug for Scope<'_, '_> { implementation
|