Lines Matching defs:pentry
851 register LispObj *entry, *last, *freeobj, **pentry, **eentry;
910 for (pentry = pack->glb.pairs, eentry = pentry + pack->glb.length;
911 pentry < eentry; pentry++)
912 LispMark((*pentry)->data.atom->property->value);
935 for (pentry = lisp__data.env.values,
936 eentry = pentry + lisp__data.env.length;
937 pentry < eentry; pentry++)
938 LispMark(*pentry);
941 for (pentry = lisp__data.returns.values,
942 eentry = pentry + lisp__data.returns.count;
943 pentry < eentry; pentry++)
944 LispMark(*pentry);
947 for (pentry = lisp__data.stack.values,
948 eentry = pentry + lisp__data.stack.length;
949 pentry < eentry; pentry++)
950 LispMark(*pentry);
953 for (pentry = lisp__data.protect.objects,
954 eentry = pentry + lisp__data.protect.length;
955 pentry < eentry; pentry++)
956 LispMark(*pentry);
3176 LispObj **pentry, **eentry;
3183 for (pentry = lisp__data.pack->use.pairs,
3184 eentry = pentry + lisp__data.pack->use.length;
3185 pentry < eentry; pentry++)
3186 if (*pentry == package)