HomeSort by: relevance | last modified time | path
    Searched defs:uint8_t (Results 1 - 25 of 119) sorted by relevancy

1 2 3 4 5

  /src/external/bsd/elftosb/dist/common/
Blob.h 25 Blob(const uint8_t * data, unsigned length);
36 void setData(const uint8_t * data, unsigned length);
42 void append(const uint8_t * newData, unsigned newDataLength);
53 uint8_t * getData() { return m_data; }
54 const uint8_t * getData() const { return m_data; }
60 operator uint8_t * () { return m_data; }
61 operator const uint8_t * () const { return m_data; }
65 uint8_t * m_data; //!< The binary data held by this object.
stdafx.h 34 //typedef unsigned char uint8_t;
67 typedef unsigned char uint8_t; typedef
  /src/tests/usr.bin/xlint/lint1/
msg_129.c 8 typedef unsigned char uint8_t; typedef
25 uint8_buffer_write_uint32(uint8_t *c, uint32_t l)
27 (*(c++) = (uint8_t)(l & 0xff),
28 *(c++) = (uint8_t)((l >> 8L) & 0xff),
29 *(c++) = (uint8_t)((l >> 16L) & 0xff),
30 *(c++) = (uint8_t)((l >> 24L) & 0xff));
  /src/external/bsd/libpcap/dist/pcap/
pcap-inttypes.h 60 typedef unsigned char uint8_t; typedef
  /src/external/bsd/elftosb/dist/
stdafx.h 33 //typedef unsigned char uint8_t;
51 typedef unsigned char uint8_t; typedef
  /src/external/gpl3/gcc/dist/libgcc/config/sh/
linux-atomic.c 39 typedef unsigned char uint8_t; typedef
61 func1 (name, uint8_t) \
  /src/external/gpl3/gcc.old/dist/libgcc/config/sh/
linux-atomic.c 39 typedef unsigned char uint8_t; typedef
61 func1 (name, uint8_t) \
  /src/external/public-domain/xz/dist/src/liblzma/api/
lzma.h 46 * - stdint.h: uint8_t, uint32_t, uint64_t, UINT32_C(n), uint64_C(n),
53 * exists and that it typedefs at least uint8_t, uint32_t, and uint64_t,
99 typedef unsigned __int8 uint8_t; typedef
  /src/sys/arch/hpc/stand/include/machine/
types.h 23 typedef unsigned char uint8_t; typedef
29 typedef uint8_t u_int8_t;
  /src/sys/sys/
stdint.h 44 typedef __uint8_t uint8_t; typedef
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
MD5.h 51 uint8_t buffer[64];
56 std::array<uint8_t, 16> Bytes;
58 operator std::array<uint8_t, 16>() const { return Bytes; }
60 const uint8_t &operator[](size_t I) const { return Bytes[I]; }
61 uint8_t &operator[](size_t I) { return Bytes[I]; }
85 void update(ArrayRef<uint8_t> Data);
98 static std::array<uint8_t, 16> hash(ArrayRef<uint8_t> Data);
101 const uint8_t *body(ArrayRef<uint8_t> Data)
    [all...]
  /src/external/bsd/libbind/dist/port/decunix/include/sys/
bitypes.h 43 typedef unsigned char uint8_t; typedef
  /src/sys/arch/dreamcast/dev/microcode/
aica_arm.c 29 typedef unsigned char uint8_t; typedef
38 (*(volatile uint8_t *)(DC_REG_ADDR + (off)))
44 ((*(volatile uint8_t *)(DC_REG_ADDR + (off))) = (val))
  /src/sys/arch/hp300/dev/
diofbreg.h 66 uint8_t :8; member in struct:diofbreg
67 uint8_t id; /* id and reset register 0x01 */
68 uint8_t sec_interrupt; /* secondary interrupt register 0x02 */
69 uint8_t interrupt; /* interrupt register 0x03 */
70 uint8_t :8; member in struct:diofbreg
71 uint8_t fbwmsb; /* frame buffer width MSB 0x05 */
72 uint8_t :8; member in struct:diofbreg
73 uint8_t fbwlsb; /* frame buffer height LSB 0x07 */
74 uint8_t :8; member in struct:diofbreg
75 uint8_t fbhmsb; /* frame buffer height MSB 0x09 *
76 uint8_t :8; member in struct:diofbreg
78 uint8_t :8; member in struct:diofbreg
80 uint8_t :8; member in struct:diofbreg
82 uint8_t :8; member in struct:diofbreg
84 uint8_t :8; member in struct:diofbreg
86 uint8_t :8; member in struct:diofbreg
90 uint8_t :8; member in struct:diofbreg
92 uint8_t :8; member in struct:diofbreg
    [all...]
gboxreg.h 74 uint8_t f2[0x4000-0x5f-1];
75 uint8_t crtc_address; /* CTR controller address reg 0x4000 */
76 uint8_t status; /* Status register 0x4001 */
77 uint8_t crtc_data; /* CTR controller data reg 0x4002 */
78 uint8_t f3[6];
79 uint8_t line_mover_rep_rule; /* Line move rep rule */
80 uint8_t :8, :8; member in struct:gboxfb
81 uint8_t line_mover_width; /* Line move width */
82 uint8_t f4[0xff3];
83 uint8_t width; /* width in tiles 0x5001 *
84 uint8_t :8; member in struct:gboxfb
102 uint8_t :8; member in struct:gboxfb
104 uint8_t :8; member in struct:gboxfb
    [all...]
topcatreg.h 56 uint8_t f2[0x4040-0x5f-1];
57 uint8_t vblank; /* vertical blanking 0x4040 */
58 uint8_t :8,:8,:8; member in struct:tcboxfb
59 uint8_t busy; /* window move active 0x4044 */
60 uint8_t :8,:8,:8; member in struct:tcboxfb
61 uint8_t vtrace_request; /* vert retrace intr request 0x4048 */
62 uint8_t :8,:8,:8; member in struct:tcboxfb
63 uint8_t move_request; /* window move intr request 0x404C */
64 uint8_t f3[0x4080-0x404c-1];
65 uint8_t nblank; /* display enable planes 0x4080 *
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/include/openssl/
e_os2.h 233 typedef UINT8 uint8_t; typedef
250 typedef unsigned char uint8_t; typedef
  /src/external/gpl3/binutils/dist/gprofng/common/
cpu_frequency.h 33 typedef unsigned char uint8_t; typedef
122 get_cpu_frequency (uint8_t *mode)
  /src/external/gpl3/binutils.old/dist/gprofng/common/
cpu_frequency.h 33 typedef unsigned char uint8_t; typedef
122 get_cpu_frequency (uint8_t *mode)
  /src/external/gpl3/gdb.old/dist/gdb/
expression.h 44 enum exp_opcode : uint8_t enum
  /src/external/gpl3/gdb/dist/gdb/
expression.h 44 enum exp_opcode : uint8_t enum
  /src/sys/dev/ieee1394/
fwphyreg.h 47 uint8_t phy_id:6,
50 uint8_t rhb:1,
53 uint8_t extended:3,
55 uint8_t phy_speed:3,
58 uint8_t lctrl:1,
62 uint8_t wdie:1,
70 uint8_t legacy_spd:3,
74 uint8_t page_select:3,
78 uint8_t cps:1,
81 uint8_t gap_count:6
138 uint8_t :5, member in struct:phyreg_page0
142 uint8_t :8; member in struct:phyreg_page0
143 uint8_t :8; member in struct:phyreg_page0
181 uint8_t :8; member in struct:phyreg_page1
    [all...]
iec68113.h 50 uint8_t eoh0:1, /* 0 */
54 uint8_t src:6,
58 uint8_t len;
60 uint8_t fn:2,
65 uint8_t :2, member in struct:ciphdr
70 uint8_t dbc;
72 uint8_t eoh1:1, /* 1 */
76 uint8_t fmt:6,
85 uint8_t fs:1, /* 50/60 field system
90 uint8_t :2
124 uint8_t :3, member in struct:dvdbc
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/aarch64/
efibind.h 30 typedef unsigned char uint8_t; typedef
57 typedef uint8_t UINT8;
  /src/sys/external/bsd/gnu-efi/dist/inc/arm/
efibind.h 30 typedef unsigned char uint8_t; typedef
65 typedef uint8_t UINT8;

Completed in 49 milliseconds

1 2 3 4 5