diff options
author | scop <scop> | 2005-04-19 18:19:34 +0000 |
---|---|---|
committer | scop <scop> | 2005-04-19 18:19:34 +0000 |
commit | f9c59e544ada17055c3ed15b3d80f0d285c3928d (patch) | |
tree | cd7b038c17b040beb435e0a16aab02346854c9ad /dxr3memcpy.h | |
parent | dea137eddfe1017e9ff85a8c221aee2bca4647ad (diff) | |
download | vdr-plugin-dxr3-f9c59e544ada17055c3ed15b3d80f0d285c3928d.tar.gz vdr-plugin-dxr3-f9c59e544ada17055c3ed15b3d80f0d285c3928d.tar.bz2 |
Mass indentation/whitespace cleanup.
Diffstat (limited to 'dxr3memcpy.h')
-rw-r--r-- | dxr3memcpy.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/dxr3memcpy.h b/dxr3memcpy.h index 0fb1442..c590d6c 100644 --- a/dxr3memcpy.h +++ b/dxr3memcpy.h @@ -29,7 +29,7 @@ * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -41,11 +41,11 @@ ***************************************************************************** * * Original code: - * + * * Copyright (C) 2000-2001 the xine project - * + * * This file is part of xine, a unix video player. - * + * *****************************************************************************/ #ifndef _DXR3MEMCPY_H_ @@ -55,34 +55,34 @@ // ================================== /*! \def BUFSIZE - \brief size of buffers for benchmark :) + \brief size of buffers for benchmark :) */ #define BUFSIZE 1024*1024 // ================================== struct memcpy_routine { - std::string name; ///< name of memcpy methode - void *(* function)(void *to, const void *from, size_t len); ///< our memcopy methode - unsigned long long time; ///< needed time for banchmark - uint32_t cpu_require; ///< caps from dxr3cpu.h + std::string name; ///< name of memcpy methode + void *(* function)(void *to, const void *from, size_t len); ///< our memcopy methode + unsigned long long time; ///< needed time for banchmark + uint32_t cpu_require; ///< caps from dxr3cpu.h }; // ================================== //! Little class to do a nice benchmark /* - Whith this class we can get the fastest memcyp - methode for target computer. + Whith this class we can get the fastest memcyp + methode for target computer. */ class cDxr3MemcpyBench { public: - cDxr3MemcpyBench(uint32_t config_flags = 0); + cDxr3MemcpyBench(uint32_t config_flags = 0); private: - unsigned long long int Rdtsc(uint32_t config_flags); + unsigned long long int Rdtsc(uint32_t config_flags); - std::vector<memcpy_routine> m_methods; ///< a std::vector with all methodes + std::vector<memcpy_routine> m_methods; ///< a std::vector with all methods }; // ================================== |