Home
last modified time | relevance | path

Searched refs:byte (Results 1 – 25 of 29) sorted by relevance

12

/xnu-11215/osfmk/x86_64/
H A DWKdmData_new.s33 .byte 0
35 .byte 8
41 .byte 4
49 .byte 8
53 .byte 4
65 .byte 8
78 .byte 4
79 .byte 8
85 .byte 4
95 .byte 8
[all …]
H A Dlz4_decode_x86_64.s372 .byte 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
373 .byte 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
374 .byte 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, …
375 .byte 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, …
376 .byte 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, …
377 .byte 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, …
378 .byte 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, …
393 .byte 32,32,32,30 // 0 .. 3
394 .byte 16,30,30,28 // 4 .. 7
395 .byte 16,27,30,22 // 8 .. 11
[all …]
H A Dstart.s538 #define operand_size_prefix .byte 0x66
539 #define address_size_prefix .byte 0x67
540 #define cs_base_prefix .byte 0x2e
544 .byte 0xea ;\
553 .byte 0x15 ;\
/xnu-11215/osfmk/arm64/
H A DWKdmData.s34 .byte 0
36 .byte 8
42 .byte 4
50 .byte 8
54 .byte 4
66 .byte 8
79 .byte 4
80 .byte 8
86 .byte 4
96 .byte 8
[all …]
H A Dlz4_decode_arm64.s309 .byte 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
310 .byte 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
311 .byte 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, …
312 .byte 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, …
313 .byte 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, …
314 .byte 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, …
315 .byte 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, …
330 .byte 32,32,32,30 // 0 .. 3
331 .byte 16,30,30,28 // 4 .. 7
332 .byte 16,27,30,22 // 8 .. 11
[all …]
/xnu-11215/osfmk/kdp/
H A Dkdp_serial.c48 if (byte == SKDP_START_CHAR || byte == SKDP_END_CHAR || byte == SKDP_ESC_CHAR || byte == '\n') { in kdp_serial_out()
50 byte = ~byte; in kdp_serial_out()
52 outFunc((char)byte); in kdp_serial_out()
59 unsigned char byte; in kdp_serialize_packet() local
72 byte = *packet++; in kdp_serialize_packet()
73 kdp_serial_out(byte, outFunc); in kdp_serialize_packet()
85 if (byte == SKDP_START_CHAR) { in kdp_unserialize_packet()
96 if (byte == SKDP_ESC_CHAR) { in kdp_unserialize_packet()
111 if (byte == SKDP_END_CHAR) { in kdp_unserialize_packet()
126 dsBuffer[dsPos++] = byte; in kdp_unserialize_packet()
[all …]
/xnu-11215/bsd/vfs/
H A Dvfs_utfconv.c445 unsigned int byte; in utf8_decodestr() local
466 if (byte < 0x80) { in utf8_decodestr()
484 ch += byte; in utf8_decodestr()
502 ch += byte; in utf8_decodestr()
533 ch += byte; in utf8_decodestr()
664 unsigned int byte; in utf8_validatestr() local
670 if (byte < 0x80) { in utf8_validatestr()
687 ch += byte; in utf8_validatestr()
704 ch += byte; in utf8_validatestr()
734 ch += byte; in utf8_validatestr()
[all …]
/xnu-11215/osfmk/corecrypto/
H A Dcchmac_init.c58 size_t byte = 0; in cchmac_init() local
60 for (; byte < key_len; ++byte) { in cchmac_init()
61 cchmac_data(di, hc)[byte] = key[byte] ^ 0x5c; in cchmac_init()
69 for (; byte < key_len; ++byte) { in cchmac_init()
70 cchmac_data(di, hc)[byte] ^= 0x5c; in cchmac_init()
84 for (byte = 0; byte < di->block_size; ++byte) { in cchmac_init()
85 cchmac_data(di, hc)[byte] ^= (0x5c ^ 0x36); in cchmac_init()
/xnu-11215/iokit/Kernel/
H A DIONVRAMCHRPHandler.cpp936 uint8_t byte; in unescapeBytesToData() local
943 byte = bytes[offset++]; in unescapeBytesToData()
944 if (byte == 0xFF) { in unescapeBytesToData()
945 byte = bytes[offset++]; in unescapeBytesToData()
946 if (byte == 0x00) { in unescapeBytesToData()
950 offset2 = byte & 0x7F; in unescapeBytesToData()
963 if (byte == 0xFF) { in unescapeBytesToData()
966 byte = (byte & 0x80) ? 0xFF : 0x00; in unescapeBytesToData()
1000 byte = *wherePtr++; in escapeDataToData()
1001 if ((byte == 0x00) || (byte == 0xFF)) { in escapeDataToData()
[all …]
/xnu-11215/bsd/skywalk/core/
H A Dskywalk.c1368 SK_MEMCMP_BYTEMASK_VERIFY(byte); in skywalk_memcmp_mask_self_tests()
1390 SK_MEMCMP_MASK_MATCH_VERIFY(byte, 16); in skywalk_memcmp_mask_self_tests()
1393 SK_MEMCMP_MASK_MATCH_VERIFY(byte, 32); in skywalk_memcmp_mask_self_tests()
1394 SK_MEMCMP_MASK_MATCH_VERIFY(byte, 16); in skywalk_memcmp_mask_self_tests()
1397 SK_MEMCMP_MASK_MATCH_VERIFY(byte, 48); in skywalk_memcmp_mask_self_tests()
1398 SK_MEMCMP_MASK_MATCH_VERIFY(byte, 32); in skywalk_memcmp_mask_self_tests()
1399 SK_MEMCMP_MASK_MATCH_VERIFY(byte, 16); in skywalk_memcmp_mask_self_tests()
1402 SK_MEMCMP_MASK_MATCH_VERIFY(byte, 64); in skywalk_memcmp_mask_self_tests()
1403 SK_MEMCMP_MASK_MATCH_VERIFY(byte, 48); in skywalk_memcmp_mask_self_tests()
1404 SK_MEMCMP_MASK_MATCH_VERIFY(byte, 32); in skywalk_memcmp_mask_self_tests()
[all …]
/xnu-11215/tests/skywalk/
H A Dskt_writemem.c132 uint8_t byte; in skt_readsmap_main() local
147 memcpy(&byte, (void *)channel->chd_schema + channel->chd_schema->csm_ring_ofs[0].sd_off, 1); in skt_readsmap_main()
168 uint8_t byte; in skt_writesmap_main() local
183 memcpy(&byte, (void *)channel->chd_schema + channel->chd_schema->csm_ring_ofs[0].sd_off, 1); in skt_writesmap_main()
186 memcpy((void *)channel->chd_schema + channel->chd_schema->csm_ring_ofs[0].sd_off, &byte, 1); in skt_writesmap_main()
/xnu-11215/osfmk/i386/
H A Dasm.h133 #define SVC .byte 0x9a; .long 0; .word 0x7
135 #define RPC_SVC .byte 0x9a; .long 0; .word 0xf
147 #define data16 .byte 0x66
148 #define addr16 .byte 0x67
H A Dfpu.c310 typedef struct { uint8_t byte[8]; } opmask_t; member
311 typedef struct { uint8_t byte[16]; } xmm_t; member
312 typedef struct { uint8_t byte[32]; } ymm_t; member
313 typedef struct { uint8_t byte[64]; } zmm_t; member
348 kprintf("%02x", xmm[i].byte[j]); in DBG_AVX512_STATE()
351 kprintf("%02x", ymmh[i].byte[j]); in DBG_AVX512_STATE()
354 kprintf("%02x", zmmh[i].byte[j]); in DBG_AVX512_STATE()
361 kprintf("%02x", zmm[i].byte[j]); in DBG_AVX512_STATE()
368 kprintf("%02x", k[i].byte[j]); in DBG_AVX512_STATE()
/xnu-11215/bsd/sys/
H A Dsystm.h219 int subyte(user_addr_t addr, int byte);
220 int suibyte(user_addr_t addr, int byte);
/xnu-11215/tools/lldbmacros/
H A Dpci.py83 read_vals = [DoPciCfgRead(32, bus, dev, func, offset + byte)
84 for byte in range(0, 16, 4)]
/xnu-11215/tools/lldbmacros/tests/lldbmock/
H A Dmemorymock.py219 byte = self._buf[idx // 8]
220 return byte & (1 << (idx % 8)) != 0
245 for byte in self._buf:
247 s += "1" if byte & (1 << bit) else "0"
/xnu-11215/osfmk/i386/commpage/
H A Dcommpage.h92 .byte 0xe8 ;\
/xnu-11215/libkern/c++/
H A DOSData.cpp366 OSData::appendByte(unsigned char byte, unsigned int inLength) in appendByte() argument
386 memset(&((unsigned char *)data)[length], byte, inLength); in appendByte()
/xnu-11215/bsd/net/
H A Dtrie_utility.c313 char *byte = (char *)&TRIE_BYTE(trie, trie->bytes_free_next); in net_trie_insert() local
317 byte[i] = string[j]; in net_trie_insert()
320 memcpy(byte, string, string_length); in net_trie_insert()
/xnu-11215/libkern/libkern/c++/
H A DOSData.h938 unsigned char byte,
/xnu-11215/bsd/vm/
H A Dvm_unix.c738 int byte) in subyte() argument
742 character = (char)byte; in subyte()
749 int byte) in suibyte() argument
753 character = (char)byte; in suibyte()
760 unsigned char byte; in fubyte() local
762 if (copyin(addr, (void *) &byte, sizeof(char))) { in fubyte()
765 return byte; in fubyte()
771 unsigned char byte; in fuibyte() local
773 if (copyin(addr, (void *) &(byte), sizeof(char))) { in fuibyte()
776 return byte; in fuibyte()
/xnu-11215/bsd/dev/i386/
H A Ddis_tables.c2414 int byte; in dtrace_get_opcode() local
2426 if (byte < 0) in dtrace_get_opcode()
2428 x->d86_bytes[x->d86_len++] = byte; in dtrace_get_opcode()
2440 int byte; in dtrace_get_SIB() local
2446 if (byte < 0) { in dtrace_get_SIB()
2450 x->d86_bytes[x->d86_len++] = byte; in dtrace_get_SIB()
2452 *base = byte & 0x7; in dtrace_get_SIB()
2453 *index = (byte >> 3) & 0x7; in dtrace_get_SIB()
2454 *ss = (byte >> 6) & 0x3; in dtrace_get_SIB()
2518 int byte; in dtrace_imm_opnd() local
[all …]
/xnu-11215/tests/vm/
H A Dvm_reclaim.c168 volatile uint8_t byte; in read_buffer() local
171 byte = buffer[i]; in read_buffer()
/xnu-11215/tools/tests/perf_index/
H A DREADME40 then writes a byte to every page to ensure it is paged in. Then copies n bytes
/xnu-11215/iokit/DriverKit/
H A DIOExtensiblePaniclog.iig110 * last written byte and continues until 'len'

12