Lines Matching defs:ElemsPerChunk
4076 unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
4077 assert(isPowerOf2_32(ElemsPerChunk) && "Elements per chunk not power of 2");
4080 // we want. Since ElemsPerChunk is a power of 2 just need to clear bits.
4081 IdxVal &= ~(ElemsPerChunk - 1);
4086 Vec->ops().slice(IdxVal, ElemsPerChunk));
4131 unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
4132 assert(isPowerOf2_32(ElemsPerChunk) && "Elements per chunk not power of 2");
4135 // we want. Since ElemsPerChunk is a power of 2 just need to clear bits.
4136 IdxVal &= ~(ElemsPerChunk - 1);
18444 unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
18445 assert(isPowerOf2_32(ElemsPerChunk) && "Elements per chunk not power of 2");
18447 // Find IdxVal modulo ElemsPerChunk. Since ElemsPerChunk is a power of 2
18449 IdxVal &= ElemsPerChunk - 1;