HomeSort by relevance Sort by last modified time
    Searched full:from_byte (Results 1 - 2 of 2) sorted by null

  /external/ltrace/sysdeps/linux-gnu/ia64/
breakpoint.c 37 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_org/tools/telemetry/telemetry/core/
memory_cache_http_server.py 20 ByteRange = namedtuple('ByteRange', ['from_byte', 'to_byte'])
51 start_index = resource_range.byte_range.from_byte
79 'bytes %d-%d/%d' % (byte_range.from_byte,
82 total_num_of_bytes = byte_range.to_byte - byte_range.from_byte + 1
121 from_byte = 0
125 # If to_range is not defined return all bytes starting from from_byte.
129 from_byte = (int(byte_range_values[0]) if byte_range_values[0]
135 if from_byte < 0:
139 if to_byte < from_byte or to_byte >= total_num_of_bytes:
142 return ByteRange(from_byte, to_byte
    [all...]

Completed in 248 milliseconds