Searched refs:CLZ (Results 1 - 7 of 7) sorted by relevance

/art/runtime/
H A Dleb128.h99 // bits_to_encode = (data != 0) ? 32 - CLZ(x) : 1 // 32 - CLZ(data | 1)
101 uint32_t x = 6 + 32 - CLZ(data | 1);
111 uint32_t x = 1 /* we need to encode the sign bit */ + 6 + 32 - CLZ(data | 1);
H A Dmem_map.cc107 constexpr size_t leading_zeros = CLZ(static_cast<uint32_t>(ART_BASE_ADDRESS));
H A Dutils.h219 static constexpr int CLZ(T x) { function in namespace:art
/art/compiler/
H A Dgc_map_builder.h33 ? sizeof(max_native_offset) - CLZ(max_native_offset) / 8u
/art/compiler/dex/quick/
H A Dresource_mask.cc35 // The 127-bit is the same as CLZ(masks_[1]) for a ResourceMask with only that bit set.
76 // The 127-bit is the same as CLZ(masks_[1]) for a ResourceMask with only that bit set.
157 size_t index = (mask.masks_[1] != 0u) ? CLZ(mask.masks_[1]) : 0u;
/art/runtime/mirror/
H A Darray-inl.h70 size_t component_shift = sizeof(size_t) * 8 - 1 - CLZ(component_size);
H A Dobject-inl.h755 size_t right_shift = CLZ(ref_offsets);

Completed in 876 milliseconds