Searched defs:uint32_t (Results 1 - 25 of 102) sorted by relevance

12345

/external/chromium_org/third_party/angle/src/third_party/murmurhash/
H A DMurmurHash3.h16 typedef unsigned long uint32_t; typedef
29 void MurmurHash3_x86_32 ( const void * key, int len, uint32_t seed, void * out );
31 void MurmurHash3_x86_128 ( const void * key, int len, uint32_t seed, void * out );
33 void MurmurHash3_x64_128 ( const void * key, int len, uint32_t seed, void * out );
/external/chromium_org/third_party/npapi/npspy/extern/plugin/
H A Dnptypes.h50 typedef unsigned int uint32_t; typedef
69 * BSD/OS ships no header that defines uint32_t, nor bool (for C)
72 typedef u_int32_t uint32_t; typedef
79 * FreeBSD and OpenBSD define uint32_t and bool.
/external/chromium_org/third_party/smhasher/src/
H A DMurmurHash1.h16 typedef unsigned long uint32_t; typedef
29 uint32_t MurmurHash1 ( const void * key, int len, uint32_t seed );
30 uint32_t MurmurHash1Aligned ( const void * key, int len, uint32_t seed );
H A DMurmurHash2.h16 typedef unsigned long uint32_t; typedef
29 uint32_t MurmurHash2 ( const void * key, int len, uint32_t seed );
32 uint32_t MurmurHash2A ( const void * key, int len, uint32_t seed );
33 uint32_t MurmurHashNeutral2 ( const void * key, int len, uint32_t seed );
34 uint32_t MurmurHashAligned2 ( const void * key, int len, uint32_t seed );
H A DMurmurHash3.h16 typedef unsigned long uint32_t; typedef
29 void MurmurHash3_x86_32 ( const void * key, int len, uint32_t seed, void * out );
31 void MurmurHash3_x86_128 ( const void * key, int len, uint32_t seed, void * out );
33 void MurmurHash3_x64_128 ( const void * key, int len, uint32_t seed, void * out );
/external/clang/test/CodeGen/
H A D2010-01-13-MemBarrier.c5 typedef unsigned __INT32_TYPE__ uint32_t; typedef
7 unsigned t(uint32_t *ptr, uint32_t val) {
H A Darm-asm-variable.c5 typedef unsigned int uint32_t; typedef
9 register uint32_t rl asm("r1");
10 register uint32_t rh asm("r2");
13 uint32_t t;
H A Dx86_32-inline-asm.c5 typedef u_int32_t uint32_t; typedef
12 uint32_t msr = 0x8b;
/external/clang/test/Headers/Inputs/include/
H A Dstdint.h5 typedef unsigned __INT32_TYPE__ uint32_t; typedef
/external/chromium/sdch/open-vcdiff/vsprojects/
H A Dstdint.h27 typedef unsigned __int32 uint32_t; typedef
/external/chromium_org/sdch/open-vcdiff/vsprojects/
H A Dstdint.h27 typedef unsigned __int32 uint32_t; typedef
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dhasher.py24 class uint32_t(long): class in inherits:long
26 return uint32_t(long.__rshift__(self, other) & ((1L << 32) - 1))
29 return uint32_t(long.__lshift__(self, other) & ((1L << 32) - 1))
32 return uint32_t(long.__add__(self, other) & ((1L << 32) - 1))
35 return uint32_t(long.__xor__(self, other) & ((1L << 32) - 1))
50 result = uint32_t(0x9E3779B9L)
/external/libexif/contrib/watcom/
H A D_stdint.h6 typedef unsigned long uint32_t; typedef
/external/open-vcdiff/vsprojects/
H A Dstdint.h27 typedef unsigned __int32 uint32_t; typedef
/external/chromium/net/disk_cache/
H A Dhash.cc5 typedef uint32 uint32_t; typedef
17 #define get16bits(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8)\
18 +(uint32_t)(((const uint8_t *)(d))[0]) )
22 uint32_t hash = len, tmp;
/external/chromium_org/base/
H A Dhash.cc5 typedef uint32 uint32_t; typedef
17 #define get16bits(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8)\
18 +(uint32_t)(((const uint8_t *)(d))[0]) )
22 uint32_t hash = len, tmp;
/external/chromium_org/ppapi/c/
H A Dpp_stdint.h42 typedef unsigned int uint32_t; typedef
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dptypes.h88 typedef unsigned int uint32_t; typedef
/external/chromium_org/third_party/leveldatabase/src/port/win/
H A Dstdint.h21 typedef unsigned int uint32_t; typedef
/external/chromium_org/third_party/npapi/bindings/
H A Dnptypes.h55 typedef unsigned int uint32_t; typedef
78 * BSD/OS ships no header that defines uint32_t, nor bool (for C)
81 typedef u_int32_t uint32_t; typedef
91 * FreeBSD and OpenBSD define uint32_t and bool.
/external/chromium_org/third_party/npapi/npspy/extern/java/
H A Dtypedefs_md.h62 typedef uint32 uint32_t; typedef
/external/chromium_org/v8/include/
H A Dv8stdint.h45 typedef unsigned int uint32_t; typedef
/external/e2fsprogs/lib/uuid/
H A Duuid_types.h39 typedef unsigned int uint32_t; typedef
42 typedef unsigned long uint32_t;
45 typedef unsigned short uint32_t;
/external/srtp/crypto/include/
H A Dintegers.h98 typedef unsigned int uint32_t; typedef
104 extern uint64_t make64(uint32_t high, uint32_t low);
105 extern uint32_t high32(uint64_t value);
106 extern uint32_t low32(uint64_t value);
142 #define PUT_32(addr,value) *(((uint32_t *) (addr)) = (value)
143 #define GET_32(addr) (*(((uint32_t *) (addr)))
/external/v8/include/
H A Dv8stdint.h43 typedef unsigned int uint32_t; typedef

Completed in 4046 milliseconds

12345