Displaying 3 results from an estimated 3 matches for "loadfrommemory".
Did you mean:
load_from_memory
2008 Sep 16
2
[LLVMdev] tracing stack variables
...data is
allocated the information I want is already being used to determine
allocation space . But I'm don't think stack accessions are included in
its scope . I do need global (and static) info but I'm confident
everything I need is here .
I'm still interested in using XNgine::LoadFromMemory to access my stack
variables but I wonder what someone more experienced would do ;
Will this cover all of the bases ? ; Can I reference metadata at (or
near) the pointer returned by 'alloca' to get the info I need ?
thanks ,
dane van dyck
georgia institute of technology
2008 Sep 16
0
[LLVMdev] tracing stack variables
...information I want is already being used to determine
> allocation space . But I'm don't think stack accessions are included
> in its scope . I do need global (and static) info but I'm confident
> everything I need is here .
> I'm still interested in using XNgine::LoadFromMemory to access my
> stack variables but I wonder what someone more experienced would
> do ; Will this cover all of the bases ? ; Can I reference metadata
> at (or near) the pointer returned by 'alloca' to get the info I need ?
Doesn't sound like you're on the right track...
2006 Jan 17
1
How to loop a Vobis sound ?
...nd ()
{
if (!ov_seekable (&m_tOggStream))
return false;
int result = ov_pcm_seek (&m_tOggStream, m_iStreamStart);
// int result = ov_time_seek_lap (&m_tOggStream, 0);
if (result < 0)
throw OvErrorString (result);
return true;
}
bool OggStream::LoadFromMemory (FileInMemory *pMemFile)
{
m_tOggMemoryFile = *pMemFile;
// Open the file from memory. We need to pass it a pointer to our data (in this case our FileInMemory structure),
// a pointer to our ogg stream (which the vorbis libs will fill up for us), and our s_callbacks
if (ov_op...