Home | History | Annotate | Download | only in Bitcode

Lines Matching defs:Bytes

36   uint8_t Bytes[4] = {
39 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));
56 uint8_t Bytes[4] = {
59 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));
75 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03};
76 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));
87 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07};
88 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));
92 EXPECT_EQ(Bytes + I, Cursor.getPointerToByte(I, 1));
97 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07};
98 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));
102 EXPECT_EQ(Bytes + I, Cursor.getPointerToBit(I * 8, 1));
107 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07};
108 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));
112 Cursor.jumpToPointer(Bytes + I);
118 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
120 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));
132 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
134 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));
146 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
148 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));
163 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
165 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));