Lines Matching defs:count
2203 int count = 1 + src1.IsValid() + src2.IsValid() + src3.IsValid();
2206 PrepareForPush(count, size);
2207 PushHelper(count, size, src0, src1, src2, src3);
2222 int count = 1 + dst1.IsValid() + dst2.IsValid() + dst3.IsValid();
2225 PrepareForPop(count, size);
2226 PopHelper(count, size, dst0, dst1, dst2, dst3);
2296 void MacroAssembler::PushMultipleTimes(int count, Register src) {
2300 PrepareForPush(count, size);
2304 while (count >= 4) {
2306 count -= 4;
2308 if (count >= 2) {
2310 count -= 2;
2312 if (count == 1) {
2314 count -= 1;
2316 VIXL_ASSERT(count == 0);
2320 void MacroAssembler::PushHelper(int count,
2337 switch (count) {
2364 void MacroAssembler::PopHelper(int count,
2381 switch (count) {
2409 void MacroAssembler::PrepareForPush(int count, int size) {
2414 VIXL_ASSERT((count * size) % 16 == 0);
2419 BumpSystemStackPointer(count * size);
2424 void MacroAssembler::PrepareForPop(int count, int size) {
2425 USE(count, size);
2430 VIXL_ASSERT((count * size) % 16 == 0);
2970 size_t count = features.Count();
2973 size_t list_length = (count + 1) * sizeof(ElementType);