Home | History | Annotate | Download | only in processor

Lines Matching defs:bytes

152   // the most significant bytes will already be in the high field.
1583 // may be padded with 4 bytes on 64bit ABIs for alignment
1589 "bytes";
1941 unsigned int bytes =
1943 if (bytes % 2 == 0) {
1944 unsigned int utf16_words = bytes / 2;
1950 memcpy(&string_utf16[0], &misc_record->data, bytes);
2475 // may be padded with 4 bytes on 64bit ABIs for alignment
2481 "bytes";
2736 // may be padded with 4 bytes on 64bit ABIs for alignment
2742 "bytes";
4426 bool Minidump::ReadBytes(void* bytes, size_t count) {
4432 stream_->read(static_cast<char*>(bytes), count);
4501 uint32_t bytes;
4502 if (!ReadBytes(&bytes, sizeof(bytes))) {
4508 Swap(&bytes);
4510 if (bytes % 2 != 0) {
4511 BPLOG(ERROR) << "ReadString found odd-sized " << bytes <<
4515 unsigned int utf16_words = bytes / 2;
4527 if (!ReadBytes(&string_utf16[0], bytes)) {
4528 BPLOG(ERROR) << "ReadString could not read " << bytes <<