Home | History | Annotate | Download | only in ARM

Lines Matching defs:Chunk

146   unsigned Chunk = ((1 << NumBits) - 1) * Scale;
149 unsigned ThisVal = (Bytes > Chunk) ? Chunk : Bytes;
154 Chunk = ((1 << NumBits) - 1) * Scale;
157 NumMIs += Bytes / Chunk;
158 if ((Bytes % Chunk) != 0)
238 unsigned Chunk = (1 << 3) - 1;
239 unsigned ThisVal = (Bytes > Chunk) ? Chunk : Bytes;
254 unsigned Chunk = ((1 << NumBits) - 1) * Scale;
256 unsigned ThisVal = (Bytes > Chunk) ? Chunk : Bytes;
283 Chunk = ((1 << NumBits) - 1) * Scale;
310 int Chunk = (1 << 8) - 1;
311 int ThisVal = (Imm > Chunk) ? Chunk : Imm;