Home | History | Annotate | Download | only in lib

Lines Matching refs:trailer

307 				   include the fifteen word trailer area.  */
320 this trailer). */
323 long link; /* Address of trailer block of previous
348 struct stk_trailer *trailer;
361 trailer = (struct stk_trailer *) (status.current_address
366 a fatal error if "trailer" is null. */
368 if (trailer == 0)
373 while (trailer != 0)
375 block = (long *) trailer->this_address;
376 size = trailer->this_size;
379 trailer = (struct stk_trailer *) trailer->link;
389 if (trailer == 0)
396 if (trailer->this_size <= 0)
398 result += trailer->this_size;
399 trailer = (struct stk_trailer *) trailer->link;
401 while (trailer != 0);