Lines Matching refs:index
375 let index =
379 [Medium, Low, High, Quartile][index]
407 let index = usize::from(y) * usize::from(*self.size) + usize::from(x);
408 let byteindex: usize = index >> 3;
409 let bitindex: usize = index & 7;
427 let index = usize::from(y) * usize::from(*self.size) + usize::from(x);
428 let byteindex: usize = index >> 3;
429 let bitindex: usize = index & 7;
649 let mut i: usize = 0; // Bit index into the data
997 // Version: (note that index 0 is for padding, and is set to an illegal value)
1006 // Version: (note that index 0 is for padding, and is set to an illegal value)
1288 // where each character value maps to the index in the string.
1375 let index: usize = self.length >> 3;
1379 self.data[index] = bit << shift;
1381 self.data[index] |= bit << shift;