Lines Matching defs:POINTERP

133 #define POINTERP(object)						\
150 #define OBJECT_TYPE(object) (POINTERP(object) ? \
169 #define CONSP(object) (POINTERP(object) && XCONSP(object))
200 #define INTP(objet) (POINTERP(object) && XINTP(object))
206 (POINTERP(object) ? XINTP(object) : FIXNUMP(object))
208 (POINTERP(object) ? INT_VALUE(object) : FIXNUM_VALUE(object))
217 #define BIGNUMP(object) (POINTERP(object) && XBIGNUMP(object))
224 (POINTERP(object) ? XINTP(object) || XBIGNUMP(object) : FIXNUMP(object))
233 #define RATIOP(object) (POINTERP(object) && XRATIOP(object))
239 #define BIGRATIOP(object) (POINTERP(object) && XBIGRATIOP(object))
245 (POINTERP(object) ? XINTP(object) || XRATIOP(object) || \
252 #define DFLOATP(object) (POINTERP(object) && XDFLOATP(object))
267 (POINTERP(object) ? XINTP(object) || XDFLOATP(object) || \
279 #define COMPLEXP(object) (POINTERP(object) && XCOMPLEXP(object))
285 (POINTERP(object) ? XINTP(object) || XDFLOATP(object) || \
297 #define SYMBOLP(object) (POINTERP(object) && XSYMBOLP(object))
308 (POINTERP(object) && XSYMBOLP(object) && XKEYWORDP(object))
324 #define FUNCTIONP(object) (POINTERP(object) && XFUNCTIONP(object))
329 #define LAMBDAP(object) (POINTERP(object) && XLAMBDAP(object))
334 #define STRINGP(object) (POINTERP(object) && XSTRINGP(object))
349 #define ARRAYP(object) (POINTERP(object) && XARRAYP(object))
358 #define QUOTEP(object) (POINTERP(object) && XQUOTEP(object))
362 #define BACKQUOTEP(object) (POINTERP(object) && XBACKQUOTEP(object))
366 #define COMMAP(object) (POINTERP(object) && XCOMMAP(object))
372 #define PACKAGEP(object) (POINTERP(object) && XPACKAGEP(object))
377 #define PATHNAMEP(object) (POINTERP(object) && XPATHNAMEP(object))
387 #define STREAMP(object) (POINTERP(object) && XSTREAMP(object))
396 #define HASHTABLEP(object) (POINTERP(object) && XHASHTABLEP(object))
405 #define REGEXP(object) (POINTERP(object) && XREGEXP(object))
414 #define BYTECODEP(object) (POINTERP(object) && XBYTECODEP(object))
419 #define OPAQUEP(object) (POINTERP(object) && XOPAQUEP(object))
469 (!POINTERP(object) || \