source: trunk/IPs/systemC/processor/Morpheo/Common/include/Percent.h @ 88

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 686 bytes
Line 
1#ifndef Morpheo_Percent_h
2#define Morpheo_Percent_h
3
4/*
5 * $Id: Percent.h 88 2008-12-10 18:31:39Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11namespace morpheo              {
12 
13  inline double percent (double   val, double   val_max) {return ((val_max == 0)?0:(100.0 * val)/val_max);}
14  inline double percent (uint32_t val, double   val_max) {return (percent(static_cast<double>(val),                    val_max ));}
15  inline double percent (double   val, uint32_t val_max) {return (percent(                    val ,static_cast<double>(val_max)));}
16  inline double percent (uint32_t val, uint32_t val_max) {return (percent(static_cast<double>(val),static_cast<double>(val_max)));}
17
18}; // end namespace morpheo             
19
20#endif
Note: See TracBrowser for help on using the repository browser.