123456789101112131415161718192021222324252627282930313233343536373839404142(** [count_leading_zeros n] returns the number of most-significant
zero bits before the most significant set bit in [n].
If [n] is 0, the result is the number of bits in [n],
that is 32. *)externalcount_leading_zeros:(int32[@unboxed])->(int[@untagged])="caml_int32_clz""caml_int32_clz_unboxed_to_untagged"[@@noalloc][@@builtin][@@no_effects][@@no_coeffects](** Same as [count_leading_zeros] except if the argument is zero,
then the result is undefined. Emits more efficient code. *)externalcount_leading_zeros_nonzero_arg:(int32[@unboxed])->(int[@untagged])="caml_int32_clz""caml_int32_clz_nonzero_unboxed_to_untagged"[@@noalloc][@@builtin][@@no_effects][@@no_coeffects](** [count_trailing_zeros n] returns the number of least-significant
zero bits before the least significant set bit in [n].
If [n] is 0, the result is the number of bits in [n],
that is 32. *)externalcount_trailing_zeros:(int32[@unboxed])->(int[@untagged])="caml_int32_ctz""caml_int32_ctz_unboxed_to_untagged"[@@noalloc][@@builtin][@@no_effects][@@no_coeffects](** Same as [count_trailing_zeros] except if the argument is zero,
then the result is undefined. Emits more efficient code. *)externalcount_trailing_zeros_nonzero_arg:(int32[@unboxed])->(int[@untagged])="caml_int32_ctz""caml_int32_ctz_nonzero_unboxed_to_untagged"[@@noalloc][@@builtin][@@no_effects][@@no_coeffects](** [count_set_bits n] returns the number of bits that are 1 in [n]. *)externalcount_set_bits:(int32[@unboxed])->(int[@untagged])="caml_int32_popcnt""caml_int32_popcnt_unboxed_to_untagged"[@@noalloc][@@builtin][@@no_effects][@@no_coeffects]