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[107] = { variable
252 if (__code_point < (__entries[0] >> 14)) in __estimated_width()
255 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 14) | 0x3fffu) - __entries; in __estimated_width()
260 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[201] = { variable
332 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 11) | 0x7ffu) - __entries; in __get_property()
337 uint32_t __upper_bound = (__entries[__i] >> 11) + ((__entries[__i] >> 2) & 0b1'1111'1111); in __get_property()
339 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[1496] = { variable
1645 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 11) | 0x7ffu) - __entries; in __get_property()
1650 uint32_t __upper_bound = (__entries[__i] >> 11) + ((__entries[__i] >> 4) & 0x7f); in __get_property()
1652 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[711] = { variable
847 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 14) | 0x3fffu) - __entries; in __needs_escape()
852 uint32_t __upper_bound = (__entries[__i] >> 14) + (__entries[__i] & 0x3fffu); in __needs_escape()
/freebsd/contrib/llvm-project/libcxx/src/experimental/
H A Dtzdb.cpp633 vector<__entry> __entries; in __parse_leap_seconds() local
656 __entries.emplace_back(__date, __value); in __parse_leap_seconds()
662 ranges::sort(__entries, {}, &__entry::__timestamp); in __parse_leap_seconds()
667 (void)ranges::adjacent_find(__entries, [&](const __entry& __first, const __entry& __second) { in __parse_leap_seconds()