Home
last modified time | relevance | path

Searched refs:from_byte (Results 1 – 4 of 4) sorted by relevance

/external/ltrace/sysdeps/linux-gnu/ia64/
Dbreakpoint.c37 int from_byte = from / 8; in extract_bit_field() local
44 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() local
73 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 …]
/external/chromium-trace/catapult/telemetry/telemetry/core/
Dmemory_cache_http_server.py51 start_index = resource_range.byte_range.from_byte
79 (byte_range.from_byte, byte_range.to_byte,
81 total_num_of_bytes = byte_range.to_byte - byte_range.from_byte + 1
120 from_byte = 0
128 from_byte = (int(byte_range_values[0]) if byte_range_values[0] else
134 if from_byte < 0:
138 if to_byte < from_byte or to_byte >= total_num_of_bytes:
141 return ByteRange(from_byte, to_byte)
/external/libbrillo/brillo/http/
Dhttp_request.cc129 void Request::AddRange(uint64_t from_byte, uint64_t to_byte) { in AddRange() argument
131 ranges_.emplace_back(from_byte, to_byte); in AddRange()
Dhttp_request.h262 void AddRange(uint64_t from_byte, uint64_t to_byte);