Home | History | Annotate | Download | only in priv

Lines Matching refs:arr

81 static inline UInt read_bit_array ( UChar* arr, UInt n )
83 UChar c = arr[n >> 3];
88 static inline void write_bit_array ( UChar* arr, UInt n, UInt b )
90 UChar c = arr[n >> 3];
93 arr[n >> 3] = c;