Home | History | Annotate | Download | only in aarch64

Lines Matching defs:byte

84   stack_ = new byte[stack_size_];
88 byte* tos = stack_ + stack_size_;
91 // - The stack pointer must be 16-byte aligned.
718 int byte = kQRegSizeInBytes - 1;
720 // Print leading padding spaces. (Two spaces per byte.)
721 while (byte > msb) {
723 byte--;
726 // Print the specified part of the value, byte by byte.
729 while (byte >= lsb) {
730 fprintf(stream_, "%02x", rawbits.val[byte]);
731 byte--;
735 while (byte >= 0) {
737 byte--;