Home
last modified time | relevance | path

Searched refs:mutexLocked (Results 1 – 25 of 89) sorted by relevance

1234

/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
91 if old&(mutexLocked|mutexStarving) != 0 {
117 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
133 new |= mutexLocked
135 if old&(mutexLocked|mutexStarving) != 0 {
142 if starving && old&mutexLocked != 0 {
154 if old&(mutexLocked|mutexStarving) == 0 {
173 delta := int32(mutexLocked - 1<<mutexWaiterShift)
210 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/lang/gcc8/gcc-8.5.0/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
89 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
105 new |= mutexLocked
107 if old&(mutexLocked|mutexStarving) != 0 {
114 if starving && old&mutexLocked != 0 {
126 if old&(mutexLocked|mutexStarving) == 0 {
142 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
145 delta := int32(mutexLocked - 1<<mutexWaiterShift)
182 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
89 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
105 new |= mutexLocked
107 if old&(mutexLocked|mutexStarving) != 0 {
114 if starving && old&mutexLocked != 0 {
126 if old&(mutexLocked|mutexStarving) == 0 {
142 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
145 delta := int32(mutexLocked - 1<<mutexWaiterShift)
182 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
89 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
105 new |= mutexLocked
107 if old&(mutexLocked|mutexStarving) != 0 {
114 if starving && old&mutexLocked != 0 {
126 if old&(mutexLocked|mutexStarving) == 0 {
142 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
145 delta := int32(mutexLocked - 1<<mutexWaiterShift)
182 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
89 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
105 new |= mutexLocked
107 if old&(mutexLocked|mutexStarving) != 0 {
114 if starving && old&mutexLocked != 0 {
126 if old&(mutexLocked|mutexStarving) == 0 {
142 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
145 delta := int32(mutexLocked - 1<<mutexWaiterShift)
182 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/devel/riscv64-gcc/gcc-8.3.0/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
89 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
105 new |= mutexLocked
107 if old&(mutexLocked|mutexStarving) != 0 {
114 if starving && old&mutexLocked != 0 {
126 if old&(mutexLocked|mutexStarving) == 0 {
142 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
145 delta := int32(mutexLocked - 1<<mutexWaiterShift)
182 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
89 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
105 new |= mutexLocked
107 if old&(mutexLocked|mutexStarving) != 0 {
114 if starving && old&mutexLocked != 0 {
126 if old&(mutexLocked|mutexStarving) == 0 {
142 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
145 delta := int32(mutexLocked - 1<<mutexWaiterShift)
182 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/lang/gcc9-devel/gcc-9-20211007/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
89 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
105 new |= mutexLocked
107 if old&(mutexLocked|mutexStarving) != 0 {
114 if starving && old&mutexLocked != 0 {
126 if old&(mutexLocked|mutexStarving) == 0 {
142 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
145 delta := int32(mutexLocked - 1<<mutexWaiterShift)
182 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
89 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
105 new |= mutexLocked
107 if old&(mutexLocked|mutexStarving) != 0 {
114 if starving && old&mutexLocked != 0 {
126 if old&(mutexLocked|mutexStarving) == 0 {
142 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
145 delta := int32(mutexLocked - 1<<mutexWaiterShift)
182 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/lang/gcc9/gcc-9.4.0/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
89 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
105 new |= mutexLocked
107 if old&(mutexLocked|mutexStarving) != 0 {
114 if starving && old&mutexLocked != 0 {
126 if old&(mutexLocked|mutexStarving) == 0 {
142 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
145 delta := int32(mutexLocked - 1<<mutexWaiterShift)
182 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/lang/gcc9-aux/gcc-9.1.0/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
89 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
105 new |= mutexLocked
107 if old&(mutexLocked|mutexStarving) != 0 {
114 if starving && old&mutexLocked != 0 {
126 if old&(mutexLocked|mutexStarving) == 0 {
142 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
145 delta := int32(mutexLocked - 1<<mutexWaiterShift)
182 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
93 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
109 new |= mutexLocked
111 if old&(mutexLocked|mutexStarving) != 0 {
118 if starving && old&mutexLocked != 0 {
130 if old&(mutexLocked|mutexStarving) == 0 {
146 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
149 delta := int32(mutexLocked - 1<<mutexWaiterShift)
186 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/lang/gcc10/gcc-10.3.0/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
93 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
109 new |= mutexLocked
111 if old&(mutexLocked|mutexStarving) != 0 {
118 if starving && old&mutexLocked != 0 {
130 if old&(mutexLocked|mutexStarving) == 0 {
146 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
149 delta := int32(mutexLocked - 1<<mutexWaiterShift)
186 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/lang/go-devel/go-dragonfly-amd64-bootstrap/src/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
93 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
109 new |= mutexLocked
111 if old&(mutexLocked|mutexStarving) != 0 {
118 if starving && old&mutexLocked != 0 {
130 if old&(mutexLocked|mutexStarving) == 0 {
146 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
149 delta := int32(mutexLocked - 1<<mutexWaiterShift)
186 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/lang/gcc11/gcc-11.2.0/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
93 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
109 new |= mutexLocked
111 if old&(mutexLocked|mutexStarving) != 0 {
118 if starving && old&mutexLocked != 0 {
130 if old&(mutexLocked|mutexStarving) == 0 {
146 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
149 delta := int32(mutexLocked - 1<<mutexWaiterShift)
186 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
93 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
109 new |= mutexLocked
111 if old&(mutexLocked|mutexStarving) != 0 {
118 if starving && old&mutexLocked != 0 {
130 if old&(mutexLocked|mutexStarving) == 0 {
146 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
149 delta := int32(mutexLocked - 1<<mutexWaiterShift)
186 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
93 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
109 new |= mutexLocked
111 if old&(mutexLocked|mutexStarving) != 0 {
118 if starving && old&mutexLocked != 0 {
130 if old&(mutexLocked|mutexStarving) == 0 {
146 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
149 delta := int32(mutexLocked - 1<<mutexWaiterShift)
186 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/devel/avr-gcc/gcc-10.2.0/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
93 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
109 new |= mutexLocked
111 if old&(mutexLocked|mutexStarving) != 0 {
118 if starving && old&mutexLocked != 0 {
130 if old&(mutexLocked|mutexStarving) == 0 {
146 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
149 delta := int32(mutexLocked - 1<<mutexWaiterShift)
186 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/lang/gcc10-devel/gcc-10-20211008/libgo/go/sync/
H A Dmutex.go37 mutexLocked = 1 << iota // mutex is locked const
74 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
93 if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
109 new |= mutexLocked
111 if old&(mutexLocked|mutexStarving) != 0 {
118 if starving && old&mutexLocked != 0 {
130 if old&(mutexLocked|mutexStarving) == 0 {
146 if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
149 delta := int32(mutexLocked - 1<<mutexWaiterShift)
186 new := atomic.AddInt32(&m.state, -mutexLocked)
[all …]
/dports/devel/mingw32-gcc/gcc-4.8.1/libgo/go/sync/
H A Dmutex.go33 mutexLocked = 1 << iota // mutex is locked const
43 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
53 new := old | mutexLocked
54 if old&mutexLocked != 0 {
63 if old&mutexLocked == 0 {
88 new := atomic.AddInt32(&m.state, -mutexLocked)
89 if (new+mutexLocked)&mutexLocked == 0 {
97 if old>>mutexWaiterShift == 0 || old&(mutexLocked|mutexWoken) != 0 {
/dports/lang/gcc48/gcc-4.8.5/libgo/go/sync/
H A Dmutex.go33 mutexLocked = 1 << iota // mutex is locked const
43 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
53 new := old | mutexLocked
54 if old&mutexLocked != 0 {
63 if old&mutexLocked == 0 {
89 new := atomic.AddInt32(&m.state, -mutexLocked)
90 if (new+mutexLocked)&mutexLocked == 0 {
98 if old>>mutexWaiterShift == 0 || old&(mutexLocked|mutexWoken) != 0 {
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libgo/go/sync/
H A Dmutex.go33 mutexLocked = 1 << iota // mutex is locked const
43 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
53 new := old | mutexLocked
54 if old&mutexLocked != 0 {
63 if old&mutexLocked == 0 {
89 new := atomic.AddInt32(&m.state, -mutexLocked)
90 if (new+mutexLocked)&mutexLocked == 0 {
98 if old>>mutexWaiterShift == 0 || old&(mutexLocked|mutexWoken) != 0 {
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llgo/third_party/gofrontend/libgo/go/sync/
H A Dmutex.go33 mutexLocked = 1 << iota // mutex is locked const
43 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
54 new := old | mutexLocked
55 if old&mutexLocked != 0 {
79 if old&mutexLocked == 0 {
106 new := atomic.AddInt32(&m.state, -mutexLocked)
107 if (new+mutexLocked)&mutexLocked == 0 {
115 if old>>mutexWaiterShift == 0 || old&(mutexLocked|mutexWoken) != 0 {
/dports/lang/gcc6-aux/gcc-6-20180516/libgo/go/sync/
H A Dmutex.go34 mutexLocked = 1 << iota // mutex is locked const
44 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
55 new := old | mutexLocked
56 if old&mutexLocked != 0 {
80 if old&mutexLocked == 0 {
107 new := atomic.AddInt32(&m.state, -mutexLocked)
108 if (new+mutexLocked)&mutexLocked == 0 {
116 if old>>mutexWaiterShift == 0 || old&(mutexLocked|mutexWoken) != 0 {
/dports/lang/gnat_util/gcc-6-20180516/libgo/go/sync/
H A Dmutex.go34 mutexLocked = 1 << iota // mutex is locked const
44 if atomic.CompareAndSwapInt32(&m.state, 0, mutexLocked) {
55 new := old | mutexLocked
56 if old&mutexLocked != 0 {
80 if old&mutexLocked == 0 {
107 new := atomic.AddInt32(&m.state, -mutexLocked)
108 if (new+mutexLocked)&mutexLocked == 0 {
116 if old>>mutexWaiterShift == 0 || old&(mutexLocked|mutexWoken) != 0 {

1234