Searched refs:uint8_t (Results 1 - 25 of 172) sorted by relevance

1234567

/darwin-on-arm/xnu/EXTERNAL_HEADERS/corecrypto/
H A Dccder.h21 typedef uint8_t ccder_tag;
114 uint8_t *ccder_encode_tag(ccder_tag tag, const uint8_t *der, uint8_t *der_end);
119 uint8_t *
120 ccder_encode_len(size_t len, const uint8_t *der, uint8_t *der_end);
124 uint8_t *
125 ccder_encode_tl(ccder_tag tag, size_t len, const uint8_t *der, uint8_t *der_en
[all...]
H A Dcc.h28 uint8_t b[_alignment_]; \
49 uint8_t *_r=(uint8_t *)r;
50 const uint8_t *_s=(uint8_t *)s;
51 const uint8_t *_t=(uint8_t *)t;
/darwin-on-arm/xnu/libkern/libkern/crypto/
H A Daesxts.h57 const uint8_t *IV, // ignored
58 const uint8_t *key1, int keylen,
59 const uint8_t *key2, int tweaklen, // both keys are the same size for xts
64 int xts_encrypt(const uint8_t *pt, unsigned long ptlen,
65 uint8_t *ct,
66 const uint8_t *tweak, // this can be considered the sector IV for this use
69 int xts_decrypt(const uint8_t *ct, unsigned long ptlen,
70 uint8_t *pt,
71 const uint8_t *tweak, // this can be considered the sector IV for this use
/darwin-on-arm/xnu/bsd/net/
H A Dbridgestp.h233 uint8_t cbu_dsap; /* LLC: destination sap */
234 uint8_t cbu_ssap; /* LLC: source sap */
235 uint8_t cbu_ctl; /* LLC: control */
237 uint8_t cbu_protover; /* protocol version */
238 uint8_t cbu_bpdutype; /* message type */
239 uint8_t cbu_flags; /* flags (below) */
243 uint8_t cbu_rootaddr[6]; /* root address */
249 uint8_t cbu_bridgeaddr[6]; /* bridge address */
256 uint8_t cbu_versionlen; /* version 1 length */
263 uint8_t tbu_dsa
[all...]
H A Dif_bridgevar.h164 uint8_t ifbr_portno; /* member if port number */
165 uint8_t ifbr_priority; /* member if STP priority */
166 uint8_t ifbr_proto; /* member if STP protocol */
167 uint8_t ifbr_role; /* member if STP role */
168 uint8_t ifbr_state; /* member if STP state */
172 uint8_t pad[32];
272 uint8_t ifba_flags; /* address flags */
273 uint8_t ifba_dst[ETHER_ADDR_LEN];/* destination address */
282 uint8_t ifba_flags; /* address flags */
283 uint8_t ifba_ds
[all...]
H A Diptap.h49 uint8_t version;
51 uint8_t type;
53 uint8_t io;
/darwin-on-arm/xnu/bsd/i386/
H A Dfasttrap_isa.h46 typedef uint8_t fasttrap_instr_t;
49 uint8_t ftmt_instr[FASTTRAP_MAX_INSTR_SIZE]; /* orig. instr. */
50 uint8_t ftmt_size; /* instruction size */
52 uint8_t ftmt_ripmode; /* %rip-relative handling mode */
53 uint8_t ftmt_modrm; /* saved modrm byte */
55 uint8_t ftmt_type; /* emulation type */
56 uint8_t ftmt_code; /* branch condition */
57 uint8_t ftmt_base; /* branch base */
58 uint8_t ftmt_index; /* branch index */
59 uint8_t ftmt_scal
[all...]
/darwin-on-arm/xnu/osfmk/lockd/
H A Dlockd_mach_types.h47 typedef uint8_t nfs_handle[NFSV3_MAX_FH_SIZE];
/darwin-on-arm/xnu/libkern/crypto/
H A Dcorecrypto_aesxts.c42 const uint8_t *IV __unused, // ignored
43 const uint8_t *key1, int keylen,
44 const uint8_t *key2, int tweaklen __unused, // both keys are the same size for xts
70 int xts_encrypt(const uint8_t *pt, unsigned long ptlen,
71 uint8_t *ct,
72 const uint8_t *iv, // this can be considered the sector IV for this use
86 int xts_decrypt(const uint8_t *ct, unsigned long ptlen,
87 uint8_t *pt,
88 const uint8_t *iv, // this can be considered the sector IV for this use
/darwin-on-arm/xnu/bsd/netinet6/
H A Dmld6.h76 uint8_t mld_misc; /* reserved/suppress/robustness */
77 uint8_t mld_qqi; /* querier's query interval */
102 uint8_t mr_type; /* record type */
103 uint8_t mr_datalen; /* length of auxiliary data */
/darwin-on-arm/xnu/iokit/IOKit/
H A DAppleKeyStoreInterface.h42 uint8_t keybytes[AKS_MAX_KEY_SIZE];
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOHibernateInternal.h54 uint8_t * consoleMapping;
55 uint8_t haveFastBoot;
56 uint8_t saveBootAudioVolume;
57 uint8_t wiredCryptKey[kIOHibernateAESKeySize / 8];
58 uint8_t cryptKey[kIOHibernateAESKeySize / 8];
59 uint8_t volumeCryptKey[kIOHibernateAESKeySize / 8];
69 uint8_t * buffer;
105 hibernate_sum_page(uint8_t *buf, uint32_t ppnum);
H A DIOPMrootDomainInternal.h65 uint8_t varName[PMVARNAMELEN+1];
/darwin-on-arm/xnu/pexpert/pexpert/arm/
H A Dprotos.h79 static inline void regwrite8(uint8_t addr, uint8_t data)
81 *(volatile uint8_t *)addr = data;
84 static inline uint8_t regread8(uint8_t addr)
86 uint8_t value = *(volatile uint8_t *)addr;
/darwin-on-arm/xnu/libkern/uuid/
H A Duuid.c48 read_node(uint8_t *node)
105 out[0] = (uint8_t)(time >> 24);
106 out[1] = (uint8_t)(time >> 16);
107 out[2] = (uint8_t)(time >> 8);
108 out[3] = (uint8_t)time;
109 out[4] = (uint8_t)(time >> 40);
110 out[5] = (uint8_t)(time >> 32);
111 out[6] = (uint8_t)(time >> 56);
112 out[7] = (uint8_t)(time >> 48);
/darwin-on-arm/xnu/EXTERNAL_HEADERS/mach-o/
H A Dnlist.h83 uint8_t n_type; /* type flag, see below */
84 uint8_t n_sect; /* section number or NO_SECT */
96 uint8_t n_type; /* type flag, see below */
97 uint8_t n_sect; /* section number or NO_SECT */
/darwin-on-arm/xnu/osfmk/i386/
H A Dcpuid.h276 uint8_t version;
277 uint8_t number;
278 uint8_t width;
279 uint8_t events_number;
281 uint8_t fixed_number;
282 uint8_t fixed_width;
292 uint8_t cpuid_family;
293 uint8_t cpuid_model;
294 uint8_t cpuid_extmodel;
295 uint8_t cpuid_extfamil
[all...]
H A Dlocks.h126 extern void hw_lock_byte_init(volatile uint8_t *lock_byte);
127 extern void hw_lock_byte_lock(volatile uint8_t *lock_byte);
128 extern void hw_lock_byte_unlock(volatile uint8_t *lock_byte);
194 volatile uint8_t lck_rw_interlock; /* Interlock byte */
195 volatile uint8_t
/darwin-on-arm/xnu/bsd/sys/
H A Ddisk.h92 uint8_t reserved0096[4]; /* reserved, clear to zero */
101 uint8_t reserved0096[4]; /* reserved, clear to zero */
103 uint8_t reserved0064[8]; /* reserved, clear to zero */
113 uint8_t reserved0096[4]; /* reserved, clear to zero */
115 uint8_t reserved0064[8]; /* reserved, clear to zero */
160 uint8_t reserved0128[12]; /* reserved, clear to zero */
H A Duser.h209 uint8_t t_dtrace_stop; /* indicates a DTrace desired stop */
210 uint8_t t_dtrace_sig; /* signal sent via DTrace's raise() */
215 uint8_t _t_dtrace_on; /* hit a fasttrap tracepoint */
216 uint8_t _t_dtrace_step; /* about to return to kernel */
217 uint8_t _t_dtrace_ret; /* handling a return probe */
218 uint8_t _t_dtrace_ast; /* saved ast flag */
220 uint8_t _t_dtrace_reg; /* modified register */
H A Dcprotect.h106 uint8_t cp_cache_key[CP_MAX_KEYSIZE];
108 uint8_t cp_persistent_key[];
117 uint8_t wrap_functions_set;
118 uint8_t lock_state;
134 uint8_t persistent_key[CP_V2_WRAPPEDKEYSIZE];
148 uint8_t persistent_key[CP_MAX_WRAPPEDKEYSIZE];
H A Dfasttrap_impl.h130 uint8_t *ftp_argmap; /* native to translated args */
131 uint8_t ftp_nargs; /* translated argument count */
132 uint8_t ftp_enabled; /* is this probe enabled */
156 uint8_t ftb_pad[64 - sizeof (lck_mtx_t) - sizeof (void *)];
H A Dfbt.h33 typedef uint8_t machine_inst_t;
/darwin-on-arm/xnu/osfmk/i386/vmx/
H A Dvmx_cpu.h44 uint8_t vmcs_mem_type; /* VMCS memory type, (see enum above) */
50 uint8_t cr3_targs; /* CR3 target values supported */
/darwin-on-arm/xnu/EXTERNAL_HEADERS/
H A Dstdint.h33 typedef u_int8_t uint8_t; /* u_int8_t is defined in <machine/types.h> */ typedef
44 typedef uint8_t uint_least8_t;
55 typedef uint8_t uint_fast8_t;
186 #define UINT8_C(v) ((uint8_t)v)

Completed in 127 milliseconds

1234567