Tagged Questions
The memset tag has no wiki summary.
24
votes
10answers
5k views
Fastest way to zero out a 2d array in C?
I want to repeatedly zero a large 2d array in C. This is what I do at the moment:
for(j = 0; j < n; j++)
{
for(i = 0; i < n; i++)
{
array[i][j] = 0;
}
}
I've tried using ...
17
votes
5answers
272 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
456 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;
}
14
votes
4answers
378 views
Why does memset take an int instead of a char?
Why does memset take an int as the second argument instead of a char, whereas wmemset takes a wchar_t instead of something like long or long long?
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 ...
9
votes
5answers
2k views
When zeroing a struct such as sockaddr_in, sockaddr_in6 and addrinfo before use, which is correct: memset, an initializer or either?
Whenever I look at real code or example socket code in books, man pages and websites, I almost always see something like:
struct sockaddr_in foo;
memset(&foo, 0, sizeof foo);
/* or bzero(), ...
7
votes
3answers
144 views
Can memset() be called with a null pointer if the size is 0?
For one reason or another, I want to hand-roll a zeroing version of malloc(). To minimize algorithmic complexity, I want to write:
void * my_calloc(size_t size)
{
return memset(malloc(size), 0, ...
7
votes
6answers
307 views
What is the advantage of using memset() in C
I was curious as to whether or not there was any advantage in regards to efficiency to utilizing memset() in a situation similar to the one below.
Given the following buffer declarations...
struct ...
6
votes
4answers
155 views
C strange array behaviour
After learning that both strncmp is not what it seems to be and strlcpy not being available on my operating system (Linux), I figured I could try and write it myself.
I found a quote from Ulrich ...
5
votes
3answers
116 views
Is it guaranteed that memset will zero out the padding bits in a structure?
In general ,as per C standard is it guaranteed that memset() with 0 will zero out the padding bits in a C structure?
What about gcc?
For example , something like:
struct MyStruct
{
unsigned ...
5
votes
6answers
729 views
How to memset() memory to a certain pattern instead of a single byte?
I am facing today with a problem where I need to change memory to a certain pattern like 0x11223344, so that the whole memory looks like (in hex):
...
5
votes
4answers
834 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;
};
...
4
votes
3answers
812 views
memset not filling array
u32 iterations = 5;
u32* ecx = (u32*)malloc(sizeof(u32) * iterations);
memset(ecx, 0xBAADF00D, sizeof(u32) * iterations);
printf("%.8X\n", ecx[0]);
ecx[0] = 0xBAADF00D;
printf("%.8X\n", ...
4
votes
4answers
3k views
char array vs. char pointer
When receiving data through a socket using recv, I've noticed that, with:
char buffer[4];
memset(buffer, 0, 4);
recv(socket, buffer, 4, 0);
I receive
mesgx��
"mesg" being what I sent, with ...
3
votes
2answers
109 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
243 views
is memset() more efficient than for loop in C?
is memset more efficient than for loop.
so if i have
char x[500];
memset(x,0,sizeof(x));
or
char x[500];
for(int i = 0 ; i < 500 ; i ++) x[i] = 0;
which one is more efficient and why? is ...
3
votes
6answers
311 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
152 views
Is -1 a valid pointer address [closed]
Possible Duplicate:
Can a pointer (address) ever be negative?
I'm considering initialising a structure to all -1s with memset(since it uses
no signed numbers and zero is a valid value).
...
3
votes
4answers
2k views
intializing a structure array using memset
gcc 4.4.4 c89
I have the following structure.
struct device_sys
{
char device[STRING_SIZE];
int id;
char category;
};
int main(void)
{
struct device_sys dev_sys[NUM_DEVICES];
...
3
votes
2answers
699 views
“Use of uninitialised value” despite of memset
I allocate a 2d array and use memset to fill it with zeros.
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
void main() {
int m=10;
int n =10;
int **array_2d;
...
3
votes
4answers
610 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));
...
3
votes
5answers
6k views
C: Using memset function
This is the code that I want to try to write:
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
int main(int argc, char ...
2
votes
9answers
182 views
Pass pointer to guaranteed zeroed memory
I need to zero records of varying sizes in a file. To do this, I'm currently allocating dummy records, memseting them to zero, and passing these to a write function.
Is there some region which is ...
2
votes
4answers
559 views
is memset(ary,0,length) a portable way of inputting zero in double array [closed]
Possible Duplicate:
What is faster/prefered memset or for loop to zero out an array of doubles
The following code uses memset to set all the bits to zero
int length = 5;
double *array = ...
2
votes
6answers
834 views
Problems Using memset and memcpy
So I am trying to create a Memory Management System. In order to do this I have a set amount of space (allocated by malloc) and then I have a function myMalloc which will essentially return a pointer ...
2
votes
1answer
466 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
37 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
137 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
7answers
80 views
Dynamically storing information from a file using C
I'm new to C and trying to learn a few things. What I'm trying to do is read in a file and store the information. Since the format will be a CSV, the plan is to read in each character, determine if ...
1
vote
5answers
101 views
Safely initialize arrays in C in a generic way
I wrote some code that uses memset to initialize arrays of built-in types like ints, shorts, floats and, more importantly, pointers, like
typedef void* slot_t;
#define EMPTY_SLOT (slot_t)NULL
...
int ...
1
vote
3answers
146 views
memset function in c language
I am studying the memset function now, but all the examples are regarding to char array as following:
char a[100];
memset(a, 0, 100);
it will set every element in this char array to 0.
I wondered ...
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
1answer
714 views
String manipulation in Linux kernel module
I am having a hard time in manipulating strings while writing module for linux. My problem is that I have a int Array[10] with different values in it. I need to produce a string to be able send to the ...
1
vote
4answers
190 views
c: pointers - how to increase every 2nd byte by X
I have a pointer that's holding 100 bytes of data.
i would like to add 5 to every 2nd byte.
example:
1 2 3 4 5 6
will become:
1 7 3 9 5 11
Now i know i can do a for loop, is there a quicker ...
1
vote
7answers
240 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
2answers
825 views
Using memcpy/memset
When using memset or memcpy within an Obj-C program, will the compiler optimise the setting (memset) or copying (memcpy) of data into 32-bit writes or will it do it byte by byte?
1
vote
5answers
575 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
355 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
50 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
4answers
82 views
memset + whitespace + memcpy
How can i set a character array say of size 100 to whitespace and then copy 10 charters to that same string from other.
For example:
there is one char array a[100]
To do : set all of it to ...
0
votes
1answer
23 views
memset 'CortexA8' issue under iOS5
Since iOS5 hit the streets I have begun I have been receiving many (so many) crash reports like:
...
Exception Type: SIGSEGV
Exception Codes: SEGV_ACCERR at 0x0
Crashed Thread: 0
Thread 0 Crashed:
...
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
0answers
22 views
memset() behaving undesirably
I am using memset function in C and having a problem. Here is my problem:
char* tail;
tail = //some memory address
int pbytes = 5;
When I call memset like:
**memset(tail+pbytes, 0 , 8); // It ...
0
votes
1answer
40 views
C Memset output
#include <stdio.h>
#include <string.h>
int main() {
char* p = new char[10];
memset(p,0,10);
printf("%c",*p);
}
I suppose memset set every byte starting p to 0. I'm a little ...