Searched refs:byte (Results 26 - 33 of 33) sorted by relevance

12

/darwin-on-arm/xnu/bsd/dev/i386/
H A Ddis_tables.c47 * Disassembly begins in dis_distable, which is equivalent to the One-byte
113 Mb, /* register or memory, always byte sized */
138 NORM, /* instructions w/o ModR/M byte, no memory access */
139 IMPLMEM, /* instructions w/o ModR/M byte, implicit mem access */
147 Ib, /* for push immediate byte */
222 #define FILL 0x90 /* Fill byte used for alignment (nop) */
373 * decode for scale from SIB byte
1006 /* Need to handle multi-byte NOP */
1449 * Even in 64 bit mode, usually only 4 byte immediate operands are supported.
1465 #define BYTE_OPND 0 /* w-bit value indicating byte registe
1481 int byte; local
1507 int byte; local
1565 int byte; local
[all...]
/darwin-on-arm/xnu/osfmk/console/panic_ui/
H A Dsetupdialog.c38 char byte; local
178 // if the first byte had a leading 1, this is a 3-byte encoding
327 most significant bit of the first byte is a 0, then the next seven bits are
329 a clut, in this case). If the msb of the first byte is a 1, then the next 15 bits
/darwin-on-arm/xnu/bsd/kern/
H A Dubc_subr.c3059 uint64_t bit, byte; local
3061 byte = bit >> 3;
3063 if ( byte > uip->cs_valid_bitmap_size ) {
3068 target_bitmap[byte] |= (1 << (bit & 07));
3071 target_bitmap[byte] &= ~(1 << (bit & 07));
3074 if ( target_bitmap[byte] & (1 << (bit & 07))) {
/darwin-on-arm/xnu/osfmk/i386/
H A Dproc_reg.h180 #define RDRAND_RAX .byte 0x48, 0x0f, 0xc7, 0xf0
H A Didt64.s66 .byte ist*16 ;\
67 .byte type ;\
456 * (packed into an 8-byte stack entry) and the 64-bit interrupt stack frame:
622 .byte 0x0f,0x35 /* 32-bit sysexit */
1181 * 104 user ss (16-byte aligned)
1406 subl $8, %esp /* for 16-byte stack alignment */
/darwin-on-arm/xnu/bsd/hfs/hfscommon/Misc/
H A DVolumeAllocation.c694 ; extents - An array of extents (byte ranges) that were freed.
708 /* Convert the byte range in *extents back to a range of allocation blocks. */
1254 u_int8_t byte; local
1285 byte = *buffer++;
1286 freeblocks += freebitcount[byte & 0x0F];
1287 freeblocks += freebitcount[(byte >> 4) & 0x0F];
/darwin-on-arm/xnu/osfmk/x86_64/
H A Didt64.s455 .byte 0x0f,0x35 /* 32-bit sysexit */
788 * Note that the user ss is originally 16-byte aligned, we'd popped the
790 * On taking the GP/NP fault on the iret instruction, the stack is 16-byte
791 * aligned before pushed the interrupt frame. Hence, an 8-byte padding exists.
808 * 104 user ss (16-byte aligned)
1003 subq $8, %rsp /* for 16-byte stack alignment */
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_subr.c2575 // allocate one byte extra so we can guarantee null termination
5136 * Notes: The kauth_filesec_t in 'vap', if any, is in host byte order.
8242 char byte; local
8247 byte = *((char *)tinfo->vnt_data);

Completed in 126 milliseconds

12