Searched refs:u1 (Results 1 - 4 of 4) sorted by relevance

/u-boot/test/lib/
H A Dsscanf.c38 unsigned int u1, u2, u3; local
90 ut_asserteq(0, sscanf("hello 3", "%u", &u1)); /* have to match the start */
91 ut_asserteq(1, sscanf("3 hello", "%u", &u1)); /* but trailing is alright */
94 ut_asserteq(0, sscanf("hello world 3", "hello worlb %u", &u1)); /* d vs b */
95 ut_asserteq(1, sscanf("12345", "%u", &u1));
96 ut_asserteq(12345u, u1);
97 ut_asserteq(1, sscanf("0", "%u", &u1));
98 ut_asserteq(0u, u1);
101 ut_asserteq(0, sscanf("A", "%u", &u1)); /* bogus number */
104 ut_asserteq(2, sscanf("123456", "%2u%u", &u1,
[all...]
/u-boot/arch/arm/include/asm/
H A Dsetup.h67 } u1; member in struct:param_struct
/u-boot/fs/erofs/
H A Derofs_fs.h85 } __packed u1; member in struct:erofs_super_block
/u-boot/test/
H A Dunicode_ut.c753 const u32 u1[] = {0x55, 0x2D, 0x42, 0x6F, 0x6F, 0x74, 0x0000}; local
762 ut_asserteq_mem(u1, buf, sizeof(u1));

Completed in 99 milliseconds