Home
last modified time | relevance | path

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

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Threading.Overlapped/src/System/Threading/
H A DClrThreadPoolBoundHandle.cs159 …ped overlapped = new ThreadPoolBoundHandleOverlapped(callback, state, pinData, preAllocated: null); in AllocateNativeOverlapped()
193 … public unsafe NativeOverlapped* AllocateNativeOverlapped(PreAllocatedOverlapped preAllocated) in AllocateNativeOverlapped() argument
195 if (preAllocated == null) in AllocateNativeOverlapped()
196 throw new ArgumentNullException(nameof(preAllocated)); in AllocateNativeOverlapped()
200 preAllocated.AddRef(); in AllocateNativeOverlapped()
203 ThreadPoolBoundHandleOverlapped overlapped = preAllocated._overlapped; in AllocateNativeOverlapped()
206 … throw new ArgumentException(SR.Argument_PreAllocatedAlreadyAllocated, nameof(preAllocated)); in AllocateNativeOverlapped()
214 preAllocated.Release(); in AllocateNativeOverlapped()
H A DClrThreadPoolBoundHandleOverlapped.cs21 …d(IOCompletionCallback callback, object state, object pinData, PreAllocatedOverlapped preAllocated) in ThreadPoolBoundHandleOverlapped() argument
25 _preAllocated = preAllocated; in ThreadPoolBoundHandleOverlapped()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/Threading/
H A DWin32ThreadPoolBoundHandle.cs75 …verlapped = Win32ThreadPoolNativeOverlapped.Allocate(callback, state, pinData, preAllocated: null); in AllocateNativeOverlapped()
90 … public unsafe NativeOverlapped* AllocateNativeOverlapped(PreAllocatedOverlapped preAllocated) in AllocateNativeOverlapped() argument
92 if (preAllocated == null) in AllocateNativeOverlapped()
93 throw new ArgumentNullException(nameof(preAllocated)); in AllocateNativeOverlapped()
100 addedRefToPreAllocated = preAllocated.AddRef(); in AllocateNativeOverlapped()
102 … Win32ThreadPoolNativeOverlapped.OverlappedData data = preAllocated._overlapped->Data; in AllocateNativeOverlapped()
104 … throw new ArgumentException(SR.Argument_PreAllocatedAlreadyAllocated, nameof(preAllocated)); in AllocateNativeOverlapped()
110 return Win32ThreadPoolNativeOverlapped.ToNativeOverlapped(preAllocated._overlapped); in AllocateNativeOverlapped()
115 preAllocated.Release(); in AllocateNativeOverlapped()
H A DWin32ThreadPoolNativeOverlapped.cs43 …e(IOCompletionCallback callback, object state, object pinData, PreAllocatedOverlapped preAllocated) in Allocate()
48 overlapped->SetData(callback, state, pinData, preAllocated); in Allocate()
127 …a(IOCompletionCallback callback, object state, object pinData, PreAllocatedOverlapped preAllocated) in SetData()
136 data._preAllocated = preAllocated; in SetData()
/dports/math/reduce/Reduce-svn5758-src/jslisp/src/java/org/mathpiper/mpreduce/numbers/
H A DLispInteger.java51 return LispSmallInteger.preAllocated[value - LispSmallInteger.MIN]; in valueOf()
61 return LispSmallInteger.preAllocated[ in valueOf()
74 return LispSmallInteger.preAllocated[n - LispSmallInteger.MIN]; in valueOf()
H A DLispSmallInteger.java61 static LispSmallInteger [] preAllocated = new LispSmallInteger[MAX-MIN+1]; field in LispSmallInteger
66 preAllocated[i-MIN] = new LispSmallInteger(i); in preAllocate()
/dports/math/reduce/Reduce-svn5758-src/jlisp/core/
H A DLispInteger.java52 return LispSmallInteger.preAllocated[value - LispSmallInteger.MIN]; in valueOf()
62 return LispSmallInteger.preAllocated[ in valueOf()
75 return LispSmallInteger.preAllocated[n - LispSmallInteger.MIN]; in valueOf()
H A DLispSmallInteger.java57 static LispSmallInteger [] preAllocated = new LispSmallInteger[MAX-MIN+1]; field in LispSmallInteger
62 preAllocated[i-MIN] = new LispSmallInteger(i); in preAllocate()
/dports/math/reduce/Reduce-svn5758-src/jlisp/android/AndroidReduce/src/uk/co/codemist/jlisp/
H A DLispInteger.java51 return LispSmallInteger.preAllocated[value - LispSmallInteger.MIN]; in valueOf()
61 return LispSmallInteger.preAllocated[ in valueOf()
74 return LispSmallInteger.preAllocated[n - LispSmallInteger.MIN]; in valueOf()
H A DLispSmallInteger.java57 static LispSmallInteger [] preAllocated = new LispSmallInteger[MAX-MIN+1]; field in LispSmallInteger
62 preAllocated[i-MIN] = new LispSmallInteger(i); in preAllocate()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/corert/
H A DThreadPoolBoundHandle.cs24 …g.NativeOverlapped* AllocateNativeOverlapped (System.Threading.PreAllocatedOverlapped preAllocated) in AllocateNativeOverlapped() argument
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Threading.Overlapped/ref/
H A DSystem.Threading.Overlapped.cs34 …ped* AllocateNativeOverlapped(System.Threading.PreAllocatedOverlapped preAllocated) { throw null; } in AllocateNativeOverlapped() argument
/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/hud/
H A Dhudparse.cpp1215 std::unique_ptr<T> gauge_load_common(gauge_settings* settings, T* preAllocated = NULL) in gauge_load_common() argument
1340 std::unique_ptr<T> instance(preAllocated); in gauge_load_common()
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/code/hud/
H A Dhudparse.cpp1101 bool set_position = true, bool set_colour = true, bool slew = false, T* preAllocated = NULL) in gauge_load_common() argument
1218 T* instance = preAllocated; in gauge_load_common()
/dports/security/wolfssl/wolfssl-5.1.0/src/
H A Dssl.c34966 int preAllocated = 1; in wolfSSL_i2d_DSAparams() local
34986 preAllocated = 0; in wolfSSL_i2d_DSAparams()
34995 if (ret >= 0 && preAllocated == 1) { in wolfSSL_i2d_DSAparams()
34999 if (ret < 0 && preAllocated == 0) { in wolfSSL_i2d_DSAparams()
/dports/databases/mariadb105-client/mariadb-10.5.15/extra/wolfssl/wolfssl/src/
H A Dssl.c34966 int preAllocated = 1; in wolfSSL_i2d_DSAparams() local
34986 preAllocated = 0; in wolfSSL_i2d_DSAparams()
34995 if (ret >= 0 && preAllocated == 1) { in wolfSSL_i2d_DSAparams()
34999 if (ret < 0 && preAllocated == 0) { in wolfSSL_i2d_DSAparams()
/dports/databases/mariadb104-server/mariadb-10.4.24/extra/wolfssl/wolfssl/src/
H A Dssl.c34966 int preAllocated = 1; in wolfSSL_i2d_DSAparams() local
34986 preAllocated = 0; in wolfSSL_i2d_DSAparams()
34995 if (ret >= 0 && preAllocated == 1) { in wolfSSL_i2d_DSAparams()
34999 if (ret < 0 && preAllocated == 0) { in wolfSSL_i2d_DSAparams()
/dports/databases/mariadb104-client/mariadb-10.4.24/extra/wolfssl/wolfssl/src/
H A Dssl.c34966 int preAllocated = 1; in wolfSSL_i2d_DSAparams() local
34986 preAllocated = 0; in wolfSSL_i2d_DSAparams()
34995 if (ret >= 0 && preAllocated == 1) { in wolfSSL_i2d_DSAparams()
34999 if (ret < 0 && preAllocated == 0) { in wolfSSL_i2d_DSAparams()
/dports/databases/mariadb105-server/mariadb-10.5.15/extra/wolfssl/wolfssl/src/
H A Dssl.c34966 int preAllocated = 1; in wolfSSL_i2d_DSAparams() local
34986 preAllocated = 0; in wolfSSL_i2d_DSAparams()
34995 if (ret >= 0 && preAllocated == 1) { in wolfSSL_i2d_DSAparams()
34999 if (ret < 0 && preAllocated == 0) { in wolfSSL_i2d_DSAparams()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A Dmscorlib.cs23555 …ped* AllocateNativeOverlapped(System.Threading.PreAllocatedOverlapped preAllocated) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/
H A Dmscorlib.cs23697 …ped* AllocateNativeOverlapped(System.Threading.PreAllocatedOverlapped preAllocated) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/
H A Dmscorlib.cs25100 …ped* AllocateNativeOverlapped(System.Threading.PreAllocatedOverlapped preAllocated) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monodroid/
H A Dmscorlib.cs24842 …ped* AllocateNativeOverlapped(System.Threading.PreAllocatedOverlapped preAllocated) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/
H A Dmscorlib.cs24984 …ped* AllocateNativeOverlapped(System.Threading.PreAllocatedOverlapped preAllocated) { throw null; }
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7.1/
H A Dmscorlib.cs26115 …ped* AllocateNativeOverlapped(System.Threading.PreAllocatedOverlapped preAllocated) { throw null; }