Lines Matching refs:slot
442 void **slot = (void**)((char*)EX(run_time_cache) + (num)); \
443 slot[0] = (ce); \
444 slot[1] = (ptr); \
447 #define CACHED_PTR_EX(slot) \ argument
448 (slot)[0]
450 #define CACHE_PTR_EX(slot, ptr) do { \ argument
451 (slot)[0] = (ptr); \
454 #define CACHED_POLYMORPHIC_PTR_EX(slot, ce) \ argument
455 (EXPECTED((slot)[0] == (ce)) ? (slot)[1] : NULL)
457 #define CACHE_POLYMORPHIC_PTR_EX(slot, ce, ptr) do { \ argument
458 (slot)[0] = (ce); \
459 (slot)[1] = (ptr); \