Lines Matching refs:size
41 reg int size, copy;
55 size = A_TGET(inst);
56 else if(A_ISHERE(inst)) /* locally coded ADD size */
57 size = A_LGET(inst);
58 else /* non-local ADD size */
59 { STRGETU(tab,size);
60 size = A_GET(size);
62 if((t+size) > n_tar) /* out of sync */
64 c_addr += size;
67 STRREAD(tab,tar+t,size);
68 t += size;
71 { size = C_TGET(inst);
77 { if(C_ISHERE(inst)) /* locally coded COPY size */
78 size = C_LGET(inst);
80 { STRGETU(tab,size);
81 size = C_GET(size);
84 if((t+size) > n_tar) /* out of sync */
100 c_addr += size;
102 if(copy >= t || (copy+size) > n_tar) /* out-of-sync */
106 { if((n = t-copy) > size)
107 n = size;
111 if((size -= n) == 0)
121 int vdexpand(Void_t* target, int size, Void_t* delta)
123 int vdexpand(target, size, delta)
125 int size;
132 /* get true target size */
136 if(t > size)