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

/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dbreakpoint.c37 int from_byte = from / 8; local
44 c = b[from_byte];
45 if (from_byte == to_byte)
50 for (i = from_byte + 1; i < to_byte; i++) {
55 if (from_byte < to_byte && (to % 8 != 0)) {
68 int from_byte = from / 8; local
73 if (from_byte == to_byte) {
75 c = b[from_byte];
83 b[from_byte] = c;
86 c = b[from_byte];
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/core/
H A Dmemory_cache_http_server.py20 ByteRange = namedtuple('ByteRange', ['from_byte', 'to_byte'])
51 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
124 # If to_range is not defined return all bytes starting from from_byte.
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_byt
[all...]
/external/libbrillo/brillo/http/
H A Dhttp_request.cc129 void Request::AddRange(uint64_t from_byte, uint64_t to_byte) { argument
131 ranges_.emplace_back(from_byte, to_byte);
H A Dhttp_request.h262 void AddRange(uint64_t from_byte, uint64_t to_byte);

Completed in 79 milliseconds