Tagged Questions
17
votes
5answers
273 views
Why can it be dangerous to use this POD struct as a base class?
I had this conversation with a colleague, and it turned out to be interesting. Say we have the following POD class
struct A {
void clear() { memset(this, 0, sizeof(A)); }
int age;
char ...
15
votes
7answers
458 views
Why is memset() incorrectly initializing int?
Why is the output of the following program 84215045?
int grid[110];
int main()
{
memset(grid, 5, 100 * sizeof(int));
printf("%d", grid[0]);
return 0;
}
11
votes
5answers
2k views
How to use VC++ intrinsic functions w/o run-time library
I'm involved in one of those challenges where you try to produce the smallest possible binary, so I'm building my program without the C or C++ run-time libraries (RTL). I don't link to the DLL ...
11
votes
9answers
5k views
Should C++ programmer avoid memset?
I heard a saying that c++ programmers should avoid memset,
class ArrInit {
//! int a[1024] = { 0 };
int a[1024];
public:
ArrInit() { memset(a, 0, 1024 * sizeof(int)); }
};
so ...
5
votes
4answers
842 views
Using memset on structures in C++
Hey guys. I am working on fixing older code for my job. It is currently written in C++. They converted static allocation to dynamic but didn't edit the memsets/memcmp/memcpy. This is my first ...
5
votes
7answers
2k views
C memset seems to not write to every member
I wrote a small coordinate class to handle both int and float coordinates.
template <class T>
class vector2
{
public:
vector2() { memset(this, 0, sizeof(this)); }
T x;
T y;
};
...
3
votes
2answers
111 views
memset is causing a crash on std::string assignments
I have code that works on Windows, but now that I am porting to a MAC, using Xcode 3.2.5 C/C++ Compiler Version GCC 4.2, it crashes.
I have narrowed it down to a memset call. If I comment out the ...
3
votes
6answers
313 views
Why memset() does not work properly when placed inside a loop body?
Yesterday I programmed a small piece code in C++ which contains a loop and an array. In the program I need to reset the array every time the loop starts over. However, if I use
...
3
votes
4answers
611 views
C++ Memory Allocation & Linked List Implementation
I'm writing software to simulate the "first-fit" memory allocation schema.
Basically, I allocate a large X megabyte chunk of memory and subdivide it into blocks when chunks are requested according to ...
3
votes
8answers
2k views
C++ equivalent for memset on char*
char * oldname = new char[strlen(name) + 1];
memcpy(oldname,name,strlen(name) + 1);
name = new char[strlen(oldname) + strlen(r.name) + 1];
memset(name, '\0', strlen(name));
...
2
votes
1answer
467 views
Problem with memset after an instance of a user defined class is created and a file is opened
I'm having a weird problem with memset, that was something to do with a class I'm creating before it and a file I'm opening in the constructor. The class I'm working with normally reads in an array ...
1
vote
1answer
39 views
Assigning and retrieving bit-wise memory value for Genetic Algo
I came across this code for developing a class for GA/GP but failed to understand it and hence unable debug the program.
typedef struct {
void *dataPointer;
int length;
} binary_data;
...
1
vote
4answers
139 views
C++ memset() for long (64bit) types [closed]
Possible Duplicate:
Is there memset() that accepts integers larger than char?
As it can be seen in memset's declaration:
void * memset ( void * ptr, int value, size_t num );
Is there any ...
1
vote
4answers
142 views
zeroing derived struct using memset
I want to zero out all members of a derived structure.
There are hundreds of members and more are added every once in a while so I feel that initializing them explicitly is error-prone.
The ...
1
vote
5answers
113 views
How can i set same int value to an array of ints
I have a variable:
unsigned int* data = (unsigned int*)malloc(height * width)
I want to set same int to all array values.
I can't use memset because it works with bytes.
How can i do that?
1
vote
7answers
241 views
What is the easiest way to set the value of an entire array?
My current project requires me to fill an array based upon some other values. I know there's the shortcut:
int arr[4][4] = { {0,0,0,0} , {0,0,0,0} , {0,0,0,0} , {0,0,0,0} };
But in this case, I ...
1
vote
5answers
576 views
MemSet & MemCopy
I'm writing a memory allocator, and I need a way to store an integer inside of a chunk of memory. This integer will represent the size of the block so I can navigate to the end given the pointer to ...
1
vote
2answers
356 views
Exception in Memset
When try to do a memset it gives the following exception
"Unhandled exception at 0x1023af7d (PxSmartInterface.dll) in SendOutDllTestExe.exe: 0xC0000005: Access violation writing location 0x40e3a80e."
...
1
vote
9answers
5k views
how to set pointer to a memory to NULL using memset?
I have a structure
typedef struct my_s {
int x;
...
} my_T;
my_t * p_my_t;
I want to set the address of p_my_t to NULL, tried:
memset (&p_my_t, 0, sizeof(my_t*))
This does not look ...
1
vote
2answers
8k views
initialize two dimensional array of pointer elements using memset
I have a these structures definitions
typedef struct my_s {
int x;
int y;
} my_T;
typedef struct your_s {
my_T * x;
} your_T;
your_T array[MAX_COL][MAX_ROW];
To initialize the array's ...
0
votes
2answers
52 views
Using memset with multidimensional arrays in C++
I am trying to use memset to set a dynamic array of size rownum x rownmum. However, when I call the showarr function as shown below, instead of getting the output of all zeros (i.e. ASCII 48), I am ...
0
votes
2answers
123 views
What is the fastest way to zero an existing array?
I have an existing 1 dimensional array, is memset the fastest way to zero it?
0
votes
2answers
76 views
Can u please Explain the output and point out mistake
char FramebufferUpdateRequest[11];
uint16_t val;
memset(FramebufferUpdateRequest, 0, 10);
FramebufferUpdateRequest[0] = 3;
FramebufferUpdateRequest[1] = 1;
val = 3;
memcpy(FramebufferUpdateRequest+6, ...
0
votes
1answer
65 views
How portable is code using wmemset()?
Currently our code uses a for-loop for filling a buffer holding a Unicode string with some Unicode character value (of type wchar_t). There's wmemset() function in Visual C++ using which we could ...
0
votes
5answers
3k views
memset on array of structures in C++
I have another memset question. It appears as if the code I am editing may have some issues (or it's not done the same way in different files)
A::LRM las[9]; //A and LRM are both structures with ...
0
votes
1answer
434 views
Windows Magnification API, .NET and matrices
I'm trying to create a magnifier app in .net using the Windows Magnification API. I've pretty much got everything working except for actually setting the magnification level (which defaults to 100%). ...
0
votes
3answers
1k views
unistd.h read() is reading more data then being written
I'm reading/writing data off of a named pipe. On the writing side it says that it's writing a constant 110 bytes. On the Reading side for the majority of time it says that it's reading 110 bytes which ...