Home
last modified time | relevance | path

Searched refs:container_size (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_immcheck_incl.td6 // For SVE, container_size refers to the width of a vector segment (128b).
7 // For NEON, container_size refers to the vector width (64b or 128b).
15 def ImmCheckLaneIndex : ImmCheckType<7>; // 0..(container_size/(sizeinbits(elt)) - 1)
17 def ImmCheckLaneIndexCompRotate : ImmCheckType<9>; // 0..(container_size/(2*sizeinbits(elt)) - 1)
18 def ImmCheckLaneIndexDot : ImmCheckType<10>; // 0..(container_size/(4*sizeinbits(elt)) - 1)
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DVectorType.cpp205 auto container_size = *container_elem_size * num_elements; in CalculateNumChildren() local
212 if (container_size % *element_size) in CalculateNumChildren()
215 return container_size / *element_size; in CalculateNumChildren()