Searched defs:start_byte (Results 1 - 3 of 3) sorted by relevance
/external/libchrome/sandbox/win/src/sidestep/ |
H A D | mini_disassembler.cpp | 29 unsigned char* start_byte, 35 unsigned char* current_byte = start_byte; 69 *instruction_bytes += operand_bytes_ + (current_byte - start_byte); 87 InstructionType MiniDisassembler::ProcessPrefixes(unsigned char* start_byte, argument 90 const Opcode& opcode = s_ia32_opcode_map_[0].table_[*start_byte]; 101 if (0xF2 == (*start_byte)) 103 else if (0xF3 == (*start_byte)) 105 else if (0x66 == (*start_byte)) 111 ProcessPrefixes(start_byte + 1, size); 119 InstructionType MiniDisassembler::ProcessOpcode(unsigned char* start_byte, argument 28 Disassemble( unsigned char* start_byte, unsigned int* instruction_bytes) argument 322 ProcessModrm(unsigned char* start_byte, unsigned int* size) argument 369 ProcessSib(unsigned char* start_byte, unsigned char mod, unsigned int* size) argument [all...] |
/external/e2fsprogs/lib/ext2fs/ |
H A D | blkmap64_ba.c | 214 __u64 start_byte, len_byte = len >> 3; local 225 start_byte = start >> 3; 247 if (first_bit & ADDR[start_byte]) 252 start_byte++; 273 if (last_bit & ADDR[start_byte + len_byte]) 280 return ext2fs_mem_is_zero(ADDR + start_byte, len_byte);
|
H A D | gen_bitmap.c | 438 size_t start_byte, len_byte = len >> 3; local 448 start_byte = start >> 3; 470 if (first_bit & ADDR[start_byte]) 475 start_byte++; 496 if (last_bit & ADDR[start_byte + len_byte]) 503 return ext2fs_mem_is_zero(ADDR + start_byte, len_byte);
|
Completed in 107 milliseconds