memcpy() is a C standard library function to copy a block of memory

learn more… | top users | synonyms

0
votes
0answers
39 views

Return to function, difference between strcpy() and memcpy()

The paxtest program includes some interesting tests, among many others it apparently tests if strcpy and memcpy can overwrite a return pointer on the stack: (from rettofunc1.c) void doit( void ) { ...
-1
votes
2answers
114 views

C array = array faster than memcpy() [closed]

I have a piece of C code which I am trying to optimise which involves setting an array a to b. I am currently using memcpy to achieve this, and it works, however it's not fast enough. I.e. double ...
0
votes
2answers
42 views

Copy a char to a struct pointer char

I have 2 structs and a variable type Book Book book_struct[100]; typedef struct Book{ int id; char title[256]; char summary[2048]; int numberOfAuthors; Author * authors; }; typedef struct ...
1
vote
5answers
81 views

is there any consequence if I do assignment but not memcpy after malloc

in the following program: int main() { struct Node node; struct Node* p = (Struct Node*) malloc(sizeof(struct Node)); *p =node; printf("%d\n", *p->seq); } usually I did memcpy(p, node, ...
2
votes
1answer
71 views

Copy values to and from a member of a structure in C++

I have a structure as shown below, which I use for the purpose of sorting a vector while keeping track of the indices. struct val_order{ int order; double value; }; (1). Currently ...
0
votes
3answers
64 views

Some C functions in iOS duplicated as #define

C functions like memcpy and memset are available as C functions as well as #define in iOS: For example the #define memcpy, under the hood, is: #define memcpy(dest, src, len) \ ...
1
vote
3answers
96 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
97 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
62 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
60 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
67 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
52 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
67 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
60 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
64 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
62 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
71 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
59 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
36 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
56 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
63 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
61 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
95 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
291 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
108 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
93 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
85 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
167 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
81 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
183 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
602 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
148 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
118 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
176 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
149 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
76 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
63 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
235 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
227 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 ...
2
votes
1answer
590 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
86 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
108 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
115 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
613 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
181 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
89 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
102 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. ...

1 2 3 4 5 8