Home | History | Annotate | Download | only in lib

Lines Matching refs:trailer

305 				   include the fifteen word trailer area.  */
318 this trailer). */
321 long link; /* Address of trailer block of previous
346 struct stk_trailer *trailer;
359 trailer = (struct stk_trailer *) (status.current_address
364 a fatal error if "trailer" is null. */
366 if (trailer == 0)
371 while (trailer != 0)
373 block = (long *) trailer->this_address;
374 size = trailer->this_size;
377 trailer = (struct stk_trailer *) trailer->link;
387 if (trailer == 0)
394 if (trailer->this_size <= 0)
396 result += trailer->this_size;
397 trailer = (struct stk_trailer *) trailer->link;
399 while (trailer != 0);