Home | History | Annotate | Download | only in coregrind

Lines Matching refs:sres

791    SysRes      sres;
818 sres = VG_(am_mmap_anon_float_client)
820 if (sr_isError(sres))
822 sb = (Superblock*)(AddrH)sr_Res(sres);
829 sres = VG_(am_mmap_anon_float_valgrind)( cszB );
830 if (sr_isError(sres)) {
835 sb = (Superblock*)(AddrH)sr_Res(sres);
860 SysRes sres;
895 sres = VG_(am_munmap_client)(&need_discard, (Addr) sb, cszB);
896 vg_assert2(! sr_isError(sres), "superblock client munmap failure\n");
910 sres = VG_(am_munmap_valgrind)((Addr) sb, cszB);
911 vg_assert2(! sr_isError(sres), "superblock valgrind munmap failure\n");
1670 SysRes sres = VG_(am_mmap_anon_float_valgrind)(sizeof(Superblock *) *
1672 if (sr_isError(sres)) {
1677 array = (Superblock**)(AddrH)sr_Res(sres);