Home
last modified time | relevance | path

Searched defs:Chan (Results 1 – 25 of 43) sorted by relevance

12

/aosp_15_r20/prebuilts/go/linux-x86/test/ken/
Dchan.go25 type Chan struct { struct
26 sc, rc chan int // send and recv chan
27 sv, rv int // send and recv seq
77 func (c *Chan) send() bool {
90 func send(c *Chan) {
103 func (c *Chan) recv(v int) bool {
116 func recv(c *Chan) {
131 func sel(r0, r1, r2, r3, s0, s1, s2, s3 *Chan) {
208 func test1(c *Chan) {
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/sync/mpsc/
Dchan.rs52 pub(super) struct Chan<T, S> { struct
77 impl<T, S> fmt::Debug for Chan<T, S> argument
110 unsafe impl<T: Send, S: Send> Send for Chan<T, S> {} implementation
111 unsafe impl<T: Send, S: Sync> Sync for Chan<T, S> {} implementation
112 impl<T, S> panic::RefUnwindSafe for Chan<T, S> {} implementation
113 impl<T, S> panic::UnwindSafe for Chan<T, S> {} implementation
503 impl<T, S> Chan<T, S> { impl
529 impl<T, S> Drop for Chan<T, S> { implementation
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/types2/
Dchan.go8 type Chan struct { struct
9 dir ChanDir
10 elem Type
29 func (c *Chan) Dir() ChanDir { return c.dir }
32 func (c *Chan) Elem() Type { return c.elem }
34 func (c *Chan) Underlying() Type { return c }
35 func (c *Chan) String() string { return TypeString(c, nil) }
/aosp_15_r20/prebuilts/go/linux-x86/src/go/types/
Dchan.go11 type Chan struct { struct
12 dir ChanDir
13 elem Type
32 func (c *Chan) Dir() ChanDir { return c.dir }
35 func (c *Chan) Elem() Type { return c.elem }
37 func (c *Chan) Underlying() Type { return c }
38 func (c *Chan) String() string { return TypeString(c, nil) }
/aosp_15_r20/prebuilts/go/linux-x86/test/
Dclosedchan.go18 type Chan interface { interface
227 func test1(c Chan) {
269 func testasync1(c Chan) {
279 func testasync2(c Chan) {
289 func testasync3(c Chan) {
299 func testasync4(c Chan) {
Dnamed.go14 type Chan chan int type
25 func asChan(Chan) {} argument
Dtypeswitch.go19 Chan const
/aosp_15_r20/external/llvm/lib/Target/AMDGPU/
H A DR600ExpandSpecialInstrs.cpp125 for (unsigned Chan = 0; Chan < 4; ++Chan) { in runOnMachineFunction() local
154 for (unsigned Chan = 0; Chan < 4; ++Chan) { in runOnMachineFunction() local
185 for (unsigned Chan = 0; Chan < 4; ++Chan) { in runOnMachineFunction() local
205 for (unsigned Chan = 0; Chan < 4; ++Chan) { in runOnMachineFunction() local
271 for (unsigned Chan = 0; Chan < 4; Chan++) { in runOnMachineFunction() local
H A DR600OptimizeVectorRegisters.cpp72 unsigned Chan = Instr->getOperand(i + 1).getImm(); in RegSeqInfo() local
171 unsigned Chan) { in getReassignedChan()
195 unsigned Chan = getReassignedChan(RemapChan, Swizzle); in RebuildVector() local
H A DR600InstrInfo.cpp373 unsigned Chan = RI.getHWRegChan(Reg); in ExtractSrcs() local
639 unsigned Chan = RI.getHWRegChan(Src.first->getReg()); in fitsConstReadLimitations() local
1122 for (unsigned Chan = 0; Chan < StackWidth; ++Chan) { in reserveIndirectRegisters() local
H A DR600EmitClauseMarkers.cpp135 unsigned Chan = Sel & 3, Index = ((Sel >> 2) - 512) & 31; in SubstituteKCacheBank() local
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/sync/tests/
Dloom_atomic_waker.rs11 struct Chan { struct
21 let chan = Arc::new(Chan { in basic_notification() argument
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AMDGPU/
H A DR600OptimizeVectorRegisters.cpp59 unsigned Chan = Instr->getOperand(i + 1).getImm(); in RegSeqInfo() local
173 unsigned Chan) { in getReassignedChan()
196 unsigned Chan = getReassignedChan(RemapChan, Swizzle); in RebuildVector() local
H A DR600ExpandSpecialInstrs.cpp129 for (unsigned Chan = 0; Chan < 4; ++Chan) { in runOnMachineFunction() local
195 for (unsigned Chan = 0; Chan < 4; Chan++) { in runOnMachineFunction() local
H A DR600InstrInfo.cpp341 unsigned Chan = RI.getHWRegChan(Reg); in ExtractSrcs() local
600 unsigned Chan = RI.getHWRegChan(Src.first->getReg()); in fitsConstReadLimitations() local
1076 for (unsigned Chan = 0; Chan < StackWidth; ++Chan) { in reserveIndirectRegisters() local
H A DR600EmitClauseMarkers.cpp131 unsigned Chan = Sel & 3, Index = ((Sel >> 2) - 512) & 31; in SubstituteKCacheBank() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DR600OptimizeVectorRegisters.cpp79 unsigned Chan = Instr->getOperand(i + 1).getImm(); in RegSeqInfo() local
189 unsigned Chan) { in getReassignedChan()
213 unsigned Chan = getReassignedChan(RemapChan, Swizzle); in RebuildVector() local
H A DR600ExpandSpecialInstrs.cpp141 for (unsigned Chan = 0; Chan < 4; ++Chan) { in runOnMachineFunction() local
207 for (unsigned Chan = 0; Chan < 4; Chan++) { in runOnMachineFunction() local
H A DR600InstrInfo.cpp365 unsigned Chan = RI.getHWRegChan(Reg); in ExtractSrcs() local
627 unsigned Chan = RI.getHWRegChan(Src.first->getReg()); in fitsConstReadLimitations() local
1102 for (unsigned Chan = 0; Chan < StackWidth; ++Chan) { in reserveIndirectRegisters() local
/aosp_15_r20/external/rust/android-crates-io/crates/crossbeam-channel/tests/
Dgolang.rs29 struct Chan<T> { struct
30 inner: Arc<Mutex<ChanInner<T>>>, argument
44 impl<T> Clone for Chan<T> { implementation
52 impl<T> Chan<T> { impl
118 impl<T> Iterator for Chan<T> { implementation
126 impl<'a, T> IntoIterator for &'a Chan<T> { implementation
/aosp_15_r20/external/swiftshader/src/System/
H A DSynchronization.hpp109 class Chan class
139 Chan<T>::Chan() in Chan() function in sw::Chan
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/types/testdata/spec/
Dassignability.go88 CC Chan,
234 Chan _Chan talias
/aosp_15_r20/prebuilts/go/linux-x86/test/typeparam/
Dissue47901.go9 type Chan[T any] chan Chan[T] type
/aosp_15_r20/prebuilts/go/linux-x86/src/net/http/
Dtriv.go88 type Chan chan int type
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/types/
Dtype.go401 type Chan struct { struct
402 Elem *Type // element type
403 Dir ChanDir // channel direction

12