Home
last modified time | relevance | path

Searched defs:Group (Results 1 – 25 of 973) sorted by relevance

12345678910>>...39

/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/sync/errgroup/
Derrgroup.go25 type Group struct { struct
26 cancel func(error)
28 wg sync.WaitGroup
30 sem chan token
32 errOnce sync.Once
33 err error
36 func (g *Group) done() {
55 func (g *Group) Wait() error {
69 func (g *Group) Go(f func() error) {
93 func (g *Group) TryGo(f func() error) bool {
[all …]
/aosp_15_r20/external/cronet/base/task/sequence_manager/
H A Datomic_flag_set.h93 struct BASE_EXPORT Group { struct
96 Group& operator=(const Group&) = delete; argument
104 raw_ptr<Group> prev = nullptr; argument
105 std::unique_ptr<Group> next; argument
106 raw_ptr<Group> partially_free_list_prev = nullptr; argument
107 raw_ptr<Group> partially_free_list_next = nullptr; argument
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/syn-2.0.55/src/
H A Dtoken.rs619 pub struct Group { struct
625 pub fn Group<S: IntoSpans<Span>>(span: S) -> Group { in Group() function
631 impl std::default::Default for Group { implementation
641 impl Copy for Group {} implementation
645 impl Clone for Group { implementation
653 impl Debug for Group { implementation
661 impl cmp::Eq for Group {} implementation
665 impl PartialEq for Group { implementation
673 impl Hash for Group { implementation
677 impl Group { implementation
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/syn/src/
Dtoken.rs619 pub struct Group { struct
625 pub fn Group<S: IntoSpans<Span>>(span: S) -> Group { in Group() function
631 impl std::default::Default for Group { implementation
641 impl Copy for Group {} implementation
645 impl Clone for Group { implementation
653 impl Debug for Group { implementation
661 impl cmp::Eq for Group {} implementation
665 impl PartialEq for Group { implementation
673 impl Hash for Group { implementation
677 impl Group { impl
[all …]
/aosp_15_r20/external/swiftshader/tests/regres/testlist/
H A Dtestlist.go43 type Group struct { struct
44 Name string
45 File string
46 API API
47 Tests []string
51 func (g *Group) Load() error {
55 func (g *Group) LoadFile(file string) error {
76 func (g Group) Filter(pred func(string) bool) Group {
91 func (g Group) Limit(limit int) Group {
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/syscall/unix/
Duser_darwin.go44 type Group struct { struct
45 Name *byte
46 Passwd *byte
47 Gid uint32 // gid_t
48 Mem **byte
84 func Getgrnam(name *byte, grp *Group, buf *byte, size uintptr, result **Group) syscall.Errno {
99 func Getgrgid(gid uint32, grp *Group, buf *byte, size uintptr, result **Group) syscall.Errno {
/aosp_15_r20/external/boringssl/src/rust/bssl-crypto/src/
H A Dec.rs30 fn group(_: sealed::Sealed) -> Group; in group()
43 fn group(_: sealed::Sealed) -> Group { in group()
57 fn group(_: sealed::Sealed) -> Group { in group()
68 pub enum Group { enum
73 impl Group { implementation
105 unsafe fn from_scalar(group: Group, scalar: *const bssl_sys::BIGNUM) -> Option<Self> { in from_scalar()
157 pub fn from_x962_uncompressed(group: Group, x962: &[u8]) -> Option<Self> { in from_x962_uncompressed()
194 pub fn from_der_subject_public_key_info(group: Group, spki: &[u8]) -> Option<Self> { in from_der_subject_public_key_info()
304 pub fn from_big_endian(group: Group, scalar: &[u8]) -> Option<Self> { in from_big_endian()
343 pub fn from_der_ec_private_key(group: Group, der: &[u8]) -> Option<Self> { in from_der_ec_private_key()
[all …]
/aosp_15_r20/external/cronet/third_party/boringssl/src/rust/bssl-crypto/src/
H A Dec.rs30 fn group(_: sealed::Sealed) -> Group; in group()
43 fn group(_: sealed::Sealed) -> Group { in group()
57 fn group(_: sealed::Sealed) -> Group { in group()
68 pub enum Group { enum
73 impl Group { implementation
105 unsafe fn from_scalar(group: Group, scalar: *const bssl_sys::BIGNUM) -> Option<Self> { in from_scalar()
157 pub fn from_x962_uncompressed(group: Group, x962: &[u8]) -> Option<Self> { in from_x962_uncompressed()
194 pub fn from_der_subject_public_key_info(group: Group, spki: &[u8]) -> Option<Self> { in from_der_subject_public_key_info()
304 pub fn from_big_endian(group: Group, scalar: &[u8]) -> Option<Self> { in from_big_endian()
343 pub fn from_der_ec_private_key(group: Group, der: &[u8]) -> Option<Self> { in from_der_ec_private_key()
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/singleflight/
Dsingleflight.go29 type Group struct { struct
30 mu sync.Mutex // protects m
31 m map[string]*call // lazily initialized
47 func (g *Group) Do(key string, fn func() (any, error)) (v any, err error, shared bool) {
69 func (g *Group) DoChan(key string, fn func() (any, error)) <-chan Result {
92 func (g *Group) doCall(c *call, key string, fn func() (any, error)) {
111 func (g *Group) ForgetUnshared(key string) bool {
/aosp_15_r20/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp434 ListScope Group(W, "Sections"); in printSections() local
558 DictScope Group(W, "Relocation"); in printRelocation() local
595 ListScope Group(W, "Symbols"); in printSymbols() local
603 ListScope Group(W, "DynamicSymbols"); in printDynamicSymbols() local
682 DictScope Group(W, "DataInCode"); in printMachODataInCode() local
690 DictScope Group(W, "Entry"); in printMachODataInCode() local
721 DictScope Group(W, "MinVersion"); in printMachOVersionMin() local
749 DictScope Group(W, "Dysymtab"); in printMachODysymtab() local
777 DictScope Group(W, "Segment"); in printMachOSegment() local
797 DictScope Group(W, "Indirect Symbols"); in printMachOIndirectSymbols() local
[all …]
/aosp_15_r20/external/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp56 const std::vector<Record*> &getParents(const Record *Group) { in getParents()
63 getCategoryFromDiagGroup(const Record *Group, in getCategoryFromDiagGroup()
84 if (DefInit *Group = dyn_cast<DefInit>(R->getValueInit("Group"))) { in getDiagnosticCategory() local
186 Record *Group = DiagGroups[i]; in groupDiagnostics() local
338 bool InferPedantic::isSubGroupOfGroup(const Record *Group, in isSubGroupOfGroup()
365 bool InferPedantic::groupInPedantic(const Record *Group, bool increment) { in groupInPedantic()
382 void InferPedantic::markGroup(const Record *Group) { in markGroup()
403 if (DefInit *Group = dyn_cast<DefInit>(R->getValueInit("Group"))) { in compute() local
422 if (DefInit *Group = dyn_cast<DefInit>(R->getValueInit("Group"))) in compute() local
442 Record *Group = DiagGroups[i]; in compute() local
[all …]
/aosp_15_r20/external/golang-protobuf/internal/testprotos/required/
H A Drequired.pb.go675 type Group struct { struct
676 state protoimpl.MessageState
677 sizeCache protoimpl.SizeCache
678 unknownFields protoimpl.UnknownFields
680 Group *Group_Group `protobuf:"group,1,req,name=Group,json=group" json:"group,omitempty"` argument
683 func (x *Group) Reset() {
692 func (x *Group) String() string {
696 func (*Group) ProtoMessage() {}
698 func (x *Group) ProtoReflect() protoreflect.Message {
711 func (*Group) Descriptor() ([]byte, []int) {
[all …]
/aosp_15_r20/external/angle/src/libANGLE/
H A DDebug.h119 struct Group struct
139 std::vector<Group> mGroups; argument
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/MC/
H A DMCObjectFileInfo.cpp1117 if (const MCSymbol *Group = ElfSec.getGroup()) { in getStackSizesSection() local
1135 if (const MCSymbol *Group = ElfSec.getGroup()) { in getBBAddrMapSection() local
1155 if (const MCSymbol *Group = ElfSec.getGroup()) { in getKCFITrapSection() local
1171 if (const MCSymbol *Group = ElfSec.getGroup()) { in getPseudoProbeSection() local
1223 if (const MCSymbol *Group = ElfSec.getGroup()) { in getPCSection() local
/aosp_15_r20/external/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h89 Group, enumerator
123 struct Group : Section { struct
127 Group() : Section(SectionKind::Group) {} in Group() function
129 return S->Kind == SectionKind::Group; in classof() argument
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCContext.cpp316 if (const MCSymbol *Group = Section->getGroup()) in renameELFSection() local
333 const MCSymbolELF *Group, in createELFSectionImpl()
367 const MCSymbolELF *Group, in createELFRelSection()
388 const Twine &Group, unsigned UniqueID, in getELFSection()
403 StringRef Group = ""; in getELFSection() local
429 MCSectionELF *MCContext::createELFGroupSection(const MCSymbolELF *Group) { in createELFGroupSection()
497 const Twine &Group, unsigned UniqueID, in getWasmSection()
512 StringRef Group = ""; in getWasmSection() local
H A DXCOFFObjectWriter.cpp126 for (auto *Group : Groups) in reset() local
311 CsectGroup &Group = getCsectGroup(MCSec); in executePostLayoutBinding() local
367 for (const auto *Group : Section->Groups) { in writeSections() local
563 for (const auto *Group : Section->Groups) { in writeSymbolTable() local
605 [](const CsectGroup *Group) { return Group->empty(); }); in assignAddressesAndIndices()
615 for (auto *Group : Section->Groups) { in assignAddressesAndIndices() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/Support/
DThreadPool.h86 auto async(ThreadPoolTaskGroup &Group, Function &&F, Args &&...ArgList) { in async()
112 ThreadPoolTaskGroup *Group) { in asyncImpl()
166 ThreadPoolTaskGroup *Group) override { in asyncEnqueue()
246 ThreadPoolTaskGroup *Group) override { in asyncEnqueue()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/Support/
DThreadPool.h86 auto async(ThreadPoolTaskGroup &Group, Function &&F, Args &&...ArgList) { in async()
112 ThreadPoolTaskGroup *Group) { in asyncImpl()
166 ThreadPoolTaskGroup *Group) override { in asyncEnqueue()
246 ThreadPoolTaskGroup *Group) override { in asyncEnqueue()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Support/
DThreadPool.h86 auto async(ThreadPoolTaskGroup &Group, Function &&F, Args &&...ArgList) { in async()
112 ThreadPoolTaskGroup *Group) { in asyncImpl()
166 ThreadPoolTaskGroup *Group) override { in asyncEnqueue()
246 ThreadPoolTaskGroup *Group) override { in asyncEnqueue()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/MCA/HardwareUnits/
DLSUnit.h79 void addSuccessor(MemoryGroup *Group, bool IsDataDependent) { in addSuccessor()
275 const MemoryGroup &Group = getGroup(GroupID); in isReady() local
283 const MemoryGroup &Group = getGroup(GroupID); in isPending() local
291 const MemoryGroup &Group = getGroup(GroupID); in isWaiting() local
297 const MemoryGroup &Group = getGroup(GroupID); in hasDependentUsers() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/MCA/HardwareUnits/
DLSUnit.h79 void addSuccessor(MemoryGroup *Group, bool IsDataDependent) { in addSuccessor()
275 const MemoryGroup &Group = getGroup(GroupID); in isReady() local
283 const MemoryGroup &Group = getGroup(GroupID); in isPending() local
291 const MemoryGroup &Group = getGroup(GroupID); in isWaiting() local
297 const MemoryGroup &Group = getGroup(GroupID); in hasDependentUsers() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/MCA/HardwareUnits/
DLSUnit.h79 void addSuccessor(MemoryGroup *Group, bool IsDataDependent) { in addSuccessor()
275 const MemoryGroup &Group = getGroup(GroupID); in isReady() local
283 const MemoryGroup &Group = getGroup(GroupID); in isPending() local
291 const MemoryGroup &Group = getGroup(GroupID); in isWaiting() local
297 const MemoryGroup &Group = getGroup(GroupID); in hasDependentUsers() local
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/MCA/HardwareUnits/
H A DLSUnit.h82 void addSuccessor(MemoryGroup *Group, bool IsDataDependent) { in addSuccessor()
278 const MemoryGroup &Group = getGroup(GroupID); in isReady() local
286 const MemoryGroup &Group = getGroup(GroupID); in isPending() local
294 const MemoryGroup &Group = getGroup(GroupID); in isWaiting() local
300 const MemoryGroup &Group = getGroup(GroupID); in hasDependentUsers() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/
H A DLSUnit.h80 void addSuccessor(MemoryGroup *Group) { in addSuccessor()
252 const MemoryGroup &Group = getGroup(GroupID); in isReady() local
260 const MemoryGroup &Group = getGroup(GroupID); in isPending() local
268 const MemoryGroup &Group = getGroup(GroupID); in isWaiting() local
274 const MemoryGroup &Group = getGroup(GroupID); in hasDependentUsers() local

12345678910>>...39