memset is a C++ function that sets the first N bytes of the block of memory to the specified value (interpreted as an unsigned char)
0
votes
2answers
88 views
How to set volatile array to zero using memset?
volatile uint8_t reset_mask[768] = {0}
Now I am setting the values of this array elements to 1 during one of internal operations.
In another functional call, I need to set all the elements of this ...
21
votes
3answers
366 views
Why use bzero over memset?
In a Systems Programming class I took this previous semester, we had to implement a basic client/server in C. When initializing the structs, like sock_addr_in, or char buffers (that we used to send ...
0
votes
1answer
42 views
Set 2D int array elements to 1 by memset function
In c++, we usually use memset to set all elements to zero like:
int a[5][5];
memset(a,0,sizeof(a));
What if I want set all int elements to 1?
memset(a, 1, sizeof(a));
doesn't work since I cannot ...
1
vote
3answers
57 views
Calling memset causes segmentation fault
This program causes a seg fault on my UNIX machine. I narrowed the cause down to the second call of memset().
Why is this behaviour occurring? The first "chunk" of code is almost the same as the ...
0
votes
2answers
62 views
Why calloc wasn't intended to assign arbitrary values?
As per why malloc+memset slower than calloc?
malloc+memset is slower than calloc under certain conditions.
Why wasn't calloc written in such a way that it can take an extra value argument ( like ...
2
votes
2answers
79 views
What is the reason for memsetting initialized buffer
While traversing Wikipedia following some links, I stumbled across the following code example that initializes a char buffer to 0, but then memsets it to 0 before use. Is this necessary? If so, why? ...
1
vote
1answer
48 views
C++ memset - Extract size bytes and copy them to the supplied data address from buffer
Is there an way to set the start position from an char pointer, which was an file in memory.
I need to read the extract size bytes of data from the stream, and copy them to the supplied data address ...
0
votes
2answers
100 views
Replacement/porting of memset to C++ from C
I want to port C calls from a C example to a C++ example. But I'm not sure what is the right way to do this. In the memset part, what should I replace for the C++ code?
static int ...
-5
votes
1answer
39 views
Why do we need to set a buffer to 0? using memset() in C [closed]
Why and when it is necessary to set a buffer buf to 0, using memset(buf, 0, 128) in C.
-1
votes
2answers
59 views
Efficient way to reorganize data in a buffer in C++
Let's say I have a unsigned char buffer that looks like this:
unsigned char buffer = {'A', 'B', 'C', 'A', 'B', 'C', 'A', 'B', 'C', 'A', 'B', 'C'}
Basically I just want to grab that A's and B's, and ...
0
votes
1answer
33 views
Understanding the use of memset in this example
I'm studying an example from the Linux Device Driver book(http://lwn.net/Kernel/LDD3/), and I don't understand the use and usefullness of the function memset in this context and I hoped that someone ...
-1
votes
1answer
95 views
What is the purpose of memset in C
I am reading REBOL source code and I can't understand the purpose of the following statement:
/***********************************************************************
**
*/ int main(int argc, char ...
2
votes
1answer
40 views
In bitmap.h, why does bitmap_zero need memset?
In include/linux/bitmap.h, in the bitmap_zero(), why use memset?
static inline void bitmap_zero(unsigned long *dst, int nbits)
{
if (small_const_nbits(nbits))
*dst = 0UL;
...
1
vote
9answers
298 views
Memset an int (16 bit) array to short's max value
Can't seem to find the answer to this anywhere,
How do I memset an array to the maximum value of the array's type?
I would have thought memset(ZBUFFER,0xFFFF,size) would work where ZBUFFER is a 16bit ...
4
votes
3answers
155 views
memset on vector<int>
As per Mark Ransoms answer on using memset, i am using memset on a vector<int> to assign values to all the elements.
memset(&match_begin[0], 0xff , sizeof(match_begin[0]) * ...
0
votes
2answers
29 views
Clarification for use of char buffers when char buffer is using several times within the same scope in C
In C programming, character buffers are used for string implementation. habitually we are clear the content before we use any character buffer in any scope. I need a clarification on cleaning a char ...
0
votes
3answers
83 views
memset on static array
I am a little confused about what to pass as the first parameter to memset when you have to set the elements of a static array. I've been searching but I couldn't find the answers to some specific ...
-8
votes
5answers
112 views
memset causes “vector iterators incompatible” error
Currently working on my DirectX game and using memset(0) (or ZeroMemory macro in VS if you wish) in constant buffers constructors to initialize all values with zeros and it works just fine. Problem ...
4
votes
2answers
91 views
Is two's complementary representation universally platform-independent?
it's idiomatic to initialize a block of memory to zero by
memset(p, 0, size_of_p);
when we want to initialize it to minus one, we can:
memset(p, -1, size_of_p);
no matter what type p is, because ...
0
votes
2answers
99 views
memset not setting num bytes?
In the simple program below command is pointing to 400 bytes on the heap. Then I copy "./search '" to command, *buffer points to the next byte after " ' " (single quote). Starting the memory pointed ...
-1
votes
2answers
183 views
Set all values of a row and/or column in c++ to 1 or 0
I have a problem which requires resetting all values in a column to 0 or 1. The code which i am using is normal naive approach to set values by iterating each time. Is there any faster implementation.
...
0
votes
1answer
115 views
Filling array with 'zeroes' -memset() does not work- [closed]
This is the code
int x, y, n, i, j, l, m, o;
printf ("podaj szerokosc planszy na jakiej chcesz zagrac\n");
scanf ("%d", &x);
printf ("podaj dlugosc planszy na jakiej chcesz zagrac\n");
scanf ...
7
votes
4answers
278 views
Initializing a struct array in c witch size isn't know at compile time
I didn't find exact answer to this question so either it's a stupid question or just plain obvious. But still I would like to know would it produce undefined behaviour.
I have some struct type ...
0
votes
3answers
96 views
Memset or for loop to zero multiple same length arrays
I have multiple same length arrays I wish to fill with zero's. Let's look at two ways of doing that:
1)
int i;
for(i=0;i<ARRAYSLENGTH;i++){
arr1[i]=0;
arr2[i]=0;
arr3[i]=0;
...
}
...
0
votes
3answers
212 views
Proper way to initialize nested structs in C
When using nested structures I tend to do something like the following. I would like to know if that's the proper way to initialize structs in this particular case or if there's a better way of doing ...
70
votes
4answers
2k views
What's the use of memset() return value?
memset() is declared to return void* that is always the same value as the address passed into the function.
What's the use of the return value? Why does it not return void?
0
votes
2answers
375 views
memset throwing segmentation fault
I am having some problem with writing a function to extract strings from a file as part of a bigger program. Everything seems to be working fine, except when I use memset or bzero to erase the ...
1
vote
2answers
146 views
C++ memset() equivalent in jQuery
I have worked in C++ with memset() and definitely this function need not to be introduced here.Now I want to know what is the memset() equivalent function in jQuery? I searched the internet but can't ...
2
votes
4answers
712 views
Do I have to memset after malloc new memory?
#include "stdlib.h"
#include "stdio.h"
#include "string.h"
int main ( int argc, char* argv[] )
{
int *test = malloc(15 * sizeof(int));
for(int i = 0;i < 15 ;i ++ )
printf("test is ...
3
votes
1answer
142 views
Mac OS X equivalent of SecureZeroMemory / RtlSecureZeroMemory?
Is there a Mac OS X equivalent of RtlSecureZeroMemory / SecureZeroMemory, a function which zeroes a block of memory, but the call will not be optimized away by the compiler?
2
votes
2answers
255 views
do memset or bzero guarantee that a field pointer in a struct will be nulled out?
Suppose you have a C++ class Foo, and you say:
Foo* foos = new Foo[SOME_CONSTANT];
memset(foos, 0, sizeof(Foo)*SOME_CONSTANT);
//or the bzero equivalent
and that Foo has a data member Bar* barPtr. ...
1
vote
2answers
67 views
How to create an array of D3DFORMAT in C++?
D3DFORMAT *arr = NULL;
This is the reference to the array which is supposed to hold D3DFORMAT typed values.
How do I allocate the memory for this array whose size is defined by a variable
...
0
votes
1answer
1k views
Eclipse giving me Invalid arguments ' Candidates are: void * memset(void *, int, ?) ' though I know the args are good
I am getting an invalid arguments error in eclipse, though I am confident my arguments are good. The suggested arguments contains a '?' which I think may indicate the problem, though I do not know ...
0
votes
1answer
298 views
Need to get rid of the memset warning
If I Execute the below code I am getting a warning like this :
warning: incompatible implicit declaration of built-in function âmemsetâ [enabled by default]
void transform(int **a, int m, int n)
{
...
1
vote
6answers
3k views
How to memset char array with null terminating character?
What is the correct and safest way to memset the whole character array with the null terminating character? I can list a few usages:
...
char* buffer = new char [ARRAY_LENGTH];
//Option 1: ...
0
votes
1answer
127 views
Will memset vector to 0 cause memory leak?
I have a structure as followed:
typedef enum tBrowseType
{
catNowPlaying,
catFolder,
catFile,
catGenre
};
typedef struct tBrowseList
{
int total;
...
-1
votes
5answers
405 views
How do I do a memset for a pointer to an array?
How do I do a memset for a pointer to an array?
int (*p)[2];
p=(int(*))malloc(sizeof(*p)*100);
memset(p,0,sizeof(*p)*100);
Is this allocation an correct?
0
votes
1answer
130 views
CUDA: cuMemsetD32 on an unsigned int buffer fails due to arguments in an invalid range
I want to reset (set to 0) a buffer of type unsigned int. I don't know why but for me only the cuMemsetD8-version works. Here is my code:
CUdeviceptr pBuffer;
cuMemAlloc(&pBuffer, sizeof(unsigned ...
1
vote
3answers
132 views
lvalue required on incrementing a void pointer even after proper casting
I am implementing memset() method. Below is the code snippet:
void my_memset(void* ptr, int n, size_t size)
{
unsigned int i;
for( i = 0; i < size; ++i, ++(char*)ptr )
...
0
votes
1answer
161 views
Is it possible to run cuMemset on a CUarray?
I have a CUarray that I got from my OpenGL-context via cuGraphicsSubResourceGetMappedArray(). Is there a possiblity to use it with cuMemset*()?
0
votes
1answer
450 views
Memcpy and Memset on structures of Short Type in C
I have a query about using memset and memcopy on structures and their reliablity. For eg:
I have a code looks like this
typedef struct
{
short a[10];
short b[10];
}tDataStruct;
...
1
vote
4answers
725 views
Complexity of the memset function in C
I was discussing with some friends a piece of code, and we discussed about using memset function in C, which is the order in Big-O notation for this function if we initialize an array of size N?
0
votes
1answer
178 views
memset leaking mem at template class constructor
This class ctor is leaking memory, I cant say what is going on.
How I know? If I comment out the second ctor line, the leak goes away.
template< class T, int fixedSize >
class Resource_Cache{
...
0
votes
2answers
969 views
Using memset to set an array
I am a newbie to C still, and I am having a problem with the memset function.
I pass a char * to a function, and inside this function I create an array, and then use memset to set each value. I have ...
1
vote
3answers
1k views
Initializing integer array with memset
I am writing host code for a CUDA program, so I am stuck using standard C functions. I am having a problem with initializing the elements of an integer array using the memset function. I was under ...
0
votes
1answer
273 views
memset on 2d array of chars
With an 2D array of ints, everything is fine:
int **p = new int*[8];
for (int i = 0; i < 8; i++)
p[i] = new int[8];
memset(p, 0, 64 * sizeof(int))
But with 2D array of chars, I get a ...
0
votes
1answer
79 views
Looking for code to benchmark C lib string and memory functions
I'm looking for existing code I can use to benchmark C lib memory and string functions like memcpy, memset, strcpy, strcmp, etc. I've done a google search and there are several hits for people who ...
2
votes
3answers
177 views
pointer offset doesnt work in memset?
Plain C, on Windows 7 & HP machine.
int main(void) {
unsigned int a = 4294967295;
unsigned int *b = &a;
printf("before val: '%u'\n", *b); // expect 4294967295, got 4294967295
...
1
vote
2answers
495 views
memset array inside structure c
I'm trying to memset an array of ints that exist inside a structure:
typedef struct _xyz {
int zList[9000];
} xyz;
int dll_tmain(void)
{
xyz *Xyz = (xyz *) calloc(10, sizeof(xyz));
...
2
votes
1answer
136 views
memset is placing -1 into my array instead of the value I specified, what is going on?
int * best = new int[numNodes];
memset(best,numeric_limits<int>::max()/2,numNodes*sizeof(int));
int test = numeric_limits<int>::max()/2;
printing out the array gives me an array ...

