示例#1
0
 def ll_str(self, p):
     from pypy.rpython.lltypesystem.rstr import ll_str
     id = lltype.cast_ptr_to_int(p)
     return ll_str.ll_int2hex(r_uint(id), True)
示例#2
0
 def ll_str(self, a):
     from pypy.rpython.lltypesystem.rstr import ll_str
     id = cast_adr_to_int(a)
     return ll_str.ll_int2hex(r_uint(id), True)
示例#3
0
 def ll_str(self, a):
     from pypy.rpython.lltypesystem.rstr import ll_str
     id = ll_addrhash(a)
     return ll_str.ll_int2hex(r_uint(id), True)
示例#4
0
文件: raddress.py 项目: njues/Sypy
 def ll_str(self, a):
     from pypy.rpython.lltypesystem.rstr import ll_str
     id = ll_addrhash(a)
     return ll_str.ll_int2hex(r_uint(id), True)
示例#5
0
文件: rptr.py 项目: Debug-Orz/Sypy
 def ll_str(self, p):
     from pypy.rpython.lltypesystem.rstr import ll_str
     id = lltype.cast_ptr_to_int(p)
     return ll_str.ll_int2hex(r_uint(id), True)
示例#6
0
 def ll_str(self, a):
     from pypy.rpython.lltypesystem.rstr import ll_str
     id = cast_adr_to_int(a)
     return ll_str.ll_int2hex(r_uint(id), True)