Lines Matching full:bytes
10 /* U+0000 to U+d7ff: Result is 2 bytes for each uint32_t
11 U+dc00 to U+ffff: Result is 2 bytes for each uint32_t */
18 /* U+00010000 to U+0010ffff: Result is 4 bytes for each uint32_t */
46 /* Write 2 bytes into buffer of length 1 */
47 do_cu42(malloc(1), 10, pattern2, 4); // complaint (2 bytes)
49 /* Write 2 bytes into buffer of length 2 */
52 /* Write 4 bytes into buffer of length 1 */
53 do_cu42(malloc(1), 10, pattern4, 4); // complaint (4 bytes)
55 /* Write 4 bytes into buffer of length 2 */
56 do_cu42(malloc(2), 10, pattern4, 4); // complaint (4 bytes)
58 /* Write 4 bytes into buffer of length 3 */
59 do_cu42(malloc(3), 10, pattern4, 4); // complaint (4 bytes)
61 /* Write 4 bytes into buffer of length 4 */
74 /* Read 4 bytes from input buffer. First byte is uninitialised */
79 /* Read 4 bytes from input buffer. Second byte is uninitialised */
84 /* Read 4 bytes from input buffer. Third byte is uninitialised */
89 /* Read 4 bytes from input buffer. Fourth byte is uninitialised */
94 /* Read 4 bytes from input buffer. All bytes are initialised */
99 /* Read 8 bytes from input buffer. This iterates once. In the 1st
100 iteration all input bytes are initialised in the 2nd iteration all
101 input bytes are uninitialised. */