@@ -54,68 +54,68 @@ namespace vx {
5454 unsigned int _subleaf = 0 );
5555
5656 /* *
57- * @brief Return stepping of cpu .
58- * @return Stepping of cpu .
57+ * @brief Return stepping of CPU .
58+ * @return Stepping of CPU .
5959 */
6060 inline unsigned int stepping () const { return m_leaf[0 ] & 0xF ; }
6161
6262 /* *
63- * @brief Return model of cpu .
64- * @return Model of cpu .
63+ * @brief Return model of CPU .
64+ * @return Model of CPU .
6565 */
6666 inline unsigned int model () const { return ( m_leaf[0 ] >> 4 ) & 0xF ; }
6767
6868 /* *
69- * @brief Return family of cpu .
70- * @return Family of cpu .
69+ * @brief Return family of CPU .
70+ * @return Family of CPU .
7171 */
7272 inline unsigned int family () const { return ( m_leaf[0 ] >> 8 ) & 0xF ; }
7373
7474 /* *
75- * @brief Return type of cpu .
76- * @return Type of cpu .
75+ * @brief Return type of CPU .
76+ * @return Type of CPU .
7777 */
7878 inline unsigned int type () const { return ( m_leaf[0 ] >> 12 ) & 0x3 ; }
7979
8080 /* *
81- * @brief Return extended model of cpu .
82- * @return Extended model of cpu .
81+ * @brief Return extended model of CPU .
82+ * @return Extended model of CPU .
8383 */
8484 inline unsigned int extendedModel () const { return ( m_leaf[0 ] >> 16 ) & 0xF ; }
8585
8686 /* *
87- * @brief Return extended family of cpu .
88- * @return Extended family of cpu .
87+ * @brief Return extended family of CPU .
88+ * @return Extended family of CPU .
8989 */
9090 inline unsigned int extendedFamily () const { return ( m_leaf[0 ] >> 20 ) & 0xFF ; }
9191
9292 /* *
93- * @brief Does cpu support smx ?
94- * @return True, if the cpu supports smx - otherwise false.
93+ * @brief Does CPU support SMX ?
94+ * @return True, if the CPU supports SMX - otherwise false.
9595 */
9696 inline bool smxSupport () const { return ( m_leaf[2 ] >> 6 ) & 1 ; }
9797
9898 /* *
99- * @brief Does cpu support sgx ?
100- * @return True, if the cpu supports sgx - otherwise false.
99+ * @brief Does CPU support SGX ?
100+ * @return True, if the CPU supports SGX - otherwise false.
101101 */
102102 inline bool sgxSupport () const { return ( m_extendedLeaf[1 ] >> 2 ) & 0x1 ; }
103103
104104 /* *
105- * @brief Does cpu support sgx launch control?
106- * @return True, if the cpu supports sgx launch control - otherwise false.
105+ * @brief Does CPU support SGX launch control?
106+ * @return True, if the CPU supports SGX launch control - otherwise false.
107107 */
108108 inline bool sgxLaunchControlSupport () const { return ( m_extendedLeaf[2 ] >> 30 ) & 0x01 ; }
109109
110110 /* *
111- * @brief Does cpu support sgx version 1?
112- * @return True, if the cpu supports sgx version 1 - otherwise false.
111+ * @brief Does CPU support SGX version 1?
112+ * @return True, if the CPU supports SGX version 1 - otherwise false.
113113 */
114114 inline bool sgxVersion1Support () const { return m_sgxLeaf[0 ] & 0x1 ; }
115115
116116 /* *
117- * @brief Does cpu support sgx version 2?
118- * @return True, if the cpu supports sgx version 2 - otherwise false.
117+ * @brief Does CPU support SGX version 2?
118+ * @return True, if the CPU supports SGX version 2 - otherwise false.
119119 */
120120 inline bool sgxVersion2Support () const { return ( m_sgxLeaf[0 ] >> 1 ) & 0x1 ; }
121121
0 commit comments