Home
last modified time | relevance | path

Searched refs:__entries (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dwidth_estimation_table.h122 _LIBCPP_HIDE_FROM_ABI inline constexpr uint32_t __entries[110] = { variable
255 if (__code_point < (__entries[0] >> 14)) in __estimated_width()
258 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 14) | 0x3fffu) - __entries; in __estimated_width()
263 uint32_t __upper_bound = (__entries[__i] >> 14) + (__entries[__i] & 0x3fffu); in __estimated_width()
H A Dindic_conjunct_break_table.h110 _LIBCPP_HIDE_FROM_ABI inline constexpr uint32_t __entries[403] = { variable
534 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 11) | 0x7ffu) - __entries; in __get_property()
539 uint32_t __upper_bound = (__entries[__i] >> 11) + ((__entries[__i] >> 2) & 0b1'1111'1111); in __get_property()
541 return static_cast<__property>(__entries[__i] & 0b11); in __get_property()
H A Dextended_grapheme_cluster_table.h128 _LIBCPP_HIDE_FROM_ABI inline constexpr uint32_t __entries[1501] = { variable
1650 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 11) | 0x7ffu) - __entries; in __get_property()
1655 uint32_t __upper_bound = (__entries[__i] >> 11) + ((__entries[__i] >> 4) & 0x7f); in __get_property()
1657 return static_cast<__property>(__entries[__i] & 0xf); in __get_property()
H A Descaped_output_table.h112 _LIBCPP_HIDE_FROM_ABI inline constexpr uint32_t __entries[735] = { variable
871 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 14) | 0x3fffu) - __entries; in __needs_escape()
876 uint32_t __upper_bound = (__entries[__i] >> 14) + (__entries[__i] & 0x3fffu); in __needs_escape()
/freebsd/contrib/llvm-project/libcxx/src/experimental/
H A Dtzdb.cpp646 vector<__entry> __entries; in __parse_leap_seconds() local
669 __entries.emplace_back(__date, __value); in __parse_leap_seconds()
675 ranges::sort(__entries, {}, &__entry::__timestamp); in __parse_leap_seconds()
680 (void)ranges::adjacent_find(__entries, [&](const __entry& __first, const __entry& __second) { in __parse_leap_seconds()