Lines Matching refs:uint8_t
19 uint8_t *code1 = MemMgr->allocateCodeSection(256, 0, 1, ""); in TEST()
20 uint8_t *data1 = MemMgr->allocateDataSection(256, 0, 2, "", true); in TEST()
21 uint8_t *code2 = MemMgr->allocateCodeSection(256, 0, 3, ""); in TEST()
22 uint8_t *data2 = MemMgr->allocateDataSection(256, 0, 4, "", false); in TEST()
24 EXPECT_NE((uint8_t*)nullptr, code1); in TEST()
25 EXPECT_NE((uint8_t*)nullptr, code2); in TEST()
26 EXPECT_NE((uint8_t*)nullptr, data1); in TEST()
27 EXPECT_NE((uint8_t*)nullptr, data2); in TEST()
52 uint8_t *code1 = MemMgr->allocateCodeSection(0x100000, 0, 1, ""); in TEST()
53 uint8_t *data1 = MemMgr->allocateDataSection(0x100000, 0, 2, "", true); in TEST()
54 uint8_t *code2 = MemMgr->allocateCodeSection(0x100000, 0, 3, ""); in TEST()
55 uint8_t *data2 = MemMgr->allocateDataSection(0x100000, 0, 4, "", false); in TEST()
57 EXPECT_NE((uint8_t*)nullptr, code1); in TEST()
58 EXPECT_NE((uint8_t*)nullptr, code2); in TEST()
59 EXPECT_NE((uint8_t*)nullptr, data1); in TEST()
60 EXPECT_NE((uint8_t*)nullptr, data2); in TEST()
85 uint8_t* code[10000]; in TEST()
86 uint8_t* data[10000]; in TEST()
99 EXPECT_NE((uint8_t *)nullptr, code[i]); in TEST()
100 EXPECT_NE((uint8_t *)nullptr, data[i]); in TEST()
106 uint8_t ExpectedCode = 1 + (i % 254); in TEST()
107 uint8_t ExpectedData = 2 + (i % 254); in TEST()
120 uint8_t* code[10000]; in TEST()
121 uint8_t* data[10000]; in TEST()
142 EXPECT_NE((uint8_t *)nullptr, code[i]); in TEST()
143 EXPECT_NE((uint8_t *)nullptr, data[i]); in TEST()
157 uint8_t ExpectedCode = 1 + (i % 254); in TEST()
162 uint8_t ExpectedData = 2 + (i % 254); in TEST()