/external/libchrome/sandbox/win/src/sidestep/ |
D | mini_disassembler.cpp | 29 unsigned char* start_byte, in Disassemble() argument 35 unsigned char* current_byte = start_byte; in Disassemble() 69 *instruction_bytes += operand_bytes_ + (current_byte - start_byte); in Disassemble() 87 InstructionType MiniDisassembler::ProcessPrefixes(unsigned char* start_byte, in ProcessPrefixes() argument 90 const Opcode& opcode = s_ia32_opcode_map_[0].table_[*start_byte]; in ProcessPrefixes() 101 if (0xF2 == (*start_byte)) in ProcessPrefixes() 103 else if (0xF3 == (*start_byte)) in ProcessPrefixes() 105 else if (0x66 == (*start_byte)) in ProcessPrefixes() 111 ProcessPrefixes(start_byte + 1, size); in ProcessPrefixes() 119 InstructionType MiniDisassembler::ProcessOpcode(unsigned char* start_byte, in ProcessOpcode() argument [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
D | daisy_chain_wrapper.py | 132 def StartDownloadThread(self, start_byte=0, progress_callback=None): argument 135 def PerformDownload(start_byte, progress_callback): argument 153 while start_byte + self._download_chunk_size < self.src_obj_size: 156 BufferWrapper(self), start_byte=start_byte, 157 end_byte=start_byte + self._download_chunk_size - 1, 165 start_byte += self._download_chunk_size 168 BufferWrapper(self), start_byte=start_byte, 182 args=(start_byte, progress_callback)) 275 self.StartDownloadThread(start_byte=offset,
|
D | cat_helper.py | 35 def CatUrlStrings(self, url_strings, show_header=False, start_byte=0, argument 74 start_byte=start_byte, end_byte=end_byte,
|
D | gcs_json_api.py | 634 download_strategy=CloudApi.DownloadStrategy.ONE_SHOT, start_byte=0, argument 658 progress_callback(start_byte, outer_total_size) 661 bytes_downloaded_container.bytes_transferred = start_byte 693 generation=generation, start_byte=start_byte, end_byte=end_byte, 698 apitools_download, generation=generation, start_byte=start_byte, 708 start_byte=0, end_byte=None, serialization_data=None): argument 710 last_progress_byte = start_byte 715 apitools_download, generation=generation, start_byte=start_byte, 718 start_byte = download_stream.tell() 719 bytes_downloaded_container.bytes_transferred = start_byte [all …]
|
D | tracker_file.py | 343 api_selector, start_byte, argument 377 return tracker_file_name, start_byte 422 start_byte) 423 return tracker_file_name, start_byte
|
D | boto_translation.py | 132 def __init__(self, start_byte, callback): argument 133 self._start_byte = start_byte 427 start_byte=0, end_byte=None, progress_callback=None, argument 437 headers['range'] = 'bytes=%s-%s' % (start_byte, end_byte) 438 elif start_byte > 0: 439 headers['range'] = 'bytes=%s-' % (start_byte) 440 elif start_byte < 0: 441 headers['range'] = 'bytes=%s' % (start_byte) 472 download_stream, start_byte, end_byte, key, 507 start_byte != 0) or [all …]
|
D | progress_callback.py | 123 def __init__(self, announce_text, logger, start_byte=0, argument 135 self._start_byte = start_byte
|
D | copy_helper.py | 1795 start_byte=args.start_byte, 1895 def __init__(self, fp, tracker_file_name, src_obj_metadata, start_byte, argument 1913 self._start_byte = start_byte 1982 start_byte = i * component_size 1984 component_lengths.append(end_byte - start_byte + 1) 1988 start_byte, end_byte)) 2065 digesters, component_num=None, start_byte=0, argument 2091 download_size = end_byte - start_byte + 1 2104 fp.seek(start_byte) 2110 api_selector, start_byte, [all …]
|
D | cloud_api_delegator.py | 218 start_byte=0, end_byte=None, progress_callback=None, argument 222 download_strategy=download_strategy, start_byte=start_byte,
|
D | cloud_api.py | 259 download_strategy=DownloadStrategy.ONE_SHOT, start_byte=0, argument
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/ |
D | cat.py | 119 start_byte = 0 133 start_byte = long(range_match.group('start')) 137 start_byte = long(range_match.group('endslice')) 143 start_byte=start_byte,
|
D | perfdiag.py | 299 args.start_byte, args.end_byte) 791 start_byte = i * component_size 794 start_byte, end_byte)) 1164 start_byte=0, end_byte=None): argument 1182 fp.seek(start_byte) 1189 provider=self.provider, start_byte=start_byte, end_byte=end_byte,
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/ |
D | concurrent.py | 249 start_byte = part_number * part_size 250 self._fileobj.seek(start_byte) 254 byte_range = (start_byte, start_byte + len(contents) - 1) 337 start_byte = part_number * part_size 338 f.seek(start_byte) 414 start_byte = part_number * part_size 415 byte_range = (start_byte, start_byte + part_size - 1)
|
/external/e2fsprogs/lib/ext2fs/ |
D | blkmap64_ba.c | 214 __u64 start_byte, len_byte = len >> 3; in ba_test_clear_bmap_extent() local 225 start_byte = start >> 3; in ba_test_clear_bmap_extent() 247 if (first_bit & ADDR[start_byte]) in ba_test_clear_bmap_extent() 252 start_byte++; in ba_test_clear_bmap_extent() 273 if (last_bit & ADDR[start_byte + len_byte]) in ba_test_clear_bmap_extent() 280 return ext2fs_mem_is_zero(ADDR + start_byte, len_byte); in ba_test_clear_bmap_extent()
|
D | gen_bitmap.c | 438 size_t start_byte, len_byte = len >> 3; in ext2fs_test_clear_generic_bitmap_range() local 448 start_byte = start >> 3; in ext2fs_test_clear_generic_bitmap_range() 470 if (first_bit & ADDR[start_byte]) in ext2fs_test_clear_generic_bitmap_range() 475 start_byte++; in ext2fs_test_clear_generic_bitmap_range() 496 if (last_bit & ADDR[start_byte + len_byte]) in ext2fs_test_clear_generic_bitmap_range() 503 return ext2fs_mem_is_zero(ADDR + start_byte, len_byte); in ext2fs_test_clear_generic_bitmap_range()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/ |
D | transfer_test.py | 80 for (start_byte, end_byte) in [(0, 25), (5, 15), (0, 0), (25, 25)]: 94 (start_byte, end_byte), 97 content=string.ascii_lowercase[start_byte:end_byte+1], 102 download.GetRange(start_byte, end_byte)
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/ |
D | test_daisy_chain_wrapper.py | 67 download_stream, start_byte=0, end_byte=None, argument 76 if bytes_read < start_byte:
|