• Home
  • Raw
  • Download

Lines Matching refs:DeviceId

92 bool IsSandyBridge(uint32_t DeviceId)  in IsSandyBridge()  argument
94 return std::find(std::begin(SandyBridge), std::end(SandyBridge), DeviceId) != in IsSandyBridge()
98 bool IsIvyBridge(uint32_t DeviceId) in IsIvyBridge() argument
100 return std::find(std::begin(IvyBridge), std::end(IvyBridge), DeviceId) != std::end(IvyBridge); in IsIvyBridge()
103 bool IsHaswell(uint32_t DeviceId) in IsHaswell() argument
105 return std::find(std::begin(Haswell), std::end(Haswell), DeviceId) != std::end(Haswell); in IsHaswell()
108 bool IsBroadwell(uint32_t DeviceId) in IsBroadwell() argument
110 return std::find(std::begin(Broadwell), std::end(Broadwell), DeviceId) != std::end(Broadwell); in IsBroadwell()
113 bool IsCherryView(uint32_t DeviceId) in IsCherryView() argument
115 return std::find(std::begin(CherryView), std::end(CherryView), DeviceId) != in IsCherryView()
119 bool IsSkylake(uint32_t DeviceId) in IsSkylake() argument
121 return std::find(std::begin(Skylake), std::end(Skylake), DeviceId) != std::end(Skylake); in IsSkylake()
124 bool IsBroxton(uint32_t DeviceId) in IsBroxton() argument
126 return std::find(std::begin(Broxton), std::end(Broxton), DeviceId) != std::end(Broxton); in IsBroxton()
129 bool IsKabylake(uint32_t DeviceId) in IsKabylake() argument
131 return std::find(std::begin(Kabylake), std::end(Kabylake), DeviceId) != std::end(Kabylake); in IsKabylake()
134 bool Is9thGenIntel(uint32_t DeviceId) in Is9thGenIntel() argument
136 return IsSkylake(DeviceId) || IsBroxton(DeviceId) || IsKabylake(DeviceId); in Is9thGenIntel()