Searched defs:from_byte (Results 1 - 2 of 2) 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/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);

Completed in 103 milliseconds