Changeset 146 for trunk/IPs/systemC/processor/Morpheo/Behavioural/src
- Timestamp:
- Feb 1, 2011, 9:57:54 PM (14 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/src
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree.cpp
r88 r146 1 #ifdef STATISTICS1 // #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat_binary_tree.h" 3 3 … … 70 70 }; 71 71 }; 72 #endif72 // #endif -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_change_type.cpp
r88 r146 1 #ifdef STATISTICS1 // #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat_binary_tree.h" 3 3 … … 33 33 }; 34 34 }; 35 #endif35 // #endif -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_eval.cpp
r81 r146 1 #ifdef STATISTICS1 // #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat_binary_tree.h" 3 3 … … 13 13 }; 14 14 }; 15 #endif15 // #endif -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_goto_next_root.cpp
r81 r146 1 #ifdef STATISTICS1 // #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat_binary_tree.h" 3 3 … … 23 23 }; 24 24 }; 25 #endif25 // #endif -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_goto_top_level.cpp
r81 r146 1 #ifdef STATISTICS1 // #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat_binary_tree.h" 3 3 … … 16 16 }; 17 17 }; 18 #endif18 // #endif -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_import.cpp
r88 r146 1 #ifdef STATISTICS1 // #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat_binary_tree.h" 3 3 … … 137 137 }; 138 138 }; 139 #endif139 // #endif -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_insert_tree.cpp
r81 r146 1 #ifdef STATISTICS1 // #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat_binary_tree.h" 3 3 … … 39 39 }; 40 40 }; 41 #endif41 // #endif -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_is_leaf.cpp
r81 r146 1 #ifdef STATISTICS1 // #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat_binary_tree.h" 3 3 4 4 namespace morpheo { 5 5 namespace behavioural { 6 bool 6 bool Stat_binary_tree::is_leaf (void) 7 7 { 8 8 return ((_left == NULL) and (_right == NULL)); … … 10 10 }; 11 11 }; 12 #endif12 // #endif -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_print.cpp
r94 r146 1 #ifdef STATISTICS1 // #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat_binary_tree.h" 3 3 #include "Common/include/Tabulation.h" … … 69 69 }; 70 70 }; 71 #endif71 // #endif -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_val_leaf.cpp
r81 r146 1 #ifdef STATISTICS1 // #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat_binary_tree.h" 3 3 … … 19 19 }; 20 20 }; 21 #endif21 // #endif -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_val_tree.cpp
r81 r146 1 #ifdef STATISTICS1 // #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat_binary_tree.h" 3 3 … … 21 21 }; 22 22 }; 23 #endif23 // #endif -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_valid.cpp
r94 r146 1 #ifdef STATISTICS1 // #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat_binary_tree.h" 3 3 … … 31 31 }; 32 32 }; 33 #endif33 // #endif
Note: See TracChangeset
for help on using the changeset viewer.