memcpy() is a C standard library function to copy a block of memory
1
vote
3answers
90 views
memcpy Inheritance-like structs - is it safe?
I have two structs I'm working with, and they are defined nearly identical. These are defined in header files that I cannot modify.
typedef struct
{
uint32_t property1;
uint32_t ...
5
votes
2answers
83 views
What is the difference between memcpy() and strncpy() given the latter can easily be a substitute for the former?
What is the significant difference between memcpy() and strncpy()? I ask this because we can easily alter strncpy() to copy any type of data we want, not just characters, simply by casting the first ...
0
votes
1answer
60 views
Please look into this inexplicable behavior and output of memcpy() for overlapping memory blocks
After reading the following about memcpy(), I proceeded to read about memmove():
To avoid overflows, the size of the arrays pointed by both the destination and source parameters, shall be at least ...
0
votes
3answers
50 views
In C,is casting to (void*) not needed/inadvisable for memcpy() just as it is not needed for malloc()?
I have some confusions about what I read from the following site about memcpy()(and malloc()):
http://www.cplusplus.com/reference/cstring/memcpy/
In that page,the following 2 lines are clearly ...
1
vote
1answer
66 views
Correct use of memcpy in C
I am attempting to copy the content of an error object from a deque, but when
I check the copied content, it is not correct.
typedef struct ER_OBJECT
{
uint8 error_type;
union
{
...
0
votes
5answers
49 views
strcpy() of a small string into a bigger string leaves the rest of the bigger string unchanged.How to deal with it?
Here in this sample program to illustrate this behavior of strcpy(),I wrote a string "S" into a bigger string previous which original had "Delaware".But this overwriting only affects the first two ...
0
votes
4answers
64 views
C++ Using memcpy to fill a vector in a struct
I would like to fill a struct using memcpy.
The struct is declared like this:
struct udtFeatures
{
vector<unsigned char>ByteFeatures;
};
And this is where I would like fill the bytes:
...
0
votes
5answers
57 views
copy data from one structure to another in C
If I have a structure defined like:
struct image{
unsigned int width, height;
unsigned char *data;
};
And 2 variables of this type:
struct image image1;
struct image image2;
I want to transfer ...
0
votes
0answers
57 views
On memcpy application crashes - FFMPEG, C++
I have been working with ffmpeg, I got it working good, but I got a memory leak, I followed some instructions to fix it (like use av_frame_unref), so I needed to update ffmpeg to the version 1.2.
This ...
0
votes
2answers
52 views
Memcpy string as void pointer, incorrect read
I'm trying to create a function that puts together a buffer from arbitrary types. Think basic RPC. So the buffer looks something like
{ char opcode, uint32_t param1_size, param1, ... , uint32_t ...
1
vote
1answer
60 views
OpenCV cv::Mat to short* (avoiding memcpy)
I have a C++ function that is to be called from someone else's C# application. As input my function is given an array of signed short integers, the dimensions of the image it represents, and memory ...
1
vote
1answer
52 views
memcpy segment fault, what's wrong with this code?
my software is a Web Crawler,when I get the body from the http response, it cracks.
resp->body = Malloc(content_len);
memcpy(resp->body, body_start, content_len); //THIS IS THE FAULTY LINE
...
0
votes
1answer
30 views
DX11 Programmatically filling a 3D Texture
I'm trying to fill a 3D texture with arbitrary data (either -1 or 1) using the map, write and unmap method mentioned on the MSDN, but I haven't been able to find any actual code examples of how to do ...
-1
votes
2answers
55 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
2answers
60 views
C programming problems with realloc and memcpy
I'm new to this forum. I thank you in advance for the help.
every time I call to this function "agregar_segmento" my global pointer named "segment"
should resize to contain new data values. data ...
0
votes
1answer
52 views
exporting C local variables : JNI run-time behavior issue
I want to export some static variables in C library (libA for instance) to use them from outside in other C file.
I used to use extern keyword for the desktop application and it was working, however ...
0
votes
1answer
89 views
C memcpy Not Behaving as Expected
This question is tied to Making an Array to Hold Arrays of Character Arrays in C
Borrowing code from there, I have something that looks like this (credit to luser droog for the nice example code):
...
-1
votes
1answer
68 views
memcpy extra starting characters [closed]
I'm having some trouble using memcpy in that when the memcpy operation is performed I get:
"ÍÍWF03-021913.datýýýý««««««««þ"
when I should get:
"WF03-021913.datýýýý««««««««þ"
I don't know where ...
18
votes
2answers
282 views
Fast copy of `std::vector<std::uint8_t>`
I have an std::vector<std::uint8_t>, which needs to be duplicated. This is done simply by calling the copy constructor.
My profiling results show, that the Microsoft Visual C++ (msvc100) ...
0
votes
1answer
97 views
Fast memcpy in C#
I want to write a C# method with prototype like this:
void memcpy(byte[] dst, int dstOffset, byte[] src, int srcOffset, int len);
I have 2 options for this method:
1.
void memcpy(byte[] dst, int ...
0
votes
2answers
88 views
CUDA : How to copy a 3D array from host to device?
I want to learn how can i copy a 3 dimensional array from host memory to device memory.
Lets say i have a 3d array which contains data. For example
int host_data[256][256][256];
I want to copy that ...
0
votes
4answers
78 views
memcpy a buffer and an array not working
I have a requirement in which i need to pass an empty array as a parameter to a function. And in this called function, i should be memcpy some data into the passed array. So i have written a small ...
-3
votes
7answers
163 views
Why is memcpy() faster? [duplicate]
I'm curious why the memcpy() function is faster than the simple manual copy.
Here is my code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
...
1
vote
3answers
73 views
Copying array of structs with memcpy vs direct approach [duplicate]
Suppose pp is a pointer to an array of structs of length n. [was dynamically allocated]
Suppose I want to create a copy of that array of structs and make a pointer to it, the following way:
struct ...
1
vote
3answers
179 views
If I use the memcpy function to copy an array, what possible consequences: bottlenecks and perfomance changes?
I am trying to implement my container Vector for an educational purpose.
While implementing it`s method reserve I faced the question:
that is the best way of rellocation of array of elements from one ...
26
votes
3answers
592 views
Forcing GCC to perform loop unswitching of memcpy runtime size checks?
Is there any reliable way to force GCC (or any compiler) to factor out runtime size checks in memcpy() outside of a loop (where that size is not compile-time constant, but constant within that loop), ...
1
vote
1answer
145 views
Multithread Programming for memcpy
I am doing an optimization task for memcpy function, I found this link here. How to increase performance of memcpy
Since I'm not familiar with multithread programming, I don't know how to insert the ...
2
votes
4answers
117 views
Why is it allowed to overwrite a const variable using a pointer to it using memcpy?
Why is it allowed to change a const variable using a pointer to it with memcpy?
This code:
const int i=5;
int j = 0;
memcpy(&j, &i, sizeof(int));
printf("Source: i = %d, dest: j = %d\n", ...
0
votes
0answers
161 views
Copy a std::vector to a repeated field from protobuf with memcpy
At first I have this simple protobuf file
message messagetest
{
...
repeated float samples = 6;
....
}
Which creates a headerfile with this methods
//repeated float samples = 6;
...
0
votes
2answers
141 views
segmentation fault on memcpy [closed]
the full code is in
http://docs.google.com/file/d/0B09y_TWqTtwlaHNjdjYybHVIcjA/edit?usp=sharing
char data[]="just for a try";
u_char *packet=(u_char *)malloc(28+sizeof(data));
...
...
-1
votes
1answer
74 views
u_char* memcpy segfault — tried other answers
I have a u_char array, which changes each time I enter the loop, and a structure with a member as a u_char array. I am trying to create a vector of structures, containing all iterations of the u_char ...
-1
votes
1answer
62 views
Issue with memcpy and bad access
First time asking a question here, but I'm really confused by this. This is essentially what I'm trying to do:
- (MyStruct)methodName:(OtherStruct)foo
{
MyStruct bar;
memcpy(&bar, ...
0
votes
3answers
33 views
adding text in memory allocated
i have created certain amount of memory
char* str;
str = char(char*) malloc(15);
when i do this
memcpy(str, "AB", 2);
memcpy(str, "CDEFG", 5)
cout<<"Value of str: "<<str<<endl;
...
2
votes
2answers
234 views
memcpy into a vector<wchar_t> from raw memory location
I'm working with an API that provides, in memory, the memory address and length of strings of interest. I'd like to read these strings into friendlier objects like wstring.
For smaller strings, a ...
1
vote
3answers
208 views
Is memcpy process-safe?
Ive looked online and have not been able to satisfy myself with an answer.
Is memcpy threadsafe? (in Windows)
What I mean is if I write to an area of memory shared between processes (using ...
1
vote
1answer
497 views
error: warning: incompatible implicit declaration of built-in function ‘memcpy’ [enabled by default]
I get this error.
error: warning: incompatible implicit declaration of built-in function ‘memcpy’ [enabled by default]
This is the code:
int arr[ 12] = {1,0,0,0,0,0,0,0,0,0,9370, 0};
void *a = ...
1
vote
1answer
85 views
pointer to structure argv assignment
I've been trying to assign argv[x] to structure pointed to by variable.
I wrote following code and getting Segmentation fault, which I know is a memory violation. I do not understand where I have made ...
0
votes
2answers
106 views
segmentation fault during memcpy
I am trying to make a function which reverses the order of a portion of a string. I'm new to using pointers and for some reason I can access the location of the characters of my string to copy out a ...
-4
votes
1answer
78 views
memcpy not-POD objects leads to undefined behavior
In what situation ,an object of Class will guarantee to insert invisible data into an object ?
People usually said that it's not OK when using memcpy of copying objects instead of copy-assignment, ...
0
votes
0answers
111 views
Efficient way to copy strided data (to and from a CUDA Device)?
Is there a possibility to copy data strided by a constant (or even non-constant) value to and from the CUDA device efficiently?
I want to diagonalize a large symmetric matrix.
Using the jacobi ...
2
votes
1answer
562 views
copy_to_user vs memcpy
I have always been told(In books and tutorials) that while copying data from kernel space to user space, we should use copy_to_user() and using memcpy() would cause problems to the system. Recently by ...
0
votes
4answers
168 views
Will memcpy copy a string correctly?
I am working on implementing some low-level file writing, where the file format is specific down to each bit. I need to copy a string from an NSString into null-terminated string with length 16 (which ...
-3
votes
2answers
85 views
Having trouble with memcpy
Code I'm using:
char** list
char** final;
char* target;
char* replace;
int wCounter, cCounter, i, hashCounter = 0, addLetter = 0;
int copyWord, countChars, numOfWords, finalWords = 0, temp;
...
1
vote
1answer
97 views
Simple Flip buffer (Vertically) issue in C\C++
I am trying to flip a buffer, but the buffer doesn't get fully processed.
Is a buffer of pixels and I need basically to flip it vertically.
Can anyone spot what am I doing wrong? Thanks in advance.
...
0
votes
2answers
155 views
Using memcpy to copy part of an array, and other memory manipulation tools
Is it possible to use memcpy to copy part of an array?
Say for example we have an array of 10 integers. Can we create a new array, and copy the last 5 integers into it?
Are there other memory/array ...
0
votes
2answers
55 views
EXC_BAD ACCESS in memcpy
I trying to build a BST and insert nodes in it. However while creating a new node I keep getting exc_bad access error.What can be the reason? Here is my code:
struct Node *node_create(struct BSTree ...
1
vote
3answers
175 views
C++: When using memcpy, what is the difference between myArray and &myArray? [duplicate]
Possible Duplicate:
How come an array’s address is equal to its value in C?
In the situation:
int x = 5;
unsigned char myArray[sizeof (int)];
This line...
memcpy (&myArray , &x ...
6
votes
5answers
291 views
Fastest de-interleave operation in C?
I have a pointer to an array of bytes mixed that contains the interleaved bytes of two distinct arrays array1 and array2. Say mixed looks something like this:
a1b2c3d4...
What I need to do is ...
1
vote
2answers
113 views
C - copying directly from memory using memcpy
This is purely a homework assignment question, since I'm aware that you really shouldn't be trying to do this in real life. But I've been trying to get this right. Say we know the permanent start ...
0
votes
3answers
162 views
Wrong number produced when memcpy-ing data into an integer?
I have a char buffer like this
char *buff = "aaaa0006france";
I want to extract the bytes 4 to 7 and store it in an int.
int i;
memcpy(&i, buff+4, 4);
printf("%d ", i);
But it prints junk ...





