VirtualFileSystem.VFSCore.UpdateBitmapVectorAtIndex C# (CSharp) Method

UpdateBitmapVectorAtIndex() private method

持久化一个位图向量
private UpdateBitmapVectorAtIndex ( UInt32 offset, UInt32 bitmap, UInt32 index ) : void
offset System.UInt32
bitmap System.UInt32
index System.UInt32
return void
        private void UpdateBitmapVectorAtIndex(UInt32 offset, UInt32[] bitmap, UInt32 index)
        {
            device.Write(offset + index / 32 * 4, bitmap[index / 32]);
        }