Home | History | Annotate | Download | only in useful

Lines Matching refs:arr

47 UInt read_bit_array ( UChar* arr, UInt n )
49 UChar c = arr[n >> 3];
55 void write_bit_array ( UChar* arr, UInt n, UInt b )
57 UChar c = arr[n >> 3];
61 arr[n >> 3] = c;