Lines Matching refs:recent
105 ** and a revolving cache of K_RTYPE "recent" addresses.
109 ** the "recent" cache an address that is closest to the being coded address,
124 #define K_DDECL(quick,recent,rhere) /* cache decls in vdelta */ \
125 int quick[K_QSIZE]; int recent[K_RTYPE]; int rhere/*;*/
126 #define K_UDECL(quick,recent,rhere) /* cache decls in vdupdate */ \
127 long quick[K_QSIZE]; long recent[K_RTYPE]; int rhere/*;*/
128 #define K_INIT(quick,recent,rhere) \
131 recent[rhere=0] = (1<<8); \
132 while((rhere += 1) < K_RTYPE) recent[rhere] = (rhere+1)*(1<<8); \
134 #define K_UPDATE(quick,recent,rhere,copy) \
136 if((rhere += 1) >= K_RTYPE) rhere = 0; recent[rhere] = copy; \