search for: tmpval

Displaying 4 results from an estimated 4 matches for "tmpval".

Did you mean: tmpal
2007 Jul 08
6
Permissive devices in Xen
Hello, is there any reason why even permissive devices cannot write some areas in the PCI config space? The PCI_COMMAND is handled in special way so that the device is enabled/disabled properly, am I right? Why is PCI_INTERRUPT_LINE read from dev->irq and not from the config space? Why the PCI address bars are handled in very different way? And it seems that writing these bars is never
2010 Aug 20
0
[PATCH 1/2] Implement APEI ERST feature to Xen
...return 0; + + rc = apei_check_gar(reg, &paddr, 0); + if (rc) + return rc; + + apei_post_unmap(paddr, reg->bit_width / 8); + + return 0; +} + +static int apei_read_mem(u64 paddr, u64 *val, u32 width) +{ + void __iomem *addr; + u64 tmpval; + + addr = __apei_ioremap_fast(paddr, width); + switch (width) { + case 8: + *val = readb(addr); + break; + case 16: + *val = readw(addr); + break; + case 32: + *val = readl(addr); + b...
2008 Jul 30
1
Speex in VB .NET
..._win32.speex_bits_init(bits) Speex.Speex_win32.speex_bits_read_from(bits, data, len) MsgBox(Speex.Speex_win32.speex_bits_remaining(bits)) 'This correctly shows that the bits have been entered correctly, as it shows a number > 0 Dim output(160-1) As Single Dim tmpval As Integer = Speex.Speex_win32.speex_decode(speex_decoder_state, bits, output) Then at this point I get a System.AccessViolationException error. "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." Does anybody have any ideas why thi...
2016 Jun 30
4
Help required regarding IPRA and Local Function optimization
Hello Mentors, I am currently finding bug in Local Function related optimization due to which runtime failures are observed in some test cases, as those test cases are containing very large function with recursion and object oriented code so I am not able to find a pattern which is causing failure. So I tried following simple case to understand expected behavior from this optimization. Consider