python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
x86 address space calculation PAE to 36 bits
I'm having some hard time understanding PAE. I know it creates a 3rd level of indirection via the PDPT, so that the address translation goes from CR3 -> PDPT(4 entries) -> PD(512 entries) -> ...
user16469617
Votes: 0
Answers: 1
Enclose code in anonymous brackets saves memory?
I'm a beginner and for some reason, I like to make effort to save memory. For now I think it's fun.
So in this problem, I have a regex that matches kebab-case words and later turns them into camel-cas...
marcosdly
Votes: 0
Answers: 1
Is there a way to grow, slice and shrink byte buffers without reallocation in Python?
I'm using asyncio.StreamReader to receive data from a remote source. This class has a read() method which returns a bytes object.
Right now I use another bytes object to accumulate data I receive from...
Semisonic
Votes: 0
Answers: 0
Query regarding memory management in C structures
Suppose there is a struct a with other structs as members
struct a {
struct b* b;
struct c* c;
};
struct a* a1;
Now I allocate memory dynamically to an object of a
a1 = (struct a*) malloc(sizeof(a));...
Rishab V Arun
Votes: 0
Answers: 1