Lines Matching refs:is_long

484 static void CreateLowestOneBitLocations(ArenaAllocator* allocator, bool is_long, HInvoke* invoke) {  in CreateLowestOneBitLocations()  argument
487 if (is_long) { in CreateLowestOneBitLocations()
497 bool is_long, in GenLowestOneBit() argument
507 if (is_long) { in GenLowestOneBit()
516 value = is_long ? CTZ(static_cast<uint64_t>(value)) in GenLowestOneBit()
518 if (is_long) { in GenLowestOneBit()
533 if (is_long) { in GenLowestOneBit()
2767 ArenaAllocator* allocator, CodeGeneratorX86* codegen, HInvoke* invoke, bool is_long) { in CreateBitCountLocations() argument
2775 if (is_long) { in CreateBitCountLocations()
2784 HInvoke* invoke, bool is_long) { in GenBitCount() argument
2792 int32_t result = is_long in GenBitCount()
2800 if (!is_long) { in GenBitCount()
2838 static void CreateLeadingZeroLocations(ArenaAllocator* allocator, HInvoke* invoke, bool is_long) { in CreateLeadingZeroLocations() argument
2841 if (is_long) { in CreateLeadingZeroLocations()
2851 HInvoke* invoke, bool is_long) { in GenLeadingZeros() argument
2860 value = is_long ? 64 : 32; in GenLeadingZeros()
2862 value = is_long ? CLZ(static_cast<uint64_t>(value)) : CLZ(static_cast<uint32_t>(value)); in GenLeadingZeros()
2869 if (!is_long) { in GenLeadingZeros()
2942 static void CreateTrailingZeroLocations(ArenaAllocator* allocator, HInvoke* invoke, bool is_long) { in CreateTrailingZeroLocations() argument
2945 if (is_long) { in CreateTrailingZeroLocations()
2955 HInvoke* invoke, bool is_long) { in GenTrailingZeros() argument
2964 value = is_long ? 64 : 32; in GenTrailingZeros()
2966 value = is_long ? CTZ(static_cast<uint64_t>(value)) : CTZ(static_cast<uint32_t>(value)); in GenTrailingZeros()
2973 if (!is_long) { in GenTrailingZeros()