Lines Matching refs:vform

1006 VectorFormat VectorFormatHalfWidth(VectorFormat vform) {
1007 switch (vform) {
1033 VectorFormat VectorFormatDoubleWidth(VectorFormat vform) {
1034 switch (vform) {
1060 VectorFormat VectorFormatFillQ(VectorFormat vform) {
1061 switch (vform) {
1084 VectorFormat VectorFormatHalfWidthDoubleLanes(VectorFormat vform) {
1085 switch (vform) {
1110 VectorFormat VectorFormatDoubleLanes(VectorFormat vform) {
1111 VIXL_ASSERT(vform == kFormat8B || vform == kFormat4H || vform == kFormat2S);
1112 switch (vform) {
1126 VectorFormat VectorFormatHalfLanes(VectorFormat vform) {
1127 VIXL_ASSERT(vform == kFormat16B || vform == kFormat8H || vform == kFormat4S);
1128 switch (vform) {
1159 bool IsSVEFormat(VectorFormat vform) {
1160 switch (vform) {
1223 VectorFormat ScalarFormatFromFormat(VectorFormat vform) {
1224 return ScalarFormatFromLaneSize(LaneSizeInBitsFromFormat(vform));
1228 unsigned RegisterSizeInBitsFromFormat(VectorFormat vform) {
1229 VIXL_ASSERT(vform != kFormatUndefined);
1230 VIXL_ASSERT(!IsSVEFormat(vform));
1231 switch (vform) {
1257 unsigned RegisterSizeInBytesFromFormat(VectorFormat vform) {
1258 return RegisterSizeInBitsFromFormat(vform) / 8;
1262 unsigned LaneSizeInBitsFromFormat(VectorFormat vform) {
1263 VIXL_ASSERT(vform != kFormatUndefined);
1264 switch (vform) {
1297 int LaneSizeInBytesFromFormat(VectorFormat vform) {
1298 return LaneSizeInBitsFromFormat(vform) / 8;
1302 int LaneSizeInBytesLog2FromFormat(VectorFormat vform) {
1303 VIXL_ASSERT(vform != kFormatUndefined);
1304 switch (vform) {
1335 int LaneCountFromFormat(VectorFormat vform) {
1336 VIXL_ASSERT(vform != kFormatUndefined);
1337 switch (vform) {
1363 int MaxLaneCountFromFormat(VectorFormat vform) {
1364 VIXL_ASSERT(vform != kFormatUndefined);
1365 switch (vform) {
1389 // Does 'vform' indicate a vector format or a scalar format?
1390 bool IsVectorFormat(VectorFormat vform) {
1391 VIXL_ASSERT(vform != kFormatUndefined);
1392 switch (vform) {
1404 int64_t MaxIntFromFormat(VectorFormat vform) {
1405 int lane_size = LaneSizeInBitsFromFormat(vform);
1410 int64_t MinIntFromFormat(VectorFormat vform) {
1411 return -MaxIntFromFormat(vform) - 1;
1415 uint64_t MaxUintFromFormat(VectorFormat vform) {
1416 return GetUintMask(LaneSizeInBitsFromFormat(vform));