Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
1k views

Learning about Java bytecode and the JVM

Hey all, In a recent question asked recently my simple minded answer highlighted many of my misconceptions about Java, the JVM, and how the code gets compiled and run. This has created a desire in ...
1
vote
0answers
133 views

.rodata relocation related question

I'm trying to write a C program for a machine with no virtual memory(or O.S. to be more precise), and I'm running into some difficulties with the .rodata section, or more precisely the stuff that goes ...
1
vote
3answers
319 views

Where can I find low level Sound Programming Theory Tutorials

I am an intermediate graphics programmer. I want to learn audio/sound processing theory from the ground up. Just like how "A pixel" and its components R,G,B,A is the fundamental part of Graphics ...
1
vote
4answers
192 views

C programming and error_code variable efficiency

Most code I have ever read uses a int for standard error handling (return values from functions and such). But I am wondering if there is any benefit to be had from using a uint_8 will a compiler -- ...
0
votes
0answers
30 views

how to keep the reference of cursor for my method paint in class listview of low-level?

I get the error: java.lang.IllegalStateException: attempt to re-open an already-closed object: android.database.sqlite.SQLiteQuery (mSql = select key from dictionary) . Because i keep the reference ...