Searched refs:last_byte (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/tools/telemetry/telemetry/core/
H A Dmemory_cache_http_server_unittest.py27 last_byte = file_size - 1
29 self.CheckContentHeaders('0-', '0-%d' % last_byte, file_size)
32 self.CheckContentHeaders('100-', '100-%d' % last_byte,
40 '%d-%d' % (file_size - 228, last_byte),
44 self.CheckContentHeaders('100-5', '100-%d' % last_byte,
/external/chromium_org/android_webview/browser/net/
H A Dinput_stream_reader_unittest.cc46 int SeekRange(int first_byte, int last_byte) { argument
49 byte_range.set_last_byte_position(last_byte);
H A Dandroid_stream_reader_url_request_job_unittest.cc200 void SetRange(net::URLRequest* req, int first_byte, int last_byte) { argument
204 first_byte, last_byte).GetHeaderValue());
/external/chromium_org/sandbox/win/src/
H A Dcrosscall_server.cc173 const char* last_byte = &backing_mem[declared_size]; local
187 (address > last_byte) || // Start cannot point past buffer.
189 ((address + size) > last_byte)) { // End cannot point past buffer.
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_fax.cpp83 int last_byte = (endpos - 1) / 8; local
84 if (first_byte == last_byte) {
95 dest_buf[last_byte] -= 1 << (7 - i);
97 if (last_byte > first_byte + 1) {
98 FXSYS_memset32(dest_buf + first_byte + 1, 0, last_byte - first_byte - 1);
935 FX_BYTE last_byte = 0; local
939 m_pLineBuf[0] = last_byte;
942 last_byte = m_pLineBuf[dest_bitpos / 8];
947 m_DestBuf.AppendByte(last_byte);
/external/chromium_org/sync/internal_api/public/base/
H A Dordinal.h363 const uint8 last_byte = bytes[length - 1]; local
364 if (last_byte == kZeroDigit)
/external/chromium_org/net/tools/testserver/
H A Dtestserver.py1585 last_byte = size - 1
1596 last_byte = int(mo.group(2))
1597 if last_byte > size - 1:
1598 last_byte = size - 1
1600 if last_byte < first_byte:
1613 'bytes %d-%d/%d' % (first_byte, last_byte, size))
1617 self.send_header('Content-Length', last_byte - first_byte + 1)
1638 if possible_rst >= last_byte or rst_limit == 0:
1642 self.wfile.write(DataForRange(first_byte, last_byte + 1))
/external/qemu/slirp-android/
H A Dtcp_subr.c390 int last_byte = dst_addr & 0xff; local
392 if (CTL_IS_DNS(last_byte))
393 *redir_addr = dns_addr[last_byte - CTL_DNS];

Completed in 2268 milliseconds