Home | History | Annotate | Download | only in runtime

Lines Matching refs:val

30     inline void gcProtect(JSCell* val) 
32 Heap::heap(val)->protect(val);
35 inline void gcUnprotect(JSCell* val)
37 Heap::heap(val)->unprotect(val);
40 inline void gcProtectNullTolerant(JSCell* val)
42 if (val)
43 gcProtect(val);
46 inline void gcUnprotectNullTolerant(JSCell* val)
48 if (val)
49 gcUnprotect(val);