Searched refs:from_byte (Results 1 – 4 of 4) sorted by relevance
37 int from_byte = from / 8; in extract_bit_field() local44 c = b[from_byte]; in extract_bit_field()45 if (from_byte == to_byte) in extract_bit_field()50 for (i = from_byte + 1; i < to_byte; i++) { in extract_bit_field()55 if (from_byte < to_byte && (to % 8 != 0)) { in extract_bit_field()68 int from_byte = from / 8; in replace_bit_field() local73 if (from_byte == to_byte) { in replace_bit_field()75 c = b[from_byte]; in replace_bit_field()83 b[from_byte] = c; in replace_bit_field()86 c = b[from_byte]; in replace_bit_field()[all …]
51 start_index = resource_range.byte_range.from_byte79 (byte_range.from_byte, byte_range.to_byte,81 total_num_of_bytes = byte_range.to_byte - byte_range.from_byte + 1120 from_byte = 0128 from_byte = (int(byte_range_values[0]) if byte_range_values[0] else134 if from_byte < 0:138 if to_byte < from_byte or to_byte >= total_num_of_bytes:141 return ByteRange(from_byte, to_byte)
129 void Request::AddRange(uint64_t from_byte, uint64_t to_byte) { in AddRange() argument131 ranges_.emplace_back(from_byte, to_byte); in AddRange()
262 void AddRange(uint64_t from_byte, uint64_t to_byte);