Home | History | Annotate | Download | only in jni

Lines Matching full:png_alignof

423 #  define png_alignof(type) (sizeof (type))
426 # define png_alignof(type) offsetof(struct{char c; type t;}, t)
429 # define png_alignof(type) (1)
431 /* Else leave png_alignof undefined to prevent use thereof */
436 #ifdef png_alignof
438 ((((const char*)ptr-(const char*)0) & (png_alignof(type)-1)) == 0)