Home
last modified time | relevance | path

Searched refs:desc8 (Results 1 – 14 of 14) sorted by relevance

/dports/lang/spidermonkey78/firefox-78.9.0/mfbt/tests/
H A DTestVariant.cpp608 auto desc8 = [](const uint8_t& a) { return Describer::littleConst; }; in testMatchingLambdas() local
616 MOZ_RELEASE_ASSERT(v1.match(desc8, desc32, desc64) == Describer::littleConst); in testMatchingLambdas()
618 MOZ_RELEASE_ASSERT(v3.match(desc8, desc32, desc64) == Describer::bigConst); in testMatchingLambdas()
624 MOZ_RELEASE_ASSERT(constRef1.match(desc8, desc32, desc64) == in testMatchingLambdas()
626 MOZ_RELEASE_ASSERT(constRef2.match(desc8, desc32, desc64) == in testMatchingLambdas()
628 MOZ_RELEASE_ASSERT(constRef3.match(desc8, desc32, desc64) == in testMatchingLambdas()
636 auto desc8 = [](size_t aIndex, const uint8_t& a) { in testMatchingLambdasWithIndex() local
655 MOZ_RELEASE_ASSERT(v3.match(desc8, desc32, desc64) == Describer::bigConst); in testMatchingLambdasWithIndex()
661 MOZ_RELEASE_ASSERT(constRef1.match(desc8, desc32, desc64) == in testMatchingLambdasWithIndex()
663 MOZ_RELEASE_ASSERT(constRef2.match(desc8, desc32, desc64) == in testMatchingLambdasWithIndex()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/mfbt/tests/
H A DTestVariant.cpp896 auto desc8 = [](auto&& a) { in testMatchingLambdas() local
965 MOZ_RELEASE_ASSERT(v1.match(desc8, desc32, desc64) == in testMatchingLambdas()
967 MOZ_RELEASE_ASSERT(v2.match(desc8, desc32, desc64) == in testMatchingLambdas()
969 MOZ_RELEASE_ASSERT(v3.match(desc8, desc32, desc64) == in testMatchingLambdas()
972 MOZ_RELEASE_ASSERT(constRef1.match(desc8, desc32, desc64) == in testMatchingLambdas()
974 MOZ_RELEASE_ASSERT(constRef2.match(desc8, desc32, desc64) == in testMatchingLambdas()
976 MOZ_RELEASE_ASSERT(constRef3.match(desc8, desc32, desc64) == in testMatchingLambdas()
998 auto desc8 = [](size_t aIndex, auto&& a) { in testMatchingLambdasWithIndex() local
1070 MOZ_RELEASE_ASSERT(v1.match(desc8, desc32, desc64) == in testMatchingLambdasWithIndex()
1072 MOZ_RELEASE_ASSERT(v2.match(desc8, desc32, desc64) == in testMatchingLambdasWithIndex()
[all …]
/dports/www/firefox/firefox-99.0/mfbt/tests/
H A DTestVariant.cpp896 auto desc8 = [](auto&& a) { in testMatchingLambdas() local
965 MOZ_RELEASE_ASSERT(v1.match(desc8, desc32, desc64) == in testMatchingLambdas()
967 MOZ_RELEASE_ASSERT(v2.match(desc8, desc32, desc64) == in testMatchingLambdas()
969 MOZ_RELEASE_ASSERT(v3.match(desc8, desc32, desc64) == in testMatchingLambdas()
972 MOZ_RELEASE_ASSERT(constRef1.match(desc8, desc32, desc64) == in testMatchingLambdas()
974 MOZ_RELEASE_ASSERT(constRef2.match(desc8, desc32, desc64) == in testMatchingLambdas()
976 MOZ_RELEASE_ASSERT(constRef3.match(desc8, desc32, desc64) == in testMatchingLambdas()
998 auto desc8 = [](size_t aIndex, auto&& a) { in testMatchingLambdasWithIndex() local
1070 MOZ_RELEASE_ASSERT(v1.match(desc8, desc32, desc64) == in testMatchingLambdasWithIndex()
1072 MOZ_RELEASE_ASSERT(v2.match(desc8, desc32, desc64) == in testMatchingLambdasWithIndex()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/mfbt/tests/
H A DTestVariant.cpp896 auto desc8 = [](auto&& a) { in testMatchingLambdas() local
965 MOZ_RELEASE_ASSERT(v1.match(desc8, desc32, desc64) == in testMatchingLambdas()
967 MOZ_RELEASE_ASSERT(v2.match(desc8, desc32, desc64) == in testMatchingLambdas()
969 MOZ_RELEASE_ASSERT(v3.match(desc8, desc32, desc64) == in testMatchingLambdas()
972 MOZ_RELEASE_ASSERT(constRef1.match(desc8, desc32, desc64) == in testMatchingLambdas()
974 MOZ_RELEASE_ASSERT(constRef2.match(desc8, desc32, desc64) == in testMatchingLambdas()
976 MOZ_RELEASE_ASSERT(constRef3.match(desc8, desc32, desc64) == in testMatchingLambdas()
998 auto desc8 = [](size_t aIndex, auto&& a) { in testMatchingLambdasWithIndex() local
1070 MOZ_RELEASE_ASSERT(v1.match(desc8, desc32, desc64) == in testMatchingLambdasWithIndex()
1072 MOZ_RELEASE_ASSERT(v2.match(desc8, desc32, desc64) == in testMatchingLambdasWithIndex()
[all …]
/dports/math/libxsmm/libxsmm-1.16.3/samples/packed/trsm/
H A Dtrsm.c458 const libxsmm_trsm_descriptor* desc8 = NULL; in main() local
545desc8 = libxsmm_trsm_descriptor_init(&blob, typesize8, m, n, lda, ldb, &dalpha, trans, diag, side,… in main()
551 mykernel = libxsmm_dispatch_trsm(desc8); in main()
561 libxsmm_generator_trsm_kernel ( &io_generated_code, desc8, "hsw" ); in main()
/dports/math/libxsmm/libxsmm-1.16.3/samples/packed/trmm/
H A Dtrmm.c458 const libxsmm_trmm_descriptor* desc8 = NULL; in main() local
545desc8 = libxsmm_trmm_descriptor_init(&blob, typesize8, m, n, lda, ldb, &dalpha, trans, diag, side,… in main()
551 mykernel = libxsmm_dispatch_trmm(desc8); in main()
561 libxsmm_generator_trmm_kernel ( &io_generated_code, desc8, "hsw" ); in main()
/dports/math/libxsmm/libxsmm-1.16.3/samples/packed/getrf/
H A Dgetrf.c528 const libxsmm_getrf_descriptor* desc8 = NULL; in main() local
612 desc8 = libxsmm_getrf_descriptor_init(&blob, typesize8, m, n, lda, layout); in main()
618 mykernel = libxsmm_dispatch_getrf(desc8); in main()
628 libxsmm_generator_getrf_kernel( &io_generated_code, desc8, arch ); in main()
/dports/math/libxsmm/libxsmm-1.16.3/samples/packed/gemm/
H A Dgemm.c495 const libxsmm_pgemm_descriptor* desc8 = NULL; in main() local
606desc8 = libxsmm_pgemm_descriptor_init(&blob, typesize8, m, n, k, lda, ldb, ldc, &dalpha, transa, t… in main()
616 mykernel = libxsmm_dispatch_pgemm(desc8); in main()
626 libxsmm_generator_pgemm_kernel( &io_generated_code, desc8, arch, iunroll, junroll, loopi, loopj ); in main()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/wireless/realtek/rtlwifi/rtl8192se/
H A Dtrx.c596 u8 *desc8, bool istx, u8 desc_name) in rtl92se_get_desc() argument
599 __le32 *desc = (__le32 *)desc8; in rtl92se_get_desc()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/wireless/realtek/rtlwifi/rtl8192se/
H A Dtrx.c596 u8 *desc8, bool istx, u8 desc_name) in rtl92se_get_desc() argument
599 __le32 *desc = (__le32 *)desc8; in rtl92se_get_desc()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/wireless/realtek/rtlwifi/rtl8192se/
H A Dtrx.c596 u8 *desc8, bool istx, u8 desc_name) in rtl92se_get_desc() argument
599 __le32 *desc = (__le32 *)desc8; in rtl92se_get_desc()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/
H A Dtrx.c554 u8 *tx_bd_desc8, u8 *desc8, u8 queue_index, in rtl92ee_pre_fill_tx_bd_desc() argument
571 __le32 *desc = (__le32 *)desc8; in rtl92ee_pre_fill_tx_bd_desc()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/
H A Dtrx.c554 u8 *tx_bd_desc8, u8 *desc8, u8 queue_index, in rtl92ee_pre_fill_tx_bd_desc() argument
571 __le32 *desc = (__le32 *)desc8; in rtl92ee_pre_fill_tx_bd_desc()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/
H A Dtrx.c554 u8 *tx_bd_desc8, u8 *desc8, u8 queue_index, in rtl92ee_pre_fill_tx_bd_desc() argument
571 __le32 *desc = (__le32 *)desc8; in rtl92ee_pre_fill_tx_bd_desc()