memmove() is a C standard library function to copy a block of memory. It work even if the source and the destination overlap.
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 ...
2
votes
1answer
48 views
Exception during delete[] after memmove
I have the code below which contains a dynamic array of strings. I'm having problems deallocating each individual string that is generated. I assumed I could just include a new for loop which ...
0
votes
3answers
80 views
Does this contain a memory leak? [closed]
Does the code below contain a memory leak. I suspect it does but the tools I use to detect them(Visual Studio + Parasoft c++ test) aren't flagging up anything. If it is how would I fix it?
//A ...
2
votes
4answers
187 views
A better array shifting algorithm?
I have an assignment that requires me to sort a heap based C style array of names as they're being read rather than reading them all and then sorting. This involves a lot of shifting the contents of ...
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 ...
0
votes
0answers
71 views
memove causing bus error
The memmove call in this code is causing the program to crash with bus error. Basically the code takes in a IP packet then creates a new packet. It calculated the MD5_HMAC on several of the ...
5
votes
1answer
431 views
Why is Linux memmove() implemented the way it is?
From the Linux manpage for memmove(3)
The memmove() function copies n bytes from memory area src to memory area dest.
The memory areas may overlap: copying takes place as though the bytes in src ...
0
votes
3answers
439 views
base 4 to base 2 converter
This program is to convert a base 4 number to a base 2 number and it should be done in place
#include<stdio.h>
#include<string.h>
void shiftr(char num[],int i)
{
...
-1
votes
2answers
90 views
Bus error when using memmove [duplicate]
Possible Duplicate:
Bus error troubleshooting
To remove duplicates from a string this is the program I have written:
#include<stdio.h>
#include<string.h>
...
0
votes
0answers
117 views
Memmove with SSE
I have to move up to 8KB of data where source and destination can overlap.
I might call this code for few million times per sec.
Machines running my code will have at least SSE3.
Does memmove in ...
0
votes
7answers
290 views
Heap corruption from memory allocation using malloc: why did it happen?
Ok, I was trying to implement memmove just as a programming exercise, and I get a memory access violation in the memmove function when I try to use malloc. Here is the function:
//Start
void* ...
0
votes
1answer
75 views
Is this the correct way for memmove in reverse order?
I'm trying to understand how does memmove work. I'm taking an example where I have data in memory in this manner.
Start at 0
First Memory Block(A) of size 10
Hence A->(0,10) where 0 being where it ...
2
votes
4answers
319 views
Will memcpy or memmove cause problems copying classes?
Suppose I have any kind of class or structure. No virtual functions or anything, just some custom constructors, as well as a few pointers that would require cleanup in the destructor.
Would there be ...
0
votes
2answers
362 views
Code of memmove()
The below code snippet shows the implementation of memmove().
void my_memmove(void* dest, const void* src, size_t size)
{
unsigned int i;
char* d = (char*)dest;
char* s = (char*)src;
...
1
vote
1answer
120 views
memove a masked array - python
I have a numpy array which contains no data values. I mask those no data values so that they do not influence my calculations using:
array = numpy.ma.masked_values(array, options['ndv'], ...
2
votes
2answers
134 views
is memmove necessary for trim function in C?
I was reading a wikipedia article on Trimming and saw this implementation of ltrim (left trim)
char *
ltrim(char *str)
{
char *ptr;
int len;
for (ptr = str; *ptr && ...
1
vote
2answers
614 views
Cleaner way to remove a substring from str in C
I have the following string ID is a sample string remove to /0.10, I would like to end up with the following: ID/0.10.
This is what I came up with. However, I'm looking for a cleaner/nicer way of ...
-1
votes
3answers
195 views
C code crashes from memmove
My code does not crash when I write:
char s[44] = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
memmove(s, "asdf", 5);
But it does when I write:
char* s = ...
0
votes
2answers
106 views
Is there an “lseek” to memmove?
I have a buffer with n bytes, but I only want read in sizeof(something) bytes from byte 3, meaning I don't want to read in byte 1 and 2 from the buffer. For example...
For some buffer, byte 1 = 'a', ...
2
votes
3answers
1k views
How to use and when is good use memmove in C?
I have two doubt about use of memmove():
When is preferable use this function instead of use another function (i.e. a created own function)? I’m not sure I have understood properly.
The signature of ...
3
votes
3answers
171 views
If destination and source are the same, what does memmove do?
If destination and source are the same, does memmove still "move" the data (or does it return directly)? What about realloc; what if the new size is the same as the old size?
1
vote
3answers
402 views
C - memmove() function - How many bytes am I moving in this implementation?
This seems to be a great place. My question is, what value (or how many bytes) am I moving in this implementaion of memmove()?
int main ()
{
char str[] = "memmove can be very useful......";
memmove ...
1
vote
2answers
535 views
Error when dealing with memory - mremap_chunk: Assertion
It seems like my previous post but issue here is different ..
This is the C structure for problem -
typedef struct ip_esp_private { /* keep track of things privately */
u_int32_t type; ...
8
votes
4answers
3k views
what does the “const void*” mean in memmove?
The second arg in the prototypes for memmove/memcpy/strcpy are similar:
For example:
void *memmove(void *dest, const void *src, size_t n); //const void*
char *strcpy(char *dest, const char *src); ...
0
votes
2answers
387 views
Replacing a substring with another string in C
I am writing a code to replace all MACROS with its value.
If my macro MAX has a value 1000,
And in the code, it must be replaced with 1000.(I am assuming a case that if the MACROS are the first word ...
0
votes
1answer
357 views
Writeablebitmap - scrolling 1 px to the left, what's the best way ? (AKA Where's memmove ?)
I have a writeablebitmap.
I want to scroll the contents 1 pixel to the left, and fill in a new pixelrow in the rightmost column.
In C++ I'd memmove the entire buffer 1 pixel to the left, and ...
0
votes
1answer
886 views
Valgrind says “Source and destination overlap in memcpy” about two buffers but they seems to not overlap
LAST EDIT in the end of OP
I tested with Valgrind a function used in a project and it says "Source and destination overlap in memcpy" and gives me also "Invalid read" and "Invalid write" errors. I ...
0
votes
2answers
266 views
Does memmove actually “move” a chunk of memory and leave behind zeros at the source? [duplicate]
Possible Duplicate:
memcpy vs memmove
Does memmove actually "move" a chunk of memory? If so, does it leave the memory with zeros? Or, is it just like memcpy? I am looking at the man page, ...
0
votes
3answers
508 views
copy character string to an unsigned buffer: Segmentation fault
i am trying to copy two integers and a character string to a buffer and print the buffer elements out. I get a seg fault for the third printf statement:
id = 102;
len = 3;
str = ...
8
votes
3answers
1k views
memcpy vs assignment in C — should be memmove?
As pointed out in an answer to this question, the compiler (in this case gcc-4.1.2, yes it's old, no I can't change it) can replace struct assignments with memcpy where it thinks it is appropriate.
...
1
vote
2answers
770 views
memmove implementation
In reference to the thread: memmove implementation in C, I did not understand why would there be a memory overlap for 2 different variables? i.e. is this a normal scenario that the compiler allocates ...
25
votes
4answers
21k views
memcpy() vs memmove()
I am trying to understand the difference between memcpy() and memmove(), and I have read the text that memcpy doesn't take care of the overlapping source and destination wheras memmove() does.
...
1
vote
2answers
340 views
Strange behavior of memcpy/memmove
I have the problem that memcpy/memmove change the pointer of a struct FOO foo, which is neither src nor destination of the function. Here are the gdb outputs:
Before memmove(y,y_temp,size_y);:
(gdb) ...
20
votes
4answers
4k views
Can I call memcpy() and memmove() with “number of bytes” set to zero?
Do I need to treat cases when I actully have nothing to move/copy with memmove()/memcpy() as edge cases
int numberOfBytes = ...
if( numberOfBytes != 0 ) {
memmove( dest, source, numberOfBytes );
...
1
vote
2answers
348 views
Fast memmove for x86 and +1 shift (for Move-to-front transform)
For fast MTF ( http://en.wikipedia.org/wiki/Move-to-front_transform ) i need faster version of moving a char from inside the array into the front of it:
char mtfSymbol[256], front;
char i;
for(;;) { ...
8
votes
7answers
1k views
What are real significant cases when memcpy() is faster than memmove()?
The key difference between memcpy() and memmove() is that memmove() will work fine when source and destination overlap. When buffers surely don't overlap memcpy() is preferable since it's potentially ...
2
votes
2answers
1k views
How does the memory overlap occur and how is it controlled?
While reading about memmove I read that it can handle *MEMORY OVERLAPS*but I am unable to get how a memmory overlap can occur between two strings and how can this function still copy the block of ...
2
votes
3answers
4k views
memmove implementation in C
Can some one help me to understand how memmove is implemented in C. I have only one special condition right ?
if((src<dst)&&((src+sz) > dst))
copy from the back
Also does it depend ...


