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

1234

/external/chromium_org/net/base/
H A Dbig_endian_unittest.cc14 uint8 u8; local
26 EXPECT_TRUE(reader.ReadU8(&u8));
27 EXPECT_EQ(0x4, u8);
41 uint8 u8; local
58 EXPECT_FALSE(reader.ReadU8(&u8));
80 uint8 u8 = 0; local
95 EXPECT_FALSE(writer.WriteU8(u8));
/external/linux-tools-perf/util/
H A Dtypes.h16 typedef unsigned char u8; typedef
/external/oprofile/libutil/
H A Dop_types.h20 typedef unsigned char u8; typedef
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dbasictypes_unittest.cc46 uint8 u8 = 1u; local
54 EXPECT_EQ(1u, sizeof(u8));
62 EXPECT_LT(0u, u8);
/external/chromium_org/third_party/openssl/openssl/crypto/aes/
H A Daes_locl.h71 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); }
80 typedef unsigned char u8; typedef
/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/openssh/
H A Drijndael.h35 typedef unsigned char u8; typedef
/external/openssl/crypto/aes/
H A Daes_locl.h71 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); }
80 typedef unsigned char u8; typedef
/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.h86 uint64_t u8; member in union:unaligned
137 return bswap_64 (up->u8);
138 return up->u8;
145 return (int64_t) bswap_64 (up->u8);
/external/kernel-headers/original/asm-arm/
H A Dtypes.h39 typedef unsigned char u8; typedef
/external/kernel-headers/original/asm-x86/
H A Dtypes.h48 typedef unsigned char u8; typedef
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DHex.java48 public static String u8(long v) { method in class:Hex
/external/chromium_org/third_party/skia/src/core/
H A DSkBuffer.h79 uint8_t u8; local
80 if (this->readU8(&u8)) {
81 *x = (u8 != 0);
/external/elfutils/libdw/
H A Dmemory-access.h183 uint64_t u8; member in union:unaligned
234 return bswap_64 (up->u8);
235 return up->u8;
242 return (int64_t) bswap_64 (up->u8);
/external/skia/src/core/
H A DSkBuffer.h79 uint8_t u8; local
80 if (this->readU8(&u8)) {
81 *x = (u8 != 0);
/external/valgrind/main/none/tests/amd64/
H A Davx-1.c14 typedef union { UChar u8[32]; UInt u32[8]; } YMM; member in union:__anon28668
23 printf("%02x", (UInt)vec->u8[i]);
/external/chromium_org/third_party/openssl/openssl/crypto/modes/
H A Dmodes_lcl.h26 typedef unsigned char u8; typedef
86 #define PUTU32(p,v) ((p)[0]=(u8)((v)>>24),(p)[1]=(u8)((v)>>16),(p)[2]=(u8)((v)>>8),(p)[3]=(u8)(v))
104 union { u64 u[2]; u32 d[4]; u8 c[16]; } Yi,EKi,EK0,len,
113 void (*ghash)(u64 Xi[2],const u128 Htable[16],const u8 *inp,size_t len);
126 union { u64 u[2]; u8 c[16]; } nonce, cmac;
/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/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.h88 __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 696 milliseconds

1234