Home
last modified time | relevance | path

Searched refs:weightsFd (Results 1 – 1 of 1) sorted by relevance

/packages/modules/NeuralNetworks/runtime/test/
DTestMemoryInternal.cpp108 int weightsFd = ASharedMemory_create("weights", weightsSize); in TEST_F() local
111 int weightsFd = tmpWeightsFile.release(); in TEST_F() local
112 CHECK_EQ(ftruncate(weightsFd, weightsSize), 0); in TEST_F()
114 ASSERT_GT(weightsFd, -1); in TEST_F()
116 (uint8_t*)mmap(nullptr, weightsSize, PROT_READ | PROT_WRITE, MAP_SHARED, weightsFd, 0); in TEST_F()
120 WrapperMemory weights(weightsSize, PROT_READ | PROT_WRITE, weightsFd, 0); in TEST_F()
194 close(weightsFd); in TEST_F()