2
votes
15answers
414 views
C memcpy() a function
Hi guys,
Is there any method to calculate size of a function? I have a pointer to a function and I have to copy entire function using memcpy. I have to malloc some space and know …
0
votes
1answer
100 views
CUDA host to device (or device to host) memcpy operations with application rendering graphics using OpenGL on the same graphics card
I have posted my problem in the CUDA forums, but not sure if it's appropriate to post a link here for more ideas in case there are significant number of different audiences between …
3
votes
4answers
144 views
C: deep copying - structure with a void pointer
Hi,
I've got a following struct
struct teststruct
{
int *a;
void *data;
};
Is it possible to do a deep copy of structure which contains a void pointer? I assume that I ca …
3
votes
5answers
275 views
Very fast memcpy for image processing?
I am doing image processing in C that requires copying large chunks of data around memory - the source and destination never overlap.
What is the absolute fastest way to do this o …
4
votes
7answers
324 views
Microsoft SDL and memcpy deprecation
As some of you may know, Microsoft banned memcpy() from their Security Development Lifecycle, replacing it with memcpy_s().
void *memcpy(void *dest, const void *src, size_t n);
/ …
0
votes
8answers
254 views
memcpy() crashes randomly
I am using memcpy in my application. memcpy crashes randomely and below is the logs i got in Dr.Watson files.
100181b5 8bd1 mov edx,ecx
100181b7 c1 …
2
votes
9answers
641 views
Memcpy() in secure programming?
I recently stumbled across an article that claims Microsoft is banning the memcpy() function in its secure programming shops. I understand the vulnerabilities inherent in the funct …
1
vote
3answers
188 views
Why does memcpy fail copying to a local array member of a simple object?
Classic memcpy gotcha with C arrays as function arguments. As pointed out below, I have an error in my code but the erroneous code worked in a local context!
I just encountered th …
0
votes
4answers
195 views
What is the difference between memset and memcpy in C
I've read the function headers, but I'm still not sure what exactly the difference is in terms of use cases.
Thanks!
0
votes
5answers
390 views
C Programming. How to deep copy a struct?
I have the following two structs where "child struct" has a "rusage struct" as an element.
Then I create two structs of type "child" let's call them childA and childB
How do I co …
1
vote
4answers
139 views
What Does Adding One to a Character Array in C Do?
I'm looking through some code for learning purposes. I'm working through this portion of code.
// e.g. const unsigned char data={0x1,0x7C ... }
unsigned char buf[40];
memset(buf,0 …
1
vote
3answers
373 views
C++ byte stream
Hi Everyone,
For a networked application, the way we have been transmitting dynamic data is through memcpying a struct into a (void*). This poses some problems, like when this is d …
0
votes
8answers
313 views
memcpy with startIndex?
I wish to copy content of specific length from one buffer to another from a specific starting point. I checked memcpy() but it takes only the length of content to be copied while I …
2
votes
6answers
216 views
Make compiler copy characters using movsd
I would like to copy a relatively short sequence of memory (less than 1 KB, typically 2-200 bytes) in a time critical function. The best code for this on CPU side seems to be rep m …
3
votes
5answers
228 views
Performance of list(…).insert(…)
I thought about the following question about computer's architecture. Suppose I do in Python
from bisect import bisect
index = bisect(x, a) # O(log n) (also, shouldn't it be …
