Home
last modified time | relevance | path

Searched refs:SEGMENT_SIZE (Results 1 – 25 of 1024) sorted by relevance

12345678910>>...41

/dports/lang/mono/mono-5.10.1.57/external/rx/Rx/NET/Source/System.Reactive.Core/Reactive/Internal/
H A DConcurrentQueue.cs25 private const int SEGMENT_SIZE = 32; field in System.Collections.Concurrent.ConcurrentQueue
131 m_array = new T[SEGMENT_SIZE]; in Segment()
151 Contract.Assert(m_high < SEGMENT_SIZE - 1); in UnsafeAdd()
159 Contract.Assert(m_high >= SEGMENT_SIZE - 1); in UnsafeGrow()
177 if (m_high >= SEGMENT_SIZE - 1) in TryAppend()
200 if (newhigh <= SEGMENT_SIZE - 1) in TryAppend()
209 if (newhigh == SEGMENT_SIZE - 1) in TryAppend()
216 return newhigh <= SEGMENT_SIZE - 1; in TryAppend()
240 if (lowLocal + 1 >= SEGMENT_SIZE) in TryRemove()
289 return Math.Min(m_low, SEGMENT_SIZE);
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Threading.Tasks.Dataflow/src/Internal/
H A DConcurrentQueue.cs40 private const int SEGMENT_SIZE = 32; field in System.Threading.Tasks.Dataflow.Internal.Collections.ConcurrentQueue
68 if (index >= SEGMENT_SIZE) in InitializeFromCollection()
369 int count = SEGMENT_SIZE - headLow;
652 _array = new T[SEGMENT_SIZE]; in Segment()
687 Debug.Assert(_high < SEGMENT_SIZE - 1); in UnsafeAdd()
703 Debug.Assert(_high >= SEGMENT_SIZE - 1); in UnsafeGrow()
734 if (_high >= SEGMENT_SIZE - 1) in TryAppend()
757 if (newhigh <= SEGMENT_SIZE - 1) in TryAppend()
766 if (newhigh == SEGMENT_SIZE - 1) in TryAppend()
773 return newhigh <= SEGMENT_SIZE - 1; in TryAppend()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/collections/Concurrent/
H A DConcurrentQueue.cs57 private const int SEGMENT_SIZE = 32; field in System.Collections.Concurrent.ConcurrentQueue
87 if (index >= SEGMENT_SIZE) in InitializeFromCollection()
409 int count = SEGMENT_SIZE - headLow;
692 m_array = new T[SEGMENT_SIZE]; in Segment()
727 Contract.Assert(m_high < SEGMENT_SIZE - 1); in UnsafeAdd()
775 if (m_high >= SEGMENT_SIZE - 1) in TryAppend()
798 if (newhigh <= SEGMENT_SIZE - 1) in TryAppend()
807 if (newhigh == SEGMENT_SIZE - 1) in TryAppend()
814 return newhigh <= SEGMENT_SIZE - 1; in TryAppend()
852 if (lowLocal + 1 >= SEGMENT_SIZE) in TryRemove()
[all …]
/dports/cad/stepcode/stepcode-0.8/src/clutils/
H A Dsc_hash.cc22 #define SEGMENT_SIZE 256 macro
98 i = SEGMENT_SIZE; in SC_HASHcreate()
102 count = DIV( i, SEGMENT_SIZE ); in SC_HASHcreate()
117 table->Directory[i] = new struct Element * [SEGMENT_SIZE]; in SC_HASHcreate()
124 table->maxp = MUL( count, SEGMENT_SIZE ); in SC_HASHcreate()
173 for( he->j = j2; he->j < SEGMENT_SIZE; he->j++ ) { in SC_HASHlist()
215 for( j = 0; j < SEGMENT_SIZE; j++ ) { in SC_HASHdestroy()
251 SegmentDir = ( int ) DIV( h, SEGMENT_SIZE ); in SC_HASHsearch()
252 SegmentIndex = ( int ) MOD( h, SEGMENT_SIZE ); in SC_HASHsearch()
353 OldSegmentDir = DIV( table->p, SEGMENT_SIZE ); in SC_HASHexpand_table()
[all …]
/dports/emulators/qemu60/qemu-6.0.0/roms/openbios/include/arch/common/
H A Da.out.h117 #define SEGMENT_SIZE page_size macro
120 #define SEGMENT_SIZE 0x2000 macro
123 #define SEGMENT_SIZE 0x20000 macro
127 #define SEGMENT_SIZE PAGE_SIZE macro
130 #if !defined(SEGMENT_SIZE)
133 #define SEGMENT_SIZE 1024 macro
135 #define SEGMENT_SIZE 0x2000 macro
138 #define SEGMENT_SIZE PAGE_SIZE macro
144 #define _N_SEGMENT_ROUND(x) (((x) + SEGMENT_SIZE - 1) & ~(SEGMENT_SIZE - 1))
/dports/emulators/qemu42/qemu-4.2.1/roms/openbios/include/arch/common/
H A Da.out.h117 #define SEGMENT_SIZE page_size macro
120 #define SEGMENT_SIZE 0x2000 macro
123 #define SEGMENT_SIZE 0x20000 macro
127 #define SEGMENT_SIZE PAGE_SIZE macro
130 #if !defined(SEGMENT_SIZE)
133 #define SEGMENT_SIZE 1024 macro
135 #define SEGMENT_SIZE 0x2000 macro
138 #define SEGMENT_SIZE PAGE_SIZE macro
144 #define _N_SEGMENT_ROUND(x) (((x) + SEGMENT_SIZE - 1) & ~(SEGMENT_SIZE - 1))
/dports/emulators/qemu5/qemu-5.2.0/roms/openbios/include/arch/common/
H A Da.out.h117 #define SEGMENT_SIZE page_size macro
120 #define SEGMENT_SIZE 0x2000 macro
123 #define SEGMENT_SIZE 0x20000 macro
127 #define SEGMENT_SIZE PAGE_SIZE macro
130 #if !defined(SEGMENT_SIZE)
133 #define SEGMENT_SIZE 1024 macro
135 #define SEGMENT_SIZE 0x2000 macro
138 #define SEGMENT_SIZE PAGE_SIZE macro
144 #define _N_SEGMENT_ROUND(x) (((x) + SEGMENT_SIZE - 1) & ~(SEGMENT_SIZE - 1))
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/openbios/include/arch/common/
H A Da.out.h117 #define SEGMENT_SIZE page_size macro
120 #define SEGMENT_SIZE 0x2000 macro
123 #define SEGMENT_SIZE 0x20000 macro
127 #define SEGMENT_SIZE PAGE_SIZE macro
130 #if !defined(SEGMENT_SIZE)
133 #define SEGMENT_SIZE 1024 macro
135 #define SEGMENT_SIZE 0x2000 macro
138 #define SEGMENT_SIZE PAGE_SIZE macro
144 #define _N_SEGMENT_ROUND(x) (((x) + SEGMENT_SIZE - 1) & ~(SEGMENT_SIZE - 1))
/dports/emulators/qemu-utils/qemu-4.2.1/roms/openbios/include/arch/common/
H A Da.out.h117 #define SEGMENT_SIZE page_size macro
120 #define SEGMENT_SIZE 0x2000 macro
123 #define SEGMENT_SIZE 0x20000 macro
127 #define SEGMENT_SIZE PAGE_SIZE macro
130 #if !defined(SEGMENT_SIZE)
133 #define SEGMENT_SIZE 1024 macro
135 #define SEGMENT_SIZE 0x2000 macro
138 #define SEGMENT_SIZE PAGE_SIZE macro
144 #define _N_SEGMENT_ROUND(x) (((x) + SEGMENT_SIZE - 1) & ~(SEGMENT_SIZE - 1))
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/openbios/include/arch/common/
H A Da.out.h117 #define SEGMENT_SIZE page_size macro
120 #define SEGMENT_SIZE 0x2000 macro
123 #define SEGMENT_SIZE 0x20000 macro
127 #define SEGMENT_SIZE PAGE_SIZE macro
130 #if !defined(SEGMENT_SIZE)
133 #define SEGMENT_SIZE 1024 macro
135 #define SEGMENT_SIZE 0x2000 macro
138 #define SEGMENT_SIZE PAGE_SIZE macro
144 #define _N_SEGMENT_ROUND(x) (((x) + SEGMENT_SIZE - 1) & ~(SEGMENT_SIZE - 1))
/dports/emulators/qemu/qemu-6.2.0/roms/openbios/include/arch/common/
H A Da.out.h117 #define SEGMENT_SIZE page_size macro
120 #define SEGMENT_SIZE 0x2000 macro
123 #define SEGMENT_SIZE 0x20000 macro
127 #define SEGMENT_SIZE PAGE_SIZE macro
130 #if !defined(SEGMENT_SIZE)
133 #define SEGMENT_SIZE 1024 macro
135 #define SEGMENT_SIZE 0x2000 macro
138 #define SEGMENT_SIZE PAGE_SIZE macro
144 #define _N_SEGMENT_ROUND(x) (((x) + SEGMENT_SIZE - 1) & ~(SEGMENT_SIZE - 1))
/dports/devel/tigcc/tigcc-0.96.b8_10/gnu/binutils-2.16.1/include/aout/
H A Dhost.h22 #ifndef SEGMENT_SIZE
25 #define SEGMENT_SIZE page_size macro
29 #define SEGMENT_SIZE 0x1000 macro
33 #define SEGMENT_SIZE 0x20000 macro
38 #define SEGMENT_SIZE TARGET_PAGE_SIZE macro
/dports/lang/gnatdroid-binutils-x86/binutils-2.27/include/aout/
H A Dhost.h23 #ifndef SEGMENT_SIZE
26 #define SEGMENT_SIZE page_size macro
30 #define SEGMENT_SIZE 0x1000 macro
34 #define SEGMENT_SIZE 0x20000 macro
39 #define SEGMENT_SIZE TARGET_PAGE_SIZE macro
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/binutils/include/aout/
H A Dhost.h22 #ifndef SEGMENT_SIZE
25 #define SEGMENT_SIZE page_size macro
29 #define SEGMENT_SIZE 0x1000 macro
33 #define SEGMENT_SIZE 0x20000 macro
38 #define SEGMENT_SIZE TARGET_PAGE_SIZE macro
/dports/devel/avr-gdb/gdb-7.3.1/include/aout/
H A Dhost.h23 #ifndef SEGMENT_SIZE
26 #define SEGMENT_SIZE page_size macro
30 #define SEGMENT_SIZE 0x1000 macro
34 #define SEGMENT_SIZE 0x20000 macro
39 #define SEGMENT_SIZE TARGET_PAGE_SIZE macro
/dports/lang/gnatdroid-binutils/binutils-2.27/include/aout/
H A Dhost.h23 #ifndef SEGMENT_SIZE
26 #define SEGMENT_SIZE page_size macro
30 #define SEGMENT_SIZE 0x1000 macro
34 #define SEGMENT_SIZE 0x20000 macro
39 #define SEGMENT_SIZE TARGET_PAGE_SIZE macro
/dports/devel/arm-none-eabi-newlib/newlib-2.4.0/include/aout/
H A Dhost.h23 #ifndef SEGMENT_SIZE
26 #define SEGMENT_SIZE page_size macro
30 #define SEGMENT_SIZE 0x1000 macro
34 #define SEGMENT_SIZE 0x20000 macro
39 #define SEGMENT_SIZE TARGET_PAGE_SIZE macro
/dports/devel/gdb761/gdb-7.6.1/include/aout/
H A Dhost.h23 #ifndef SEGMENT_SIZE
26 #define SEGMENT_SIZE page_size macro
30 #define SEGMENT_SIZE 0x1000 macro
34 #define SEGMENT_SIZE 0x20000 macro
39 #define SEGMENT_SIZE TARGET_PAGE_SIZE macro
/dports/lang/sdcc/sdcc-4.0.0/support/sdbinutils/include/aout/
H A Dhost.h23 #ifndef SEGMENT_SIZE
26 #define SEGMENT_SIZE page_size macro
30 #define SEGMENT_SIZE 0x1000 macro
34 #define SEGMENT_SIZE 0x20000 macro
39 #define SEGMENT_SIZE TARGET_PAGE_SIZE macro
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/binutils/include/aout/
H A Dhost.h22 #ifndef SEGMENT_SIZE
25 #define SEGMENT_SIZE page_size macro
29 #define SEGMENT_SIZE 0x1000 macro
33 #define SEGMENT_SIZE 0x20000 macro
38 #define SEGMENT_SIZE TARGET_PAGE_SIZE macro
/dports/devel/djgpp-binutils/binutils-2.17/include/aout/
H A Dhost.h22 #ifndef SEGMENT_SIZE
25 #define SEGMENT_SIZE page_size macro
29 #define SEGMENT_SIZE 0x1000 macro
33 #define SEGMENT_SIZE 0x20000 macro
38 #define SEGMENT_SIZE TARGET_PAGE_SIZE macro
/dports/lang/gnatdroid-sysroot/android-19-arm/usr/include/linux/
H A Da.out.h107 #define SEGMENT_SIZE page_size macro
110 #define SEGMENT_SIZE 0x2000 macro
113 #define SEGMENT_SIZE 0x20000 macro
117 #define SEGMENT_SIZE PAGE_SIZE macro
123 #define SEGMENT_SIZE 1024 macro
125 #ifndef SEGMENT_SIZE
126 #define SEGMENT_SIZE PAGE_SIZE macro
131 #define _N_SEGMENT_ROUND(x) ALIGN(x, SEGMENT_SIZE)
/dports/lang/gnatdroid-sysroot-x86/android-19-x86/usr/include/linux/
H A Da.out.h107 #define SEGMENT_SIZE page_size macro
110 #define SEGMENT_SIZE 0x2000 macro
113 #define SEGMENT_SIZE 0x20000 macro
117 #define SEGMENT_SIZE PAGE_SIZE macro
123 #define SEGMENT_SIZE 1024 macro
125 #ifndef SEGMENT_SIZE
126 #define SEGMENT_SIZE PAGE_SIZE macro
131 #define _N_SEGMENT_ROUND(x) ALIGN(x, SEGMENT_SIZE)
/dports/security/pam_pwdfile/libpam-pwdfile-1.0/
H A Dbigcrypt.c40 #define SEGMENT_SIZE 8 macro
58 n_seg = (strnlen(key, MAX_SEGMENTS * SEGMENT_SIZE) + SEGMENT_SIZE - 1) / SEGMENT_SIZE; in bigcrypt()
67 key += SEGMENT_SIZE; in bigcrypt()
/dports/lang/gnatdroid-binutils-x86/binutils-2.27/ld/emulparams/
H A Dm68kaux.sh3 SEGMENT_SIZE=0x40000
5 TEXT_START_ADDR="$SEGMENT_SIZE + SIZEOF_HEADERS"
7 DATA_ALIGNMENT_="(. & (-$SEGMENT_SIZE | $TARGET_PAGE_SIZE-1)) + $SEGMENT_SIZE"

12345678910>>...41