Searched defs:u32 (Results 1 - 25 of 135) sorted by relevance

123456

/external/fio/os/
H A Dkcompat.h7 #define u32 uint32_t macro
/external/autotest/client/deps/glbench/src/
H A Dmd5.h10 typedef uint32_t u32; typedef
14 u32 buf[4];
15 u32 bits[2];
/external/autotest/client/profilers/powertop/src/
H A Dethernet.c39 #define u32 __u32 macro
44 #undef u32 macro
H A Dwireless.c39 #define u32 __u32 macro
44 #undef u32 macro
/external/google-breakpad/src/common/
H A Dmd5.h10 typedef uint32_t u32; typedef in namespace:google_breakpad
14 u32 buf[4];
15 u32 bits[2];
/external/google-breakpad/src/processor/
H A Dbinarystream.cc71 binarystream &binarystream::operator>>(uint32_t &u32) { argument
75 u32 = ntohl(temp);
110 binarystream &binarystream::operator<<(uint32_t u32) { argument
111 u32 = htonl(u32);
112 stream_.write((const char*)&u32, 4);
H A Dbinarystream_unittest.cc80 uint32_t u32 = 0; local
82 stream >> u32; local
84 EXPECT_EQ(0U, u32);
89 stream >> u32; local
90 EXPECT_EQ(1U, u32);
268 uint32_t u32 = 0; local
272 stream >> u8 >> u16 >> u32 >> u64 >> s;
276 EXPECT_EQ(e32, u32);
360 uint32_t u32 = 0; local
362 stream >> u32; local
[all...]
/external/libpng/contrib/tools/
H A Dchecksum-icc.c57 # define u32(x) (u16(x) * 65536 + u16(x+2)) macro
58 u32(64), u16(24), u16(26), u16(28), u16(30), u16(32), u16(34),
/external/libyuv/files/unit_test/
H A Dbasictypes_test.cc32 uint32 u32 = 1u; local
40 EXPECT_EQ(4u, sizeof(u32));
48 EXPECT_LT(0u, u32);
/external/syslinux/gpxe/src/include/
H A Dbtext.h16 #define u32 unsigned int macro
33 u32 dispDeviceRect[4]; /* left,top,right,bottom */
34 u32 dispDeviceDepth; /* (8, 16 or 32) */
35 u32 dispDeviceBase; /* base address (physical) */
36 u32 dispDeviceRowBytes; /* rowbytes (in bytes) */
37 u32 dispDeviceColorsOffset; /* Colormap (8 bits only) or 0 (*) */
41 u32 frameBufferSize; /* Represents a max size, can be 0. */
60 extern u32 boot_text_mapped;
H A Dstdint.h23 typedef uint32_t u32; typedef
/external/valgrind/memcheck/tests/vbit-test/
H A Dvbits.h43 uint32_t u32; member in union:__anon29644::__anon29645
57 uint32_t u32; member in union:__anon29646
/external/dhcpcd-6.8.2/
H A Dduid.c59 uint32_t u32; local
72 u32 = htonl((uint32_t)t & 0xffffffff);
73 memcpy(p, &u32, 4);
H A Dipv4ll.c47 uint32_t u32; local
58 *p++ = sizeof(u32);
59 u32 = htonl(LINKLOCAL_MASK);
60 memcpy(p, &u32, sizeof(u32));
61 p += sizeof(u32);
63 *p++ = sizeof(u32);
64 u32 = htonl(LINKLOCAL_BRDC);
65 memcpy(p, &u32, sizeof(u32));
[all...]
/external/linux-kselftest/tools/testing/selftests/powerpc/include/
H A Dutils.h21 typedef uint32_t u32; typedef
/external/strace/
H A Dnlattr.h53 DECL_NLA(u32); variable
/external/elfutils/libelf/
H A Dgelf_xlate.c75 uint32_t u32; member in union:unaligned
/external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
H A Dint_typedefs.h12 typedef uint32_t u32; typedef
/external/ltp/testcases/kernel/syscalls/epoll2/include/
H A Depoll.h77 uint32_t u32; member in union:epoll_data
/external/neven/FaceRecEm/common/src/b_FDSDK/
H A DTypes.h39 typedef unsigned int u32; typedef
44 typedef unsigned long u32; typedef
49 typedef unsigned int u32; typedef
/external/cn-cbor/src/
H A Dcn-cbor.c95 } u32; local
193 u32.u = val;
194 cb->v.dbl = u32.f;
/external/dhcpcd-6.8.2/dbus/
H A Ddbus-dict.c91 dbus_uint32_t u32; local
100 u32 = 0;
102 u32 = 1;
106 DBUS_TYPE_BOOLEAN, &u32))
149 u32 = in.s_addr;
151 u32 = strtoul(data, NULL, 0);
155 DBUS_TYPE_UINT32, &u32))
222 dbus_uint32_t u32; local
258 u32 = in.s_addr;
260 u32
[all...]
/external/eigen/bench/btl/generic_bench/timers/
H A Dx86_timer.hh28 #define u32 unsigned int macro
/external/llvm/unittests/DebugInfo/PDB/
H A DMappedBlockStreamTest.cpp314 uint32_t u32[] = {890723408, 0}; member in class:__anon14980::MyEnum
336 EXPECT_NO_ERROR(Writer.writeInteger(u32[0]));
337 EXPECT_NO_ERROR(Reader.readInteger(u32[1]));
338 EXPECT_EQ(u32[0], u32[1]);
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_simulator_validate.h78 typedef uint32_t u32; typedef

Completed in 1648 milliseconds

123456