Home
last modified time | relevance | path

Searched refs:cache_bits (Results 1 – 25 of 245) sorted by relevance

12345678910

/dports/www/firefox-esr/firefox-91.8.0/gfx/harfbuzz/src/
H A Dhb-cache.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 static_assert ((key_bits >= cache_bits), "");
39 static_assert ((key_bits + value_bits - cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
53 unsigned int k = key & ((1u<<cache_bits)-1); in get()
55 …if ((key_bits + value_bits - cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1)… in get()
56 (v >> value_bits) != (key >> cache_bits)) in get()
66 unsigned int k = key & ((1u<<cache_bits)-1); in set()
67 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
73 hb_atomic_int_t values[1u<<cache_bits];
/dports/print/harfbuzz-hb-view/harfbuzz-3.4.0/src/
H A Dhb-cache.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 static_assert ((key_bits >= cache_bits), "");
39 static_assert ((key_bits + value_bits - cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
53 unsigned int k = key & ((1u<<cache_bits)-1); in get()
55 …if ((key_bits + value_bits - cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1)… in get()
56 (v >> value_bits) != (key >> cache_bits)) in get()
66 unsigned int k = key & ((1u<<cache_bits)-1); in set()
67 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
73 hb_atomic_int_t values[1u<<cache_bits];
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/harfbuzz/src/
H A Dhb-cache.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 static_assert ((key_bits >= cache_bits), "");
39 static_assert ((key_bits + value_bits - cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
53 unsigned int k = key & ((1u<<cache_bits)-1); in get()
55 …if ((key_bits + value_bits - cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1)… in get()
56 (v >> value_bits) != (key >> cache_bits)) in get()
66 unsigned int k = key & ((1u<<cache_bits)-1); in set()
67 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
73 hb_atomic_int_t values[1u<<cache_bits];
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/harfbuzz-ng/src/src/
H A Dhb-cache.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 static_assert ((key_bits >= cache_bits), "");
39 static_assert ((key_bits + value_bits - cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
53 unsigned int k = key & ((1u<<cache_bits)-1); in get()
55 …if ((key_bits + value_bits - cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1)… in get()
56 (v >> value_bits) != (key >> cache_bits)) in get()
66 unsigned int k = key & ((1u<<cache_bits)-1); in set()
67 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
73 hb_atomic_int_t values[1u<<cache_bits];
/dports/www/firefox/firefox-99.0/gfx/harfbuzz/src/
H A Dhb-cache.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 static_assert ((key_bits >= cache_bits), "");
39 static_assert ((key_bits + value_bits - cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
53 unsigned int k = key & ((1u<<cache_bits)-1); in get()
55 …if ((key_bits + value_bits - cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1)… in get()
56 (v >> value_bits) != (key >> cache_bits)) in get()
66 unsigned int k = key & ((1u<<cache_bits)-1); in set()
67 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
73 hb_atomic_int_t values[1u<<cache_bits];
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/harfbuzz/src/
H A Dhb-cache.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 static_assert ((key_bits >= cache_bits), "");
39 static_assert ((key_bits + value_bits - cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
53 unsigned int k = key & ((1u<<cache_bits)-1); in get()
55 …if ((key_bits + value_bits - cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1)… in get()
56 (v >> value_bits) != (key >> cache_bits)) in get()
66 unsigned int k = key & ((1u<<cache_bits)-1); in set()
67 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
73 hb_atomic_int_t values[1u<<cache_bits];
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/rustybuzz-0.1.1/harfbuzz/src/
H A Dhb-cache.hh34 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits> struct hb_cache_t
36 static_assert((key_bits >= cache_bits), "");
37 static_assert((key_bits + value_bits - cache_bits <= 8 * sizeof(hb_atomic_int_t)), "");
54 unsigned int k = key & ((1u << cache_bits) - 1); in get()
56 …if ((key_bits + value_bits - cache_bits == 8 * sizeof(hb_atomic_int_t) && v == (unsigned int)-1) || in get()
57 (v >> value_bits) != (key >> cache_bits)) in get()
67 unsigned int k = key & ((1u << cache_bits) - 1); in set()
68 unsigned int v = ((key >> cache_bits) << value_bits) | value; in set()
74 hb_atomic_int_t values[1u << cache_bits];
/dports/print/harfbuzz/harfbuzz-3.4.0/src/
H A Dhb-cache.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 static_assert ((key_bits >= cache_bits), "");
39 static_assert ((key_bits + value_bits - cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
53 unsigned int k = key & ((1u<<cache_bits)-1); in get()
55 …if ((key_bits + value_bits - cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1)… in get()
56 (v >> value_bits) != (key >> cache_bits)) in get()
66 unsigned int k = key & ((1u<<cache_bits)-1); in set()
67 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
73 hb_atomic_int_t values[1u<<cache_bits];
/dports/print/harfbuzz-icu/harfbuzz-3.4.0/src/
H A Dhb-cache.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 static_assert ((key_bits >= cache_bits), "");
39 static_assert ((key_bits + value_bits - cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
53 unsigned int k = key & ((1u<<cache_bits)-1); in get()
55 …if ((key_bits + value_bits - cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1)… in get()
56 (v >> value_bits) != (key >> cache_bits)) in get()
66 unsigned int k = key & ((1u<<cache_bits)-1); in set()
67 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
73 hb_atomic_int_t values[1u<<cache_bits];
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/harfbuzz-ng/src/src/
H A Dhb-cache.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 static_assert ((key_bits >= cache_bits), "");
39 static_assert ((key_bits + value_bits - cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
53 unsigned int k = key & ((1u<<cache_bits)-1); in get()
55 …if ((key_bits + value_bits - cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1)… in get()
56 (v >> value_bits) != (key >> cache_bits)) in get()
66 unsigned int k = key & ((1u<<cache_bits)-1); in set()
67 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
73 hb_atomic_int_t values[1u<<cache_bits];
/dports/www/lagrange/lagrange-1.7.3/lib/harfbuzz/src/
H A Dhb-cache.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 static_assert ((key_bits >= cache_bits), "");
39 static_assert ((key_bits + value_bits - cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
53 unsigned int k = key & ((1u<<cache_bits)-1); in get()
55 …if ((key_bits + value_bits - cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1)… in get()
56 (v >> value_bits) != (key >> cache_bits)) in get()
66 unsigned int k = key & ((1u<<cache_bits)-1); in set()
67 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
73 hb_atomic_int_t values[1u<<cache_bits];
/dports/graphics/mupdf/mupdf-1.18.0-source/thirdparty/harfbuzz/src/
H A Dhb-cache.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 static_assert ((key_bits >= cache_bits), "");
39 static_assert ((key_bits + value_bits - cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
53 unsigned int k = key & ((1u<<cache_bits)-1); in get()
55 …if ((key_bits + value_bits - cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1)… in get()
56 (v >> value_bits) != (key >> cache_bits)) in get()
66 unsigned int k = key & ((1u<<cache_bits)-1); in set()
67 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
73 hb_atomic_int_t values[1u<<cache_bits];
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/harfbuzz-sys-0.3.4/harfbuzz/src/
H A Dhb-cache.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 static_assert ((key_bits >= cache_bits), "");
39 static_assert ((key_bits + value_bits - cache_bits <= 8 * sizeof (hb_atomic_int_t)), "");
53 unsigned int k = key & ((1u<<cache_bits)-1); in get()
55 …if ((key_bits + value_bits - cache_bits == 8 * sizeof (hb_atomic_int_t) && v == (unsigned int) -1)… in get()
56 (v >> value_bits) != (key >> cache_bits)) in get()
66 unsigned int k = key & ((1u<<cache_bits)-1); in set()
67 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
73 hb_atomic_int_t values[1u<<cache_bits];
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/3rdparty/harfbuzz-ng/src/
H A Dhb-cache-private.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1u<<cache_bits)-1); in get()
50 if ((v >> value_bits) != (key >> cache_bits)) in get()
60 unsigned int k = key & ((1u<<cache_bits)-1); in set()
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
67 unsigned int values[1u<<cache_bits];
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/3rdparty/harfbuzz-ng/src/
H A Dhb-cache-private.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1u<<cache_bits)-1); in get()
50 if ((v >> value_bits) != (key >> cache_bits)) in get()
60 unsigned int k = key & ((1u<<cache_bits)-1); in set()
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
67 unsigned int values[1u<<cache_bits];
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/3rdparty/harfbuzz-ng/src/
H A Dhb-cache-private.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1u<<cache_bits)-1); in get()
50 if ((v >> value_bits) != (key >> cache_bits)) in get()
60 unsigned int k = key & ((1u<<cache_bits)-1); in set()
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
67 unsigned int values[1u<<cache_bits];
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/3rdparty/harfbuzz-ng/src/
H A Dhb-cache-private.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1u<<cache_bits)-1); in get()
50 if ((v >> value_bits) != (key >> cache_bits)) in get()
60 unsigned int k = key & ((1u<<cache_bits)-1); in set()
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
67 unsigned int values[1u<<cache_bits];
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/3rdparty/harfbuzz-ng/src/
H A Dhb-cache-private.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1u<<cache_bits)-1); in get()
50 if ((v >> value_bits) != (key >> cache_bits)) in get()
60 unsigned int k = key & ((1u<<cache_bits)-1); in set()
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
67 unsigned int values[1u<<cache_bits];
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/3rdparty/harfbuzz-ng/src/
H A Dhb-cache-private.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1u<<cache_bits)-1); in get()
50 if ((v >> value_bits) != (key >> cache_bits)) in get()
60 unsigned int k = key & ((1u<<cache_bits)-1); in set()
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
67 unsigned int values[1u<<cache_bits];
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/3rdparty/harfbuzz-ng/src/
H A Dhb-cache-private.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1u<<cache_bits)-1); in get()
50 if ((v >> value_bits) != (key >> cache_bits)) in get()
60 unsigned int k = key & ((1u<<cache_bits)-1); in set()
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
67 unsigned int values[1u<<cache_bits];
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/3rdparty/harfbuzz-ng/src/
H A Dhb-cache-private.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1u<<cache_bits)-1); in get()
50 if ((v >> value_bits) != (key >> cache_bits)) in get()
60 unsigned int k = key & ((1u<<cache_bits)-1); in set()
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
67 unsigned int values[1u<<cache_bits];
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/3rdparty/harfbuzz-ng/src/
H A Dhb-cache-private.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1u<<cache_bits)-1); in get()
50 if ((v >> value_bits) != (key >> cache_bits)) in get()
60 unsigned int k = key & ((1u<<cache_bits)-1); in set()
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
67 unsigned int values[1u<<cache_bits];
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/3rdparty/harfbuzz-ng/src/
H A Dhb-cache-private.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1u<<cache_bits)-1); in get()
50 if ((v >> value_bits) != (key >> cache_bits)) in get()
60 unsigned int k = key & ((1u<<cache_bits)-1); in set()
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
67 unsigned int values[1u<<cache_bits];
/dports/x11-toolkits/qt5-widgets/kde-qtbase-5.15.2p263/src/3rdparty/harfbuzz-ng/src/
H A Dhb-cache-private.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1u<<cache_bits)-1); in get()
50 if ((v >> value_bits) != (key >> cache_bits)) in get()
60 unsigned int k = key & ((1u<<cache_bits)-1); in set()
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
67 unsigned int values[1u<<cache_bits];
/dports/x11-toolkits/qt5-gui/kde-qtbase-5.15.2p263/src/3rdparty/harfbuzz-ng/src/
H A Dhb-cache-private.hh35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1u<<cache_bits)-1); in get()
50 if ((v >> value_bits) != (key >> cache_bits)) in get()
60 unsigned int k = key & ((1u<<cache_bits)-1); in set()
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value; in set()
67 unsigned int values[1u<<cache_bits];

12345678910