object-address Questions
4
Solved
What would be the most generic syntax for the following function :
template<IteratorType> void myFunction(const IteratorType& myIterator)
{
_ptr = &myIterator[0];
}
It take an ite...
Amando asked 29/8, 2012 at 13:47
2
Solved
How do I get all the address locations for functions/procedures/methods that is overloaded?
For example, Dialogs.MessageDlgPosHelp is overloaded having two different versions of it - one without a...
Arizona asked 25/6, 2012 at 3:42
6
Solved
Is there a way to get address of a Java object?
Where the question comes from?:
At First, I read properties file and all the data from file was placed into table. Properties file can update...
Reconcile asked 1/9, 2009 at 6:26
1
Solved
I have snapshot of Allocations Instrument with address of interesting symbol:
And I want to know, where this address is in code. I have corresponding dSYM file. I tried to use atosym command-lin...
Festival asked 8/8, 2012 at 10:42
3
Solved
In C struct's, I'm guaranteed that:
struct Foo { ... };
struct Bar {
Foo foo;
...
}
Bar bar;
assert(&bar == &(bar.foo));
Now, in C++, if I have:
class Foo { ... };
class Bar: public F...
Competence asked 31/1, 2010 at 6:16
1
Solved
I have a code like this:
.bss
woof: .long 0
.text
bleh:
...some op codes here.
now I would like to move the address of woof into eax. What's the intel syntax code here for doing that? The same ...
Freddafreddi asked 13/12, 2009 at 19:12
1
© 2022 - 2024 — McMap. All rights reserved.