Searched refs:byte (Results 1 - 22 of 22) sorted by relevance

/xnu-2422.115.4/osfmk/x86_64/
H A DWKdmData_new.s33 .byte 0
34 .byte 52
35 .byte 8
36 .byte 56
37 .byte 16
38 .byte 12
39 .byte 28
40 .byte 20
41 .byte 4
42 .byte 3
[all...]
H A Dstart.s219 xor %ah, %ah /* Security: zero second byte of stack canary */
540 #define operand_size_prefix .byte 0x66
541 #define address_size_prefix .byte 0x67
542 #define cs_base_prefix .byte 0x2e
546 .byte 0xea ;\
555 .byte 0x15 ;\
/xnu-2422.115.4/osfmk/kdp/
H A Dkdp_serial.c43 unsigned char byte = *packet++; local
45 if(byte == SKDP_START_CHAR || byte == SKDP_END_CHAR || byte == SKDP_ESC_CHAR || byte == '\n')
48 byte = ~byte;
50 outFunc(byte);
55 unsigned char *kdp_unserialize_packet(unsigned char byte, unsigned int *len) argument
60 if(byte
[all...]
/xnu-2422.115.4/bsd/vfs/
H A Dvfs_utfconv.c173 * a NULL termination byte). The string must reside in kernel memory.
179 * UTF_REVERSE_ENDIAN: Unicode byte order is opposite current runtime
181 * UTF_BIG_ENDIAN: Unicode byte order is always big endian
183 * UTF_LITTLE_ENDIAN: Unicode byte order is always little endian
246 * UTF_BIG_ENDIAN: Unicode byte order is always big endian
248 * UTF_LITTLE_ENDIAN: Unicode byte order is always little endian
393 * UTF_REV_ENDIAN: Unicode byte order is opposite current runtime
395 * UTF_BIG_ENDIAN: Unicode byte order is always big endian
397 * UTF_LITTLE_ENDIAN: Unicode byte order is always little endian
417 unsigned int byte; local
630 unsigned int byte; local
742 unsigned int byte; local
[all...]
H A Dvfs_subr.c2575 // allocate one byte extra so we can guarantee null termination
5140 * Notes: The kauth_filesec_t in 'vap', if any, is in host byte order.
8256 char byte; local
8261 byte = *((char *)tinfo->vnt_data);
/xnu-2422.115.4/bsd/dev/vn/
H A Dshadow.c102 uint32_t byte; member in struct:__anon37
115 * Return a byte value in which bits numbered lower than 'b' are set.
126 * Set the given range of bits within a byte.
139 b.byte = where / NBBY;
151 * units, using longs, then a short, then a byte, then bits.
161 if (start.byte < end.byte) {
165 map[start.byte] |= byte_set_bits(start.bit, NBBY - 1);
167 start.byte++;
168 if (start.byte
[all...]
/xnu-2422.115.4/osfmk/vm/
H A Dvm_external.c246 uint64_t bit, byte; local
251 byte = bit >> 3;
252 if (map[byte] & (1 << (bit & 07))) {
264 uint64_t bit, byte; local
270 byte = bit >> 3;
271 map[byte] |= (1 << (bit & 07));
279 uint64_t bit, byte; local
285 byte = bit >> 3;
286 map[byte] &= ~(1 << (bit & 07));
/xnu-2422.115.4/bsd/nfs/
H A Dnfs_gss_crypto.c80 int byte, i, msbit; local
104 byte = 0;
109 /* compute the msbit in k which gets added into this byte */
111 byte */
113 /* then, for each byte, shift to the right for each
116 /* last, pick out the correct byte within that
121 /* pull out the byte value itself */
122 byte += (((in[((inbits-1)-(msbit>>3))%inbits]<<8)|
127 byte += out[i%outbits];
128 out[i%outbits] = byte
[all...]
/xnu-2422.115.4/bsd/hfs/
H A Dhfs_endian.h65 #warning Unknown byte order
/xnu-2422.115.4/iokit/Kernel/
H A DIONVRAM.cpp1440 UInt8 byte;
1447 byte = bytes[cnt++];
1448 if (byte == 0xFF) {
1449 byte = bytes[cnt++];
1450 if (byte == 0x00) {
1454 cnt2 = byte & 0x7F;
1465 byte = bytes[cnt++];
1466 if (byte == 0xFF) {
1467 byte = bytes[cnt++];
1468 cnt2 = byte
[all...]
/xnu-2422.115.4/bsd/sys/
H A Dsystm.h210 int subyte(user_addr_t addr, int byte);
211 int suibyte(user_addr_t addr, int byte);
/xnu-2422.115.4/libkern/libkern/c++/
H A DOSData.h57 * overwrite portions of the byte array.
124 * An instance of OSData containing a copy of the provided byte array,
149 * A instance of OSData that shares the provided byte array,
163 * but you can get the byte pointer and
295 * but you can get the byte pointer and
602 * byte buffers hold the same contents.
692 * Appends a single byte value
696 * @param byte The byte value to append.
697 * @param numBytes The number of copies of <code>byte</cod
[all...]
/xnu-2422.115.4/osfmk/i386/commpage/
H A Dcommpage.h103 .byte 0xe8 ;\
/xnu-2422.115.4/osfmk/i386/
H A Dasm.h139 #define SVC .byte 0x9a; .long 0; .word 0x7
141 #define RPC_SVC .byte 0x9a; .long 0; .word 0xf
153 #define data16 .byte 0x66
154 #define addr16 .byte 0x67
H A Dproc_reg.h180 #define RDRAND_RAX .byte 0x48, 0x0f, 0xc7, 0xf0
/xnu-2422.115.4/tools/lldbmacros/
H A Dpci.py81 # Print mem-mapped address at beginning of each 16-byte line
83 read_vals = [DoPciCfgRead(32, bus, dev, func, offset + byte)
84 for byte in range(0, 16, 4)]
/xnu-2422.115.4/bsd/vm/
H A Dvm_unix.c276 int byte)
280 character = (char)byte;
287 int byte)
291 character = (char)byte;
297 unsigned char byte; local
299 if (copyin(addr, (void *) &byte, sizeof(char)))
301 return(byte);
306 unsigned char byte; local
308 if (copyin(addr, (void *) &(byte), sizeof(char)))
310 return(byte);
274 subyte( user_addr_t addr, int byte) argument
285 suibyte( user_addr_t addr, int byte) argument
[all...]
/xnu-2422.115.4/libkern/c++/
H A DOSData.cpp274 bool OSData::appendByte(unsigned char byte, unsigned int inLength) argument
288 memset(&((unsigned char *)data)[length], byte, inLength);
366 // that includes a termination byte and will thus have
368 // case we verify that the additional byte is a terminator
/xnu-2422.115.4/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...]
/xnu-2422.115.4/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
/xnu-2422.115.4/bsd/kern/
H A Dubc_subr.c3482 uint64_t bit, byte; local
3484 byte = bit >> 3;
3486 if ( byte > uip->cs_valid_bitmap_size ) {
3491 target_bitmap[byte] |= (1 << (bit & 07));
3494 target_bitmap[byte] &= ~(1 << (bit & 07));
3497 if ( target_bitmap[byte] & (1 << (bit & 07))) {
/xnu-2422.115.4/bsd/hfs/hfscommon/Misc/
H A DVolumeAllocation.c613 ; extents - An array of extents (byte ranges) that were freed.
628 /* Convert the byte range in *extents back to a range of allocation blocks. */
1297 u_int8_t byte; local
1328 byte = *buffer++;
1329 freeblocks += freebitcount[byte & 0x0F];
1330 freeblocks += freebitcount[(byte >> 4) & 0x0F];
1447 ; offset -- byte offset into the bitmap file
1481 * The byte offset argument must be converted into bitmap-relative logical
1485 * reconstruct the byte offset into the file by multiplying the logical
1487 * point. So we prepare for that by converting the byte offse
[all...]

Completed in 106 milliseconds