Home
last modified time | relevance | path

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

/external/yaffs2/yaffs2/utils/
Dmkyaffsimage.c54 static int nObjects, nDirectories, nPages; variable
422 nObjects++; in process_directory()
586 "%d NAND pages\n",nObjects, nDirectories, nPages); in main()
Dmkyaffs2image.c66 static int nObjects, nDirectories, nPages; variable
346 nObjects++; in process_directory()
/external/yaffs2/yaffs2/
Dyaffs_guts.c1298 static int yaffs_CreateFreeObjects(yaffs_Device * dev, int nObjects) in yaffs_CreateFreeObjects() argument
1304 if (nObjects < 1) in yaffs_CreateFreeObjects()
1308 newObjects = YMALLOC(nObjects * sizeof(yaffs_Object)); in yaffs_CreateFreeObjects()
1317 for (i = 0; i < nObjects - 1; i++) { in yaffs_CreateFreeObjects()
1322 newObjects[nObjects - 1].siblings.next = (void *)dev->freeObjects; in yaffs_CreateFreeObjects()
1324 dev->nFreeObjects += nObjects; in yaffs_CreateFreeObjects()
1325 dev->nObjectsCreated += nObjects; in yaffs_CreateFreeObjects()