Home | History | Annotate | Download | only in coregrind

Lines Matching refs:sres

762    SysRes      sres;
790 sres = VG_(am_mmap_anon_float_client)
793 sres = VG_(am_sbrk_anon_float_client)
795 if (sr_isError(sres))
797 sb = (Superblock*)(AddrH)sr_Res(sres);
807 sres = VG_(am_mmap_anon_float_valgrind)( cszB );
809 sres = VG_(am_sbrk_anon_float_valgrind)( cszB );
810 if (sr_isError(sres)) {
815 sb = (Superblock*)(AddrH)sr_Res(sres);
840 SysRes sres;
875 sres = VG_(am_munmap_client)(&need_discard, (Addr) sb, cszB);
876 vg_assert2(! sr_isError(sres), "superblock client munmap failure\n");
890 sres = VG_(am_munmap_valgrind)((Addr) sb, cszB);
891 vg_assert2(! sr_isError(sres), "superblock valgrind munmap failure\n");
1551 SysRes sres = VG_(am_sbrk_anon_float_valgrind)(sizeof(Superblock *) *
1553 if (sr_isError(sres)) {
1558 array = (Superblock**)(AddrH)sr_Res(sres);