Searched defs:uint32_t (Results 76 - 85 of 85) sorted by relevance

1234

/external/fmtlib/fmt/
H A Dformat.h63 typedef unsigned __int32 uint32_t; typedef
298 inline uint32_t clz(uint32_t x) {
315 inline uint32_t clzll(uint64_t x) {
321 if (_BitScanReverse(&r, static_cast<uint32_t>(x >> 32)))
325 _BitScanReverse(&r, static_cast<uint32_t>(x));
890 // Selects uint32_t if FitsIn32Bits is true, uint64_t otherwise.
892 struct TypeSelector { typedef uint32_t Type; };
899 // Smallest of uint32_t and uint64_t that is large enough to represent
911 static const uint32_t POWERS_OF_10_3
[all...]
/external/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_bc.h411 uint32_t u;
416 literal(uint32_t u) : u(u) {}
419 operator uint32_t() const { return u; }
731 uint32_t* dw;
736 bc_decoder(sb_context &sctx, uint32_t *data, unsigned size)
758 uint32_t value;
762 hw_encoding_format(uint32_t v, sb_hw_class_bits hw)
764 uint32_t get_value(sb_hw_class_bits hw) const {
775 fmt##_##hwset(uint32_t v) : hw_encoding_format(v, HB_##hwset) {};
811 uint32_t *d
[all...]
/external/mdnsresponder/mDNSShared/
H A DCommonServices.h759 typedef UINT32 uint32_t; typedef
775 typedef uint32_t uint_least32_t;
785 typedef uint32_t uint_fast32_t;
1207 int NumVersionCompare( uint32_t inLeft, uint32_t inRight );
/external/python/cpython2/Lib/lib2to3/tests/data/
H A Dinfinite_recursion.py2483 uint32_t = c_uint variable
2491 uint_least32_t = uint32_t
2499 uint_fast32_t = uint32_t
2628 '__int64_t', 'ASN1_BMPSTRING', 'uint32_t',
/external/vulkan-validation-layers/libs/glm/
H A Dfwd.hpp903 typedef detail::uint32 uint32_t; typedef in namespace:glm
/external/mksh/src/
H A Dsh.h186 typedef unsigned int uint32_t; typedef
188 typedef u_int32_t uint32_t; typedef
206 typedef uint32_t mksh_uari_t;
1490 uint32_t hval; /* hash(name) */
1491 uint32_t index; /* index for an array */
1499 uint32_t flag;
2068 struct tbl *findfunc(const char *, uint32_t, bool);
2263 struct tbl *ktscan(struct table *, const char *, uint32_t, struct tbl ***);
2266 struct tbl *ktenter(struct table *, const char *, uint32_t);
2375 struct block *varsearch(struct block *, struct tbl **, const char *, uint32_t);
[all...]
/external/pdfium/xfa/fxfa/
H A Dfxfa_basic.h16 enum XFA_HashCode : uint32_t { enum
92 uint32_t uHash;
96 uint32_t eFlags;
930 uint32_t uHash;
933 uint32_t dwPackets;
946 uint32_t uHash;
950 uint32_t dwPackets;
976 uint32_t uHash;
1006 uint32_t uHash;
1019 uint32_t uHas
[all...]
/external/valgrind/none/tests/ppc32/
H A Djm-insns.c125 * uint32_t func_buf[2]; // our new stack based 'function'
132 * patch_op_imm16() itself simply takes the uint32_t insn and overwrites
182 #undef uint32_t macro
184 #define uint32_t unsigned int macro
188 typedef uint32_t HWord_t;
194 compile_time_test1 = STATIC_ASSERT(sizeof(uint32_t) == 4),
295 uint32_t* get_rwx_area ( void )
298 static uint32_t* p = NULL;
305 for (i = 0; i < 4096/sizeof(uint32_t); i++)
349 uint32_t flag
[all...]
/external/valgrind/none/tests/ppc64/
H A Djm-insns.c125 * uint32_t func_buf[2]; // our new stack based 'function'
132 * patch_op_imm16() itself simply takes the uint32_t insn and overwrites
182 #undef uint32_t macro
184 #define uint32_t unsigned int macro
188 typedef uint32_t HWord_t;
194 compile_time_test1 = STATIC_ASSERT(sizeof(uint32_t) == 4),
295 uint32_t* get_rwx_area ( void )
298 static uint32_t* p = NULL;
305 for (i = 0; i < 4096/sizeof(uint32_t); i++)
349 uint32_t flag
[all...]
/external/valgrind/perf/
H A Dtinycc.c107 typedef unsigned int uint32_t; typedef
118 typedef uint32_t Elf32_Word;
120 typedef uint32_t Elf64_Word;
130 typedef uint32_t Elf32_Addr;
134 typedef uint32_t Elf32_Off;
142 typedef uint32_t Elf32_Symndx;
5506 uint32_t v;
15077 uint32_t type;
18675 uint32_t orig;
18775 static void put32(unsigned char *p, uint32_t va
[all...]

Completed in 3906 milliseconds

1234