Searched defs:u8 (Results 1 - 25 of 76) sorted by relevance

1234

/external/autotest/client/deps/glbench/src/
H A Dmd5.h11 typedef uint8_t u8; typedef
16 u8 in[64];
/external/autotest/client/profilers/powertop/src/
H A Dethernet.c41 #define u8 __u8 macro
46 #undef u8 macro
H A Dwireless.c41 #define u8 __u8 macro
46 #undef u8 macro
/external/google-breakpad/src/common/
H A Dmd5.h11 typedef uint8_t u8; typedef in namespace:google_breakpad
16 u8 in[64];
/external/google-breakpad/src/processor/
H A Dbinarystream.cc58 binarystream &binarystream::operator>>(uint8_t &u8) { argument
59 stream_.read((char *)&u8, 1);
99 binarystream &binarystream::operator<<(uint8_t u8) { argument
100 stream_.write((const char*)&u8, 1);
H A Dbinarystream_unittest.cc50 uint8_t u8 = 0; local
52 stream >> u8; local
54 EXPECT_EQ(0U, u8);
59 stream >> u8; local
60 EXPECT_EQ(1, u8);
266 uint8_t u8 = 0; local
272 stream >> u8 >> u16 >> u32 >> u64 >> s;
274 EXPECT_EQ(e8, u8);
/external/liblzf/
H A DlzfP.h156 typedef unsigned char u8; typedef
159 # define LZF_HSLOT_BIAS ((const u8 *)in_data)
163 typedef const u8 *LZF_HSLOT;
H A Dlzf.c56 typedef unsigned char u8; typedef
180 u8 buf1[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16];
181 u8 buf2[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16];
182 u8 *header;
221 u8 header[MAX_HDR_SIZE];
222 u8 buf1[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16];
223 u8 buf2[MAX_BLOCKSIZE + MAX_HDR_SIZE + 16];
224 u8 *p;
/external/valgrind/memcheck/tests/vbit-test/
H A Dvbits.h40 uint8_t u8; member in union:__anon20091::__anon20092
54 uint8_t u8; member in union:__anon20093
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DHex.java36 public static String u8(long v) { method in class:Hex
/external/elfutils/libcpu/
H A Dmemory-access.h89 uint64_t u8; member in union:unaligned
140 return bswap_64 (up->u8);
141 return up->u8;
148 return (int64_t) bswap_64 (up->u8);
/external/icu/icu4c/source/i18n/
H A Dutf8collationiterator.h36 u8(s), pos(p), length(len) {}
69 const uint8_t *u8; member in class:UTF8CollationIterator
/external/smali/util/src/main/java/org/jf/util/
H A DHex.java48 public static String u8(long v) { method in class:Hex
/external/dhcpcd-6.8.2/dbus/
H A Ddbus-dict.c175 uint8_t u8, u8_2; local
192 ok = (sscanf(it++, "%1hhx", &u8) == 1) &&
194 &u8);
198 /* sscanf("1z", "%2hhx", &u8) will store 0x01 in u8 and
200 ok = (sscanf(it++, "%1hhx", &u8) == 1) &&
205 u8 = (u8 << 4) | u8_2;
206 ok = dbus_message_iter_append_basic(&array, DBUS_TYPE_BYTE, &u8);
/external/skia/src/core/
H A DSkBuffer.h80 uint8_t u8; local
81 if (this->readU8(&u8)) {
82 *x = (u8 != 0);
/external/valgrind/none/tests/amd64/
H A Davx-1.c14 typedef union { UChar u8[32]; UInt u32[8]; } YMM; member in union:__anon20110
23 printf("%02x", (UInt)vec->u8[i]);
H A Davx2-1.c20 typedef union { UChar u8[32]; UInt u32[8]; } YMM; member in union:__anon20112
29 printf("%02x", (UInt)vec->u8[i]);
/external/clang/test/CodeGen/
H A Dx86_64-arguments-nacl.c39 union u8 { union
43 union u8 f8_1() { while (1) {} }
44 void f8_2(union u8 a0) {}
/external/clang/test/Sema/
H A Dcompare.c241 unsigned int u8 : 8; member in struct:foo
248 if (x->u8 == i32) { // comparison in int32, exact
/external/dnsmasq/contrib/wrt/
H A Ddhcp_lease_time.c57 typedef unsigned char u8; typedef
62 u8 op, htype, hlen, hops;
66 u8 chaddr[DHCP_CHADDR_MAX], sname[64], file[128];
/external/elfutils/libdw/
H A Dmemory-access.h169 uint64_t u8; member in union:unaligned
232 return up->u8;
239 return bswap_64 (up->u8);
240 return up->u8;
247 return (int64_t) bswap_64 (up->u8);
/external/iproute2/include/linux/netfilter/
H A Dx_tables.h93 __u8 u8; member in struct:_xt_align
/external/iptables/include/linux/netfilter/
H A Dx_tables.h93 __u8 u8; member in struct:_xt_align
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dx_tables.h93 __u8 u8; member in struct:_xt_align
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
H A Dnfc_hal_nci.c55 UINT8 u8; local
70 u8 = *p++;
72 hdr[0] = u8 & ~NCI_PBF_MASK;
73 if ((u8 & NCI_MT_MASK) == NCI_MT_DATA)
132 if ((u8 & NCI_PBF_MASK) == NCI_PBF_NO_OR_LAST)
137 *p = u8; /* this should make the PBF flag as Last Fragment */

Completed in 673 milliseconds

1234