Lines Matching refs:Bytes
19 uint8_t Bytes[4] = { in TEST() local
22 BitstreamCursor Cursor(Bytes); in TEST()
40 uint8_t Bytes[4] = { in TEST() local
43 BitstreamCursor Cursor(Bytes); in TEST()
56 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03}; in TEST() local
57 SimpleBitstreamCursor Cursor(Bytes); in TEST()
68 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07}; in TEST() local
69 SimpleBitstreamCursor Cursor(Bytes); in TEST()
72 EXPECT_EQ(Bytes + I, Cursor.getPointerToByte(I, 1)); in TEST()
77 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07}; in TEST() local
78 SimpleBitstreamCursor Cursor(Bytes); in TEST()
81 EXPECT_EQ(Bytes + I, Cursor.getPointerToBit(I * 8, 1)); in TEST()
155 uint8_t Bytes[] = {8, 7, 6, 5, 4, 3, 2, 1}; in TEST() local
157 SimpleBitstreamCursor Cursor(ArrayRef<uint8_t>(Bytes, I)); in TEST()