Lines Matching refs:vform
1008 VectorFormat VectorFormatHalfWidth(VectorFormat vform) { in VectorFormatHalfWidth() argument
1009 switch (vform) { in VectorFormatHalfWidth()
1036 VectorFormat VectorFormatDoubleWidth(VectorFormat vform) { in VectorFormatDoubleWidth() argument
1037 VIXL_ASSERT(vform == kFormat8B || vform == kFormat4H || vform == kFormat2S || in VectorFormatDoubleWidth()
1038 vform == kFormatB || vform == kFormatH || vform == kFormatS); in VectorFormatDoubleWidth()
1039 switch (vform) { in VectorFormatDoubleWidth()
1059 VectorFormat VectorFormatFillQ(VectorFormat vform) { in VectorFormatFillQ() argument
1060 switch (vform) { in VectorFormatFillQ()
1083 VectorFormat VectorFormatHalfWidthDoubleLanes(VectorFormat vform) { in VectorFormatHalfWidthDoubleLanes() argument
1084 switch (vform) { in VectorFormatHalfWidthDoubleLanes()
1109 VectorFormat VectorFormatDoubleLanes(VectorFormat vform) { in VectorFormatDoubleLanes() argument
1110 VIXL_ASSERT(vform == kFormat8B || vform == kFormat4H || vform == kFormat2S); in VectorFormatDoubleLanes()
1111 switch (vform) { in VectorFormatDoubleLanes()
1125 VectorFormat VectorFormatHalfLanes(VectorFormat vform) { in VectorFormatHalfLanes() argument
1126 VIXL_ASSERT(vform == kFormat16B || vform == kFormat8H || vform == kFormat4S); in VectorFormatHalfLanes()
1127 switch (vform) { in VectorFormatHalfLanes()
1158 bool IsSVEFormat(VectorFormat vform) { in IsSVEFormat() argument
1159 switch (vform) { in IsSVEFormat()
1221 VectorFormat ScalarFormatFromFormat(VectorFormat vform) { in ScalarFormatFromFormat() argument
1222 return ScalarFormatFromLaneSize(LaneSizeInBitsFromFormat(vform)); in ScalarFormatFromFormat()
1226 unsigned RegisterSizeInBitsFromFormat(VectorFormat vform) { in RegisterSizeInBitsFromFormat() argument
1227 VIXL_ASSERT(vform != kFormatUndefined); in RegisterSizeInBitsFromFormat()
1228 VIXL_ASSERT(!IsSVEFormat(vform)); in RegisterSizeInBitsFromFormat()
1229 switch (vform) { in RegisterSizeInBitsFromFormat()
1255 unsigned RegisterSizeInBytesFromFormat(VectorFormat vform) { in RegisterSizeInBytesFromFormat() argument
1256 return RegisterSizeInBitsFromFormat(vform) / 8; in RegisterSizeInBytesFromFormat()
1260 unsigned LaneSizeInBitsFromFormat(VectorFormat vform) { in LaneSizeInBitsFromFormat() argument
1261 VIXL_ASSERT(vform != kFormatUndefined); in LaneSizeInBitsFromFormat()
1262 switch (vform) { in LaneSizeInBitsFromFormat()
1293 int LaneSizeInBytesFromFormat(VectorFormat vform) { in LaneSizeInBytesFromFormat() argument
1294 return LaneSizeInBitsFromFormat(vform) / 8; in LaneSizeInBytesFromFormat()
1298 int LaneSizeInBytesLog2FromFormat(VectorFormat vform) { in LaneSizeInBytesLog2FromFormat() argument
1299 VIXL_ASSERT(vform != kFormatUndefined); in LaneSizeInBytesLog2FromFormat()
1300 switch (vform) { in LaneSizeInBytesLog2FromFormat()
1331 int LaneCountFromFormat(VectorFormat vform) { in LaneCountFromFormat() argument
1332 VIXL_ASSERT(vform != kFormatUndefined); in LaneCountFromFormat()
1333 switch (vform) { in LaneCountFromFormat()
1359 int MaxLaneCountFromFormat(VectorFormat vform) { in MaxLaneCountFromFormat() argument
1360 VIXL_ASSERT(vform != kFormatUndefined); in MaxLaneCountFromFormat()
1361 switch (vform) { in MaxLaneCountFromFormat()
1386 bool IsVectorFormat(VectorFormat vform) { in IsVectorFormat() argument
1387 VIXL_ASSERT(vform != kFormatUndefined); in IsVectorFormat()
1388 switch (vform) { in IsVectorFormat()
1400 int64_t MaxIntFromFormat(VectorFormat vform) { in MaxIntFromFormat() argument
1401 int lane_size = LaneSizeInBitsFromFormat(vform); in MaxIntFromFormat()
1406 int64_t MinIntFromFormat(VectorFormat vform) { in MinIntFromFormat() argument
1407 return -MaxIntFromFormat(vform) - 1; in MinIntFromFormat()
1411 uint64_t MaxUintFromFormat(VectorFormat vform) { in MaxUintFromFormat() argument
1412 return GetUintMask(LaneSizeInBitsFromFormat(vform)); in MaxUintFromFormat()