Tagged Questions
The unsafe-pointers tag has no wiki summary.
4
votes
13answers
1k views
Should I rewrite my DSP routines in C/C++ or I'm good with C# unsafe pointers?
I'm currently writing a C# application that does a lot of digital signal processing, which involves a lot of small fine-tuned memory xfer operations. I wrote these routines using unsafe pointers and ...
3
votes
2answers
376 views
Unsafe Pointer iteration and Bitmap - why is UInt64 faster?
I have been doing some unsafe bitmap operations and have found out that increasing the pointer less times can lead to some big performance improvements. I am not sure why is that so, even though you ...
3
votes
2answers
233 views
Dynamically setting value on array of pointers to integers
I have a multidimentional array of pointers to integer (of unknown rank) being passed into my function as such:
public unsafe static void MyMethod(Array source, ...)
{
//...
}
...
1
vote
2answers
81 views
Write/read memory using Unsafe in java
I know it is possible to write and read directly to memory by using Unsafe class within the jvm.
Apart from this being really unsafe and somehow counterproductive, I was instead wondering who/what is ...
1
vote
1answer
143 views
When is a fixed size array allocated on the stack?
I have the following method to copy bytes from a socket stream to disk:
public static void CopyStream(Stream input, Stream output)
{
// Insert null checking here for production
byte[] ...
1
vote
3answers
111 views
Pass a pointer to an array section as a parameter in C#
I'm just learning neural networks and I would like to have the neuron's constructor receive a pointer to a section in an array that would be the chromosome. Something like this:
public int* ...
1
vote
1answer
337 views
Custom Weak/Strong Reference Pointers
I am creating my own implementation of a weak/strong reference pointer relationship and I am confused to the configuration. When I have a class that contains the strong reference, and I want to set ...
1
vote
2answers
465 views
Run a C# application, complied with “Allow unsafe code” setting, from a network location
My C# application uses pointers and hence is complied using the "Allow Unsafe Code" setting.
I know that it is quite difficult or not possible at all to run such an application from a network ...
1
vote
1answer
527 views
Locked pointer when locking a rectangle in a C# Bitmap
This may be a repeat of the following unanswered question:
Help with bitmap lock - Format8bppIndexed
I'm locking an image in the following manner:
// PixelFormat is 8BppIndexed in my case.
...
0
votes
2answers
317 views
C#: Saving a delegate from garbage collection (static no option)
I am currently using a static delegate in a wrapper class for a C dll to avoid that the delegate, which points to a unsafe function, gets garbaged collected. This was working fine until I have now the ...
0
votes
3answers
124 views
What are these so-called 'disasters' that improper use of pointers can cause?
I've been using pointers more and more in my programs, and while reading up about pointers, every single guide or tutorial I found said that incorrect use of pointers could yield 'disastrous' results.
...
0
votes
6answers
235 views
How to convert List<Double> to Byte[] in C#
Convertion from Double[] src to Byte[] dst
can be efficiently done in C# by fixed pointers:
fixed( Double* pSrc = src)
{
fixed( Byte* pDst = dst)
{
Byte* ps = (Byte*)pSrc;
for (int i=0; i ...
0
votes
4answers
162 views
Do classes with uninitialized pointers have undefined behavior?
class someClass
{
public:
int* ptr2Int;
};
Is this a valid class (yes it compiles)? Provided one assigns a value to ptr2Int before dereferencing it, is the class guaranteed to work as one would ...
0
votes
3answers
170 views
Assign a reference of an integer in a class
Is it possible to pass an integer as reference at class initialization and safe the reference?
class Foo {
private int _refVal;
public Foo(ref int val) {
_refval = val; // saves the ...
0
votes
3answers
1k views
How to read string from pointer to buffer in C#
How can I read the error string in C# from this C++ dll call?
//
// PARAMETERS:
// objptr
// Pointer to class instance.
//
// pBuffer
// Pointer to buffer receiving NULL terminated error ...
0
votes
2answers
516 views
dereference and advance pointer in one statement?
I'm reading from a byte array as follows:
int* i = (int*)p;
id = *i;
i++;
correct me if I'm wrong, but ++ has precedence over *, so is possible to combine the *i and i++ in the same statement? ...
-1
votes
2answers
566 views
Weak/Strong Reference Pointer Relationship
I have been attempting to write my own weak/strong pointer's but I am not clearly understanding the relationship. Everything I seem to come across does not make it and clear and quite often one doc ...
-1
votes
3answers
135 views
system crash after declaring global object of the class
i am very new to c++. i am getting system crash (not compilation error) in doing following:
i am declaring global pointer of class.
BGiftConfigFile *bgiftConfig;
class BGiftConfigFile : public ...