/src/libjxl/lib/jxl/base/data_parallel.h
Line | Count | Source |
1 | | // Copyright (c) the JPEG XL Project Authors. All rights reserved. |
2 | | // |
3 | | // Use of this source code is governed by a BSD-style |
4 | | // license that can be found in the LICENSE file. |
5 | | |
6 | | #ifndef LIB_JXL_BASE_DATA_PARALLEL_H_ |
7 | | #define LIB_JXL_BASE_DATA_PARALLEL_H_ |
8 | | |
9 | | // Portable, low-overhead C++11 ThreadPool alternative to OpenMP for |
10 | | // data-parallel computations. |
11 | | |
12 | | #include <jxl/parallel_runner.h> |
13 | | |
14 | | #include <atomic> |
15 | | #include <cstddef> |
16 | | #include <cstdint> |
17 | | |
18 | | #include "lib/jxl/base/compiler_specific.h" |
19 | | #include "lib/jxl/base/status.h" |
20 | | #if JXL_COMPILER_MSVC |
21 | | // suppress warnings about the const & applied to function types |
22 | | #pragma warning(disable : 4180) |
23 | | #endif |
24 | | |
25 | | namespace jxl { |
26 | | |
27 | | struct ThreadPoolNoInit {}; |
28 | | |
29 | | class ThreadPool { |
30 | | public: |
31 | | ThreadPool(JxlParallelRunner runner, void* runner_opaque) |
32 | 597k | : runner_(runner), |
33 | 597k | runner_opaque_(runner ? runner_opaque : static_cast<void*>(this)) {} |
34 | | |
35 | | ThreadPool(const ThreadPool&) = delete; |
36 | | ThreadPool& operator&(const ThreadPool&) = delete; |
37 | | |
38 | 0 | JxlParallelRunner runner() const { return runner_; } |
39 | 0 | void* runner_opaque() const { return runner_opaque_; } |
40 | | |
41 | | // Runs init_func(num_threads) followed by data_func(task, thread) on worker |
42 | | // thread(s) for every task in [begin, end). init_func() must return a Status |
43 | | // indicating whether the initialization succeeded. |
44 | | // "thread" is an integer smaller than num_threads. |
45 | | // Not thread-safe - no two calls to Run may overlap. |
46 | | // Subsequent calls will reuse the same threads. |
47 | | // |
48 | | // Precondition: begin <= end. |
49 | | template <class InitFunc, class DataFunc> |
50 | | Status Run(uint32_t begin, uint32_t end, const InitFunc& init_func, |
51 | 404k | const DataFunc& data_func, const char* caller) { |
52 | 404k | JXL_ENSURE(begin <= end); |
53 | 404k | if (begin == end) return true; |
54 | 404k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); |
55 | | // The runner_ uses the C convention and returns 0 in case of error, so we |
56 | | // convert it to a Status. |
57 | 404k | if (!runner_) { |
58 | 210k | void* jpegxl_opaque = static_cast<void*>(&call_state); |
59 | 210k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != |
60 | 210k | JXL_PARALLEL_RET_SUCCESS) { |
61 | 0 | return JXL_FAILURE("Failed to initialize thread"); |
62 | 0 | } |
63 | 4.17M | for (uint32_t i = begin; i < end; i++) { |
64 | 3.96M | call_state.CallDataFunc(jpegxl_opaque, i, 0); |
65 | 3.96M | } |
66 | 210k | if (call_state.HasError()) { |
67 | 0 | return JXL_FAILURE("[%s] failed", caller); |
68 | 0 | } |
69 | 210k | return true; |
70 | 210k | } |
71 | 193k | JxlParallelRetCode ret = (*runner_)( |
72 | 193k | runner_opaque_, static_cast<void*>(&call_state), |
73 | 193k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); |
74 | | |
75 | 193k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { |
76 | 27.2k | return JXL_FAILURE("[%s] failed", caller); |
77 | 27.2k | } |
78 | 166k | return true; |
79 | 193k | } Unexecuted instantiation: encode.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1>(unsigned int, unsigned int, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0 const&, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1 const&, char const*) Line | Count | Source | 51 | 3.48k | const DataFunc& data_func, const char* caller) { | 52 | 3.48k | JXL_ENSURE(begin <= end); | 53 | 3.48k | if (begin == end) return true; | 54 | 3.48k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 3.48k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 3.48k | JxlParallelRetCode ret = (*runner_)( | 72 | 3.48k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 3.48k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 3.48k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 3.48k | return true; | 79 | 3.48k | } |
enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0>(unsigned int, unsigned int, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2 const&, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0 const&, char const*) Line | Count | Source | 51 | 4.93k | const DataFunc& data_func, const char* caller) { | 52 | 4.93k | JXL_ENSURE(begin <= end); | 53 | 4.93k | if (begin == end) return true; | 54 | 4.93k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 4.93k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 4.93k | JxlParallelRetCode ret = (*runner_)( | 72 | 4.93k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 4.93k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 4.93k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 4.93k | return true; | 79 | 4.93k | } |
enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3>(unsigned int, unsigned int, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2 const&, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3 const&, char const*) Line | Count | Source | 51 | 4.93k | const DataFunc& data_func, const char* caller) { | 52 | 4.93k | JXL_ENSURE(begin <= end); | 53 | 4.93k | if (begin == end) return true; | 54 | 4.93k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 4.93k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 4.93k | JxlParallelRetCode ret = (*runner_)( | 72 | 4.93k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 4.93k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 4.93k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 4.93k | return true; | 79 | 4.93k | } |
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)enc_heuristics.cc:jxl::Status jxl::ThreadPool::Run<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0 const&, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1 const&, char const*) Line | Count | Source | 51 | 10.4k | const DataFunc& data_func, const char* caller) { | 52 | 10.4k | JXL_ENSURE(begin <= end); | 53 | 10.4k | if (begin == end) return true; | 54 | 10.4k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 10.4k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 10.4k | JxlParallelRetCode ret = (*runner_)( | 72 | 10.4k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 10.4k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 10.4k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 10.4k | return true; | 79 | 10.4k | } |
enc_heuristics.cc:jxl::Status jxl::ThreadPool::Run<jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0>(unsigned int, unsigned int, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1 const&, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0 const&, char const*) Line | Count | Source | 51 | 3.48k | const DataFunc& data_func, const char* caller) { | 52 | 3.48k | JXL_ENSURE(begin <= end); | 53 | 3.48k | if (begin == end) return true; | 54 | 3.48k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 3.48k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 3.48k | JxlParallelRetCode ret = (*runner_)( | 72 | 3.48k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 3.48k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 3.48k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 3.48k | return true; | 79 | 3.48k | } |
enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)Line | Count | Source | 51 | 2.88k | const DataFunc& data_func, const char* caller) { | 52 | 2.88k | JXL_ENSURE(begin <= end); | 53 | 2.88k | if (begin == end) return true; | 54 | 2.88k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 2.88k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 2.88k | JxlParallelRetCode ret = (*runner_)( | 72 | 2.88k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 2.88k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 2.88k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 2.88k | return true; | 79 | 2.88k | } |
Unexecuted instantiation: enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)Line | Count | Source | 51 | 1.44k | const DataFunc& data_func, const char* caller) { | 52 | 1.44k | JXL_ENSURE(begin <= end); | 53 | 1.44k | if (begin == end) return true; | 54 | 1.44k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 1.44k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 1.44k | JxlParallelRetCode ret = (*runner_)( | 72 | 1.44k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 1.44k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 1.44k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 1.44k | return true; | 79 | 1.44k | } |
enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)Line | Count | Source | 51 | 4.93k | const DataFunc& data_func, const char* caller) { | 52 | 4.93k | JXL_ENSURE(begin <= end); | 53 | 4.93k | if (begin == end) return true; | 54 | 4.93k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 4.93k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 4.93k | JxlParallelRetCode ret = (*runner_)( | 72 | 4.93k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 4.93k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 4.93k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 4.93k | return true; | 79 | 4.93k | } |
enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)Line | Count | Source | 51 | 4.93k | const DataFunc& data_func, const char* caller) { | 52 | 4.93k | JXL_ENSURE(begin <= end); | 53 | 4.93k | if (begin == end) return true; | 54 | 4.93k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 4.93k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 4.93k | JxlParallelRetCode ret = (*runner_)( | 72 | 4.93k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 4.93k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 4.93k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 4.93k | return true; | 79 | 4.93k | } |
enc_patch_dictionary.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)Line | Count | Source | 51 | 3.14k | const DataFunc& data_func, const char* caller) { | 52 | 3.14k | JXL_ENSURE(begin <= end); | 53 | 3.14k | if (begin == end) return true; | 54 | 3.14k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 3.14k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 3.14k | JxlParallelRetCode ret = (*runner_)( | 72 | 3.14k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 3.14k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 3.14k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 3.14k | return true; | 79 | 3.14k | } |
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Line | Count | Source | 51 | 3.48k | const DataFunc& data_func, const char* caller) { | 52 | 3.48k | JXL_ENSURE(begin <= end); | 53 | 3.48k | if (begin == end) return true; | 54 | 3.48k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 3.48k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 3.48k | JxlParallelRetCode ret = (*runner_)( | 72 | 3.48k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 3.48k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 3.48k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 3.48k | return true; | 79 | 3.48k | } |
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Line | Count | Source | 51 | 5.37k | const DataFunc& data_func, const char* caller) { | 52 | 5.37k | JXL_ENSURE(begin <= end); | 53 | 5.37k | if (begin == end) return true; | 54 | 5.37k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 5.37k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 5.37k | JxlParallelRetCode ret = (*runner_)( | 72 | 5.37k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 5.37k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 5.37k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 5.37k | return true; | 79 | 5.37k | } |
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE0_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE1_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE2_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE3_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE4_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE5_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>(unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3 const&, char const*) dec_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>(unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5 const&, char const*) Line | Count | Source | 51 | 1.44k | const DataFunc& data_func, const char* caller) { | 52 | 1.44k | JXL_ENSURE(begin <= end); | 53 | 1.44k | if (begin == end) return true; | 54 | 1.44k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 1.44k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 1.44k | JxlParallelRetCode ret = (*runner_)( | 72 | 1.44k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 1.44k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 1.44k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 1.44k | return true; | 79 | 1.44k | } |
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7>(unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7 const&, char const*) dec_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)Line | Count | Source | 51 | 59.6k | const DataFunc& data_func, const char* caller) { | 52 | 59.6k | JXL_ENSURE(begin <= end); | 53 | 59.6k | if (begin == end) return true; | 54 | 59.6k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 59.6k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 59.6k | JxlParallelRetCode ret = (*runner_)( | 72 | 59.6k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 59.6k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 59.6k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 26.5k | return JXL_FAILURE("[%s] failed", caller); | 77 | 26.5k | } | 78 | 33.1k | return true; | 79 | 59.6k | } |
dec_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2>(unsigned int, unsigned int, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1 const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2 const&, char const*) Line | Count | Source | 51 | 31.4k | const DataFunc& data_func, const char* caller) { | 52 | 31.4k | JXL_ENSURE(begin <= end); | 53 | 31.4k | if (begin == end) return true; | 54 | 31.4k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 31.4k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 31.4k | JxlParallelRetCode ret = (*runner_)( | 72 | 31.4k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 31.4k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 31.4k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 738 | return JXL_FAILURE("[%s] failed", caller); | 77 | 738 | } | 78 | 30.6k | return true; | 79 | 31.4k | } |
Unexecuted instantiation: dec_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::FrameDecoder::Flush()::$_0, jxl::FrameDecoder::Flush()::$_1>(unsigned int, unsigned int, jxl::FrameDecoder::Flush()::$_0 const&, jxl::FrameDecoder::Flush()::$_1 const&, char const*) dec_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)Line | Count | Source | 51 | 13.3k | const DataFunc& data_func, const char* caller) { | 52 | 13.3k | JXL_ENSURE(begin <= end); | 53 | 13.3k | if (begin == end) return true; | 54 | 13.3k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 13.3k | if (!runner_) { | 58 | 13.3k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 13.3k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 13.3k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 554k | for (uint32_t i = begin; i < end; i++) { | 64 | 540k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 540k | } | 66 | 13.3k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 13.3k | return true; | 70 | 13.3k | } | 71 | 0 | JxlParallelRetCode ret = (*runner_)( | 72 | 0 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 0 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | |
| 75 | 0 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 0 | return true; | 79 | 0 | } |
dec_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)Line | Count | Source | 51 | 14.1k | const DataFunc& data_func, const char* caller) { | 52 | 14.1k | JXL_ENSURE(begin <= end); | 53 | 14.1k | if (begin == end) return true; | 54 | 14.1k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 14.1k | if (!runner_) { | 58 | 14.1k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 14.1k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 14.1k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 127k | for (uint32_t i = begin; i < end; i++) { | 64 | 113k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 113k | } | 66 | 14.1k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 14.1k | return true; | 70 | 14.1k | } | 71 | 0 | JxlParallelRetCode ret = (*runner_)( | 72 | 0 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 0 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | |
| 75 | 0 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 0 | return true; | 79 | 0 | } |
dec_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)Line | Count | Source | 51 | 60.1k | const DataFunc& data_func, const char* caller) { | 52 | 60.1k | JXL_ENSURE(begin <= end); | 53 | 60.1k | if (begin == end) return true; | 54 | 60.1k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 60.1k | if (!runner_) { | 58 | 60.1k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 60.1k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 60.1k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 2.76M | for (uint32_t i = begin; i < end; i++) { | 64 | 2.70M | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 2.70M | } | 66 | 60.1k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 60.1k | return true; | 70 | 60.1k | } | 71 | 0 | JxlParallelRetCode ret = (*runner_)( | 72 | 0 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 0 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | |
| 75 | 0 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 0 | return true; | 79 | 0 | } |
dec_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>(unsigned int, unsigned int, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0 const&, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1 const&, char const*) Line | Count | Source | 51 | 27.5k | const DataFunc& data_func, const char* caller) { | 52 | 27.5k | JXL_ENSURE(begin <= end); | 53 | 27.5k | if (begin == end) return true; | 54 | 27.5k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 27.5k | if (!runner_) { | 58 | 26.9k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 26.9k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 26.9k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 54.4k | for (uint32_t i = begin; i < end; i++) { | 64 | 27.4k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 27.4k | } | 66 | 26.9k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 26.9k | return true; | 70 | 26.9k | } | 71 | 528 | JxlParallelRetCode ret = (*runner_)( | 72 | 528 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 528 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 528 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 528 | return true; | 79 | 528 | } |
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)palette.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)Line | Count | Source | 51 | 365 | const DataFunc& data_func, const char* caller) { | 52 | 365 | JXL_ENSURE(begin <= end); | 53 | 365 | if (begin == end) return true; | 54 | 364 | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 364 | if (!runner_) { | 58 | 326 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 326 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 326 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 6.26k | for (uint32_t i = begin; i < end; i++) { | 64 | 5.94k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 5.94k | } | 66 | 326 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 326 | return true; | 70 | 326 | } | 71 | 38 | JxlParallelRetCode ret = (*runner_)( | 72 | 38 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 38 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 38 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 38 | return true; | 79 | 38 | } |
palette.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)Line | Count | Source | 51 | 614 | const DataFunc& data_func, const char* caller) { | 52 | 614 | JXL_ENSURE(begin <= end); | 53 | 614 | if (begin == end) return true; | 54 | 614 | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 614 | if (!runner_) { | 58 | 606 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 606 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 606 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 20.5k | for (uint32_t i = begin; i < end; i++) { | 64 | 19.9k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 19.9k | } | 66 | 606 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 606 | return true; | 70 | 606 | } | 71 | 8 | JxlParallelRetCode ret = (*runner_)( | 72 | 8 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 8 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 8 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 8 | return true; | 79 | 8 | } |
palette.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)Line | Count | Source | 51 | 328 | const DataFunc& data_func, const char* caller) { | 52 | 328 | JXL_ENSURE(begin <= end); | 53 | 328 | if (begin == end) return true; | 54 | 328 | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 328 | if (!runner_) { | 58 | 326 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 326 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 326 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 796 | for (uint32_t i = begin; i < end; i++) { | 64 | 470 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 470 | } | 66 | 326 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 326 | return true; | 70 | 326 | } | 71 | 2 | JxlParallelRetCode ret = (*runner_)( | 72 | 2 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 2 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 2 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 2 | return true; | 79 | 2 | } |
palette.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)Line | Count | Source | 51 | 1.44k | const DataFunc& data_func, const char* caller) { | 52 | 1.44k | JXL_ENSURE(begin <= end); | 53 | 1.44k | if (begin == end) return true; | 54 | 1.44k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 1.44k | if (!runner_) { | 58 | 1.44k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 1.44k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 1.44k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 4.08k | for (uint32_t i = begin; i < end; i++) { | 64 | 2.63k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 2.63k | } | 66 | 1.44k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 1.44k | return true; | 70 | 1.44k | } | 71 | 5 | JxlParallelRetCode ret = (*runner_)( | 72 | 5 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 5 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 5 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 5 | return true; | 79 | 5 | } |
Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Line | Count | Source | 51 | 4.33k | const DataFunc& data_func, const char* caller) { | 52 | 4.33k | JXL_ENSURE(begin <= end); | 53 | 4.33k | if (begin == end) return true; | 54 | 4.33k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 4.33k | if (!runner_) { | 58 | 4.31k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 4.31k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 4.31k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 322k | for (uint32_t i = begin; i < end; i++) { | 64 | 318k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 318k | } | 66 | 4.31k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 4.31k | return true; | 70 | 4.31k | } | 71 | 16 | JxlParallelRetCode ret = (*runner_)( | 72 | 16 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 16 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 16 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 16 | return true; | 79 | 16 | } |
Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)Line | Count | Source | 51 | 48.4k | const DataFunc& data_func, const char* caller) { | 52 | 48.4k | JXL_ENSURE(begin <= end); | 53 | 48.4k | if (begin == end) return true; | 54 | 48.4k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 48.4k | if (!runner_) { | 58 | 46.2k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 46.2k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 46.2k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 229k | for (uint32_t i = begin; i < end; i++) { | 64 | 183k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 183k | } | 66 | 46.2k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 46.2k | return true; | 70 | 46.2k | } | 71 | 2.13k | JxlParallelRetCode ret = (*runner_)( | 72 | 2.13k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 2.13k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 2.13k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 2.13k | return true; | 79 | 2.13k | } |
squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)Line | Count | Source | 51 | 44.9k | const DataFunc& data_func, const char* caller) { | 52 | 44.9k | JXL_ENSURE(begin <= end); | 53 | 44.9k | if (begin == end) return true; | 54 | 44.9k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 44.9k | if (!runner_) { | 58 | 42.9k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 42.9k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 42.9k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 91.3k | for (uint32_t i = begin; i < end; i++) { | 64 | 48.3k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 48.3k | } | 66 | 42.9k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 42.9k | return true; | 70 | 42.9k | } | 71 | 2.01k | JxlParallelRetCode ret = (*runner_)( | 72 | 2.01k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 2.01k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 2.01k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 2.01k | return true; | 79 | 2.01k | } |
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*) enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*) Line | Count | Source | 51 | 3.48k | const DataFunc& data_func, const char* caller) { | 52 | 3.48k | JXL_ENSURE(begin <= end); | 53 | 3.48k | if (begin == end) return true; | 54 | 3.48k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 3.48k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 3.48k | JxlParallelRetCode ret = (*runner_)( | 72 | 3.48k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 3.48k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 3.48k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 3.48k | return true; | 79 | 3.48k | } |
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0 const&, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1 const&, char const*) enc_cache.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)Line | Count | Source | 51 | 3.48k | const DataFunc& data_func, const char* caller) { | 52 | 3.48k | JXL_ENSURE(begin <= end); | 53 | 3.48k | if (begin == end) return true; | 54 | 3.48k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 3.48k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 3.48k | JxlParallelRetCode ret = (*runner_)( | 72 | 3.48k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 3.48k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 3.48k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 3.48k | return true; | 79 | 3.48k | } |
enc_cache.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)Line | Count | Source | 51 | 3.48k | const DataFunc& data_func, const char* caller) { | 52 | 3.48k | JXL_ENSURE(begin <= end); | 53 | 3.48k | if (begin == end) return true; | 54 | 3.48k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 3.48k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 3.48k | JxlParallelRetCode ret = (*runner_)( | 72 | 3.48k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 3.48k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 3.48k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 3.48k | return true; | 79 | 3.48k | } |
enc_cache.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)Line | Count | Source | 51 | 3.48k | const DataFunc& data_func, const char* caller) { | 52 | 3.48k | JXL_ENSURE(begin <= end); | 53 | 3.48k | if (begin == end) return true; | 54 | 3.48k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 3.48k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 3.48k | JxlParallelRetCode ret = (*runner_)( | 72 | 3.48k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 3.48k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 3.48k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 3.48k | return true; | 79 | 3.48k | } |
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)enc_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)Line | Count | Source | 51 | 14.7k | const DataFunc& data_func, const char* caller) { | 52 | 14.7k | JXL_ENSURE(begin <= end); | 53 | 14.7k | if (begin == end) return true; | 54 | 14.7k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 14.7k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 14.7k | JxlParallelRetCode ret = (*runner_)( | 72 | 14.7k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 14.7k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 14.7k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 14.7k | return true; | 79 | 14.7k | } |
Unexecuted instantiation: enc_image_bundle.cc:jxl::Status jxl::ThreadPool::Run<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>(unsigned int, unsigned int, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1 const&, char const*) Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)Line | Count | Source | 51 | 13.9k | const DataFunc& data_func, const char* caller) { | 52 | 13.9k | JXL_ENSURE(begin <= end); | 53 | 13.9k | if (begin == end) return true; | 54 | 13.9k | RunCallState<InitFunc, DataFunc> call_state(init_func, data_func); | 55 | | // The runner_ uses the C convention and returns 0 in case of error, so we | 56 | | // convert it to a Status. | 57 | 13.9k | if (!runner_) { | 58 | 0 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 0 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 0 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 0 | for (uint32_t i = begin; i < end; i++) { | 64 | 0 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 0 | } | 66 | 0 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 0 | return true; | 70 | 0 | } | 71 | 13.9k | JxlParallelRetCode ret = (*runner_)( | 72 | 13.9k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 13.9k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 13.9k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 13.9k | return true; | 79 | 13.9k | } |
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*) |
80 | | |
81 | | // Use this as init_func when no initialization is needed. |
82 | | static constexpr ThreadPoolNoInit NoInit{}; |
83 | | |
84 | | private: |
85 | | // class holding the state of a Run() call to pass to the runner_ as an |
86 | | // opaque_jpegxl pointer. |
87 | | template <class InitFunc, class DataFunc> |
88 | | class RunCallState final { |
89 | | public: |
90 | | RunCallState(const InitFunc& init_func, const DataFunc& data_func) |
91 | 404k | : init_func_(init_func), data_func_(data_func) {}Unexecuted instantiation: encode.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>::RunCallState({lambda(unsigned long)#1} const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&)Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&)Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&)enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1>::RunCallState(jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0 const&, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1 const&) Line | Count | Source | 91 | 3.48k | : init_func_(init_func), data_func_(data_func) {} |
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0>::RunCallState(jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2 const&, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0 const&) Line | Count | Source | 91 | 4.93k | : init_func_(init_func), data_func_(data_func) {} |
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3>::RunCallState(jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2 const&, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3 const&) Line | Count | Source | 91 | 4.93k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&)enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::RunCallState(jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0 const&, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1 const&) Line | Count | Source | 91 | 10.4k | : init_func_(init_func), data_func_(data_func) {} |
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0>::RunCallState(jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1 const&, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0 const&) Line | Count | Source | 91 | 3.48k | : init_func_(init_func), data_func_(data_func) {} |
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&)Line | Count | Source | 91 | 2.88k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&)enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&)Line | Count | Source | 91 | 1.44k | : init_func_(init_func), data_func_(data_func) {} |
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&)Line | Count | Source | 91 | 4.93k | : init_func_(init_func), data_func_(data_func) {} |
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&)Line | Count | Source | 91 | 4.93k | : init_func_(init_func), data_func_(data_func) {} |
enc_patch_dictionary.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&)Line | Count | Source | 91 | 3.14k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)Line | Count | Source | 91 | 3.48k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)Line | Count | Source | 91 | 5.37k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#2} const&)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#3} const&)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#4} const&)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#5} const&)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#6} const&)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#7} const&)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::RunCallState(jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3 const&) dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::RunCallState(jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5 const&) Line | Count | Source | 91 | 1.44k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7>::RunCallState(jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7 const&) dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&)Line | Count | Source | 91 | 59.6k | : init_func_(init_func), data_func_(data_func) {} |
dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2>::RunCallState(jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1 const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2 const&) Line | Count | Source | 91 | 31.4k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::Flush()::$_0, jxl::FrameDecoder::Flush()::$_1>::RunCallState(jxl::FrameDecoder::Flush()::$_0 const&, jxl::FrameDecoder::Flush()::$_1 const&) dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&)Line | Count | Source | 91 | 13.3k | : init_func_(init_func), data_func_(data_func) {} |
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&)Line | Count | Source | 91 | 14.1k | : init_func_(init_func), data_func_(data_func) {} |
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&)Line | Count | Source | 91 | 60.1k | : init_func_(init_func), data_func_(data_func) {} |
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>::RunCallState(jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0 const&, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1 const&) Line | Count | Source | 91 | 27.5k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&)Line | Count | Source | 91 | 364 | : init_func_(init_func), data_func_(data_func) {} |
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&)Line | Count | Source | 91 | 614 | : init_func_(init_func), data_func_(data_func) {} |
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&)Line | Count | Source | 91 | 328 | : init_func_(init_func), data_func_(data_func) {} |
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&)Line | Count | Source | 91 | 1.44k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)Line | Count | Source | 91 | 4.33k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)Line | Count | Source | 91 | 48.4k | : init_func_(init_func), data_func_(data_func) {} |
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)Line | Count | Source | 91 | 44.9k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&) enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&) Line | Count | Source | 91 | 3.48k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1>::RunCallState(jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0 const&, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1 const&) enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&)Line | Count | Source | 91 | 3.48k | : init_func_(init_func), data_func_(data_func) {} |
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&)Line | Count | Source | 91 | 3.48k | : init_func_(init_func), data_func_(data_func) {} |
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&)Line | Count | Source | 91 | 3.48k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&)Line | Count | Source | 91 | 14.7k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::RunCallState(jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1 const&) Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&)Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)Line | Count | Source | 91 | 13.9k | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&) |
92 | | |
93 | | // JxlParallelRunInit interface. |
94 | 404k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { |
95 | 404k | auto* self = |
96 | 404k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); |
97 | | // Returns -1 when the internal init function returns false Status to |
98 | | // indicate an error. |
99 | 404k | if (!self->init_func_(num_threads)) { |
100 | 6 | self->has_error_ = 1; |
101 | 6 | return JXL_PARALLEL_RET_RUNNER_ERROR; |
102 | 6 | } |
103 | 404k | return JXL_PARALLEL_RET_SUCCESS; |
104 | 404k | } Unexecuted instantiation: encode.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>::CallInitFunc(void*, unsigned long)enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1>::CallInitFunc(void*, unsigned long) Line | Count | Source | 94 | 3.48k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 3.48k | auto* self = | 96 | 3.48k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 3.48k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 3.48k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 3.48k | } |
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0>::CallInitFunc(void*, unsigned long) Line | Count | Source | 94 | 4.93k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 4.93k | auto* self = | 96 | 4.93k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 4.93k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 4.93k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 4.93k | } |
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3>::CallInitFunc(void*, unsigned long) Line | Count | Source | 94 | 4.93k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 4.93k | auto* self = | 96 | 4.93k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 4.93k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 4.93k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 4.93k | } |
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::CallInitFunc(void*, unsigned long)enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long) Line | Count | Source | 94 | 10.4k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 10.4k | auto* self = | 96 | 10.4k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 10.4k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 10.4k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 10.4k | } |
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0>::CallInitFunc(void*, unsigned long) Line | Count | Source | 94 | 3.48k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 3.48k | auto* self = | 96 | 3.48k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 3.48k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 3.48k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 3.48k | } |
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 2.88k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 2.88k | auto* self = | 96 | 2.88k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 2.88k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 2.88k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 2.88k | } |
Unexecuted instantiation: enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::CallInitFunc(void*, unsigned long)enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 1.44k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 1.44k | auto* self = | 96 | 1.44k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 1.44k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 1.44k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 1.44k | } |
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 4.93k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 4.93k | auto* self = | 96 | 4.93k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 4.93k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 4.93k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 4.93k | } |
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 4.93k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 4.93k | auto* self = | 96 | 4.93k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 4.93k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 4.93k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 4.93k | } |
enc_patch_dictionary.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 3.14k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 3.14k | auto* self = | 96 | 3.14k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 3.14k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 3.14k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 3.14k | } |
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 3.48k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 3.48k | auto* self = | 96 | 3.48k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 3.48k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 3.48k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 3.48k | } |
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 5.37k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 5.37k | auto* self = | 96 | 5.37k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 5.37k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 5.37k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 5.37k | } |
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::CallInitFunc(void*, unsigned long) dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::CallInitFunc(void*, unsigned long) Line | Count | Source | 94 | 1.44k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 1.44k | auto* self = | 96 | 1.44k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 1.44k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 1.44k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 1.44k | } |
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7>::CallInitFunc(void*, unsigned long) dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 59.6k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 59.6k | auto* self = | 96 | 59.6k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 59.6k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 59.6k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 59.6k | } |
dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2>::CallInitFunc(void*, unsigned long) Line | Count | Source | 94 | 31.4k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 31.4k | auto* self = | 96 | 31.4k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 31.4k | if (!self->init_func_(num_threads)) { | 100 | 6 | self->has_error_ = 1; | 101 | 6 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 6 | } | 103 | 31.3k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 31.4k | } |
Unexecuted instantiation: dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::Flush()::$_0, jxl::FrameDecoder::Flush()::$_1>::CallInitFunc(void*, unsigned long) dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 13.3k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 13.3k | auto* self = | 96 | 13.3k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 13.3k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 13.3k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 13.3k | } |
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 14.1k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 14.1k | auto* self = | 96 | 14.1k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 14.1k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 14.1k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 14.1k | } |
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 60.1k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 60.1k | auto* self = | 96 | 60.1k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 60.1k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 60.1k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 60.1k | } |
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>::CallInitFunc(void*, unsigned long) Line | Count | Source | 94 | 27.5k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 27.5k | auto* self = | 96 | 27.5k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 27.5k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 27.5k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 27.5k | } |
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 364 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 364 | auto* self = | 96 | 364 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 364 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 364 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 364 | } |
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 614 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 614 | auto* self = | 96 | 614 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 614 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 614 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 614 | } |
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 328 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 328 | auto* self = | 96 | 328 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 328 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 328 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 328 | } |
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 1.44k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 1.44k | auto* self = | 96 | 1.44k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 1.44k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 1.44k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 1.44k | } |
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 4.33k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 4.33k | auto* self = | 96 | 4.33k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 4.33k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 4.33k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 4.33k | } |
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 48.4k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 48.4k | auto* self = | 96 | 48.4k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 48.4k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 48.4k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 48.4k | } |
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 44.9k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 44.9k | auto* self = | 96 | 44.9k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 44.9k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 44.9k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 44.9k | } |
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long) enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long) Line | Count | Source | 94 | 3.48k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 3.48k | auto* self = | 96 | 3.48k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 3.48k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 3.48k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 3.48k | } |
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long) enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 3.48k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 3.48k | auto* self = | 96 | 3.48k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 3.48k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 3.48k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 3.48k | } |
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 3.48k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 3.48k | auto* self = | 96 | 3.48k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 3.48k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 3.48k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 3.48k | } |
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 3.48k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 3.48k | auto* self = | 96 | 3.48k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 3.48k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 3.48k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 3.48k | } |
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 14.7k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 14.7k | auto* self = | 96 | 14.7k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 14.7k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 14.7k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 14.7k | } |
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::CallInitFunc(void*, unsigned long) Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)Line | Count | Source | 94 | 13.9k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 13.9k | auto* self = | 96 | 13.9k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 13.9k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 13.9k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 13.9k | } |
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long) |
105 | | |
106 | | // JxlParallelRunFunction interface. |
107 | | static void CallDataFunc(void* jpegxl_opaque, uint32_t value, |
108 | 12.0M | size_t thread_id) { |
109 | 12.0M | auto* self = |
110 | 12.0M | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); |
111 | 12.0M | if (self->has_error_) return; |
112 | 12.0M | if (!self->data_func_(value, thread_id)) { |
113 | 27.2k | self->has_error_ = 1; |
114 | 27.2k | } |
115 | 12.0M | } Unexecuted instantiation: encode.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long) Line | Count | Source | 108 | 8.87k | size_t thread_id) { | 109 | 8.87k | auto* self = | 110 | 8.87k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 8.87k | if (self->has_error_) return; | 112 | 8.87k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 8.87k | } |
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long) Line | Count | Source | 108 | 4.93k | size_t thread_id) { | 109 | 4.93k | auto* self = | 110 | 4.93k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 4.93k | if (self->has_error_) return; | 112 | 4.93k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 4.93k | } |
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long) Line | Count | Source | 108 | 10.3k | size_t thread_id) { | 109 | 10.3k | auto* self = | 110 | 10.3k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 10.3k | if (self->has_error_) return; | 112 | 10.3k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 10.3k | } |
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long) Line | Count | Source | 108 | 26.6k | size_t thread_id) { | 109 | 26.6k | auto* self = | 110 | 26.6k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 26.6k | if (self->has_error_) return; | 112 | 26.6k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 26.6k | } |
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long) Line | Count | Source | 108 | 89.5k | size_t thread_id) { | 109 | 89.5k | auto* self = | 110 | 89.5k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 89.5k | if (self->has_error_) return; | 112 | 89.5k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 89.5k | } |
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 165k | size_t thread_id) { | 109 | 165k | auto* self = | 110 | 165k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 165k | if (self->has_error_) return; | 112 | 165k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 165k | } |
Unexecuted instantiation: enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 4.33k | size_t thread_id) { | 109 | 4.33k | auto* self = | 110 | 4.33k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 4.33k | if (self->has_error_) return; | 112 | 4.33k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 4.33k | } |
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 8.41k | size_t thread_id) { | 109 | 8.41k | auto* self = | 110 | 8.41k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 8.41k | if (self->has_error_) return; | 112 | 8.41k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 8.41k | } |
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 113k | size_t thread_id) { | 109 | 113k | auto* self = | 110 | 113k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 113k | if (self->has_error_) return; | 112 | 113k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 113k | } |
enc_patch_dictionary.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 192k | size_t thread_id) { | 109 | 192k | auto* self = | 110 | 192k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 192k | if (self->has_error_) return; | 112 | 192k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 192k | } |
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 831k | size_t thread_id) { | 109 | 831k | auto* self = | 110 | 831k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 831k | if (self->has_error_) return; | 112 | 831k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 831k | } |
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 141k | size_t thread_id) { | 109 | 141k | auto* self = | 110 | 141k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 141k | if (self->has_error_) return; | 112 | 141k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 141k | } |
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::CallDataFunc(void*, unsigned int, unsigned long) dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::CallDataFunc(void*, unsigned int, unsigned long) Line | Count | Source | 108 | 82.6k | size_t thread_id) { | 109 | 82.6k | auto* self = | 110 | 82.6k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 82.6k | if (self->has_error_) return; | 112 | 82.6k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 82.6k | } |
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7>::CallDataFunc(void*, unsigned int, unsigned long) dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 65.8k | size_t thread_id) { | 109 | 65.8k | auto* self = | 110 | 65.8k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 65.8k | if (self->has_error_) return; | 112 | 64.8k | if (!self->data_func_(value, thread_id)) { | 113 | 26.5k | self->has_error_ = 1; | 114 | 26.5k | } | 115 | 64.8k | } |
dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long) Line | Count | Source | 108 | 59.5k | size_t thread_id) { | 109 | 59.5k | auto* self = | 110 | 59.5k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 59.5k | if (self->has_error_) return; | 112 | 53.5k | if (!self->data_func_(value, thread_id)) { | 113 | 732 | self->has_error_ = 1; | 114 | 732 | } | 115 | 53.5k | } |
Unexecuted instantiation: dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::Flush()::$_0, jxl::FrameDecoder::Flush()::$_1>::CallDataFunc(void*, unsigned int, unsigned long) dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 540k | size_t thread_id) { | 109 | 540k | auto* self = | 110 | 540k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 540k | if (self->has_error_) return; | 112 | 540k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 540k | } |
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 113k | size_t thread_id) { | 109 | 113k | auto* self = | 110 | 113k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 113k | if (self->has_error_) return; | 112 | 113k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 113k | } |
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 2.70M | size_t thread_id) { | 109 | 2.70M | auto* self = | 110 | 2.70M | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 2.70M | if (self->has_error_) return; | 112 | 2.70M | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 2.70M | } |
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>::CallDataFunc(void*, unsigned int, unsigned long) Line | Count | Source | 108 | 28.1k | size_t thread_id) { | 109 | 28.1k | auto* self = | 110 | 28.1k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 28.1k | if (self->has_error_) return; | 112 | 28.1k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 28.1k | } |
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 22.0k | size_t thread_id) { | 109 | 22.0k | auto* self = | 110 | 22.0k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 22.0k | if (self->has_error_) return; | 112 | 22.0k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 22.0k | } |
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 23.6k | size_t thread_id) { | 109 | 23.6k | auto* self = | 110 | 23.6k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 23.6k | if (self->has_error_) return; | 112 | 23.6k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 23.6k | } |
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 473 | size_t thread_id) { | 109 | 473 | auto* self = | 110 | 473 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 473 | if (self->has_error_) return; | 112 | 473 | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 473 | } |
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 2.64k | size_t thread_id) { | 109 | 2.64k | auto* self = | 110 | 2.64k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 2.64k | if (self->has_error_) return; | 112 | 2.64k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 2.64k | } |
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 337k | size_t thread_id) { | 109 | 337k | auto* self = | 110 | 337k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 337k | if (self->has_error_) return; | 112 | 337k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 337k | } |
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 193k | size_t thread_id) { | 109 | 193k | auto* self = | 110 | 193k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 193k | if (self->has_error_) return; | 112 | 193k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 193k | } |
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 50.5k | size_t thread_id) { | 109 | 50.5k | auto* self = | 110 | 50.5k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 50.5k | if (self->has_error_) return; | 112 | 50.5k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 50.5k | } |
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long) enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long) Line | Count | Source | 108 | 89.5k | size_t thread_id) { | 109 | 89.5k | auto* self = | 110 | 89.5k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 89.5k | if (self->has_error_) return; | 112 | 89.5k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 89.5k | } |
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long) enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 3.48k | size_t thread_id) { | 109 | 3.48k | auto* self = | 110 | 3.48k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 3.48k | if (self->has_error_) return; | 112 | 3.48k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 3.48k | } |
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 8.87k | size_t thread_id) { | 109 | 8.87k | auto* self = | 110 | 8.87k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 8.87k | if (self->has_error_) return; | 112 | 8.87k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 8.87k | } |
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 3.48k | size_t thread_id) { | 109 | 3.48k | auto* self = | 110 | 3.48k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 3.48k | if (self->has_error_) return; | 112 | 3.48k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 3.48k | } |
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 2.73M | size_t thread_id) { | 109 | 2.73M | auto* self = | 110 | 2.73M | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 2.73M | if (self->has_error_) return; | 112 | 2.73M | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 2.73M | } |
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long) Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Line | Count | Source | 108 | 3.36M | size_t thread_id) { | 109 | 3.36M | auto* self = | 110 | 3.36M | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 3.36M | if (self->has_error_) return; | 112 | 3.36M | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 3.36M | } |
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long) |
116 | | |
117 | 404k | bool HasError() const { return has_error_ != 0; }Unexecuted instantiation: encode.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>::HasError() constUnexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>::HasError() constUnexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>::HasError() constenc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1>::HasError() const Line | Count | Source | 117 | 3.48k | bool HasError() const { return has_error_ != 0; } |
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0>::HasError() const Line | Count | Source | 117 | 4.93k | bool HasError() const { return has_error_ != 0; } |
enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3>::HasError() const Line | Count | Source | 117 | 4.93k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::HasError() constenc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::HasError() const Line | Count | Source | 117 | 10.4k | bool HasError() const { return has_error_ != 0; } |
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0>::HasError() const Line | Count | Source | 117 | 3.48k | bool HasError() const { return has_error_ != 0; } |
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::HasError() constLine | Count | Source | 117 | 2.88k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::HasError() constenc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::HasError() constLine | Count | Source | 117 | 1.44k | bool HasError() const { return has_error_ != 0; } |
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>::HasError() constLine | Count | Source | 117 | 4.93k | bool HasError() const { return has_error_ != 0; } |
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>::HasError() constLine | Count | Source | 117 | 4.93k | bool HasError() const { return has_error_ != 0; } |
enc_patch_dictionary.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::HasError() constLine | Count | Source | 117 | 3.14k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() constenc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() constLine | Count | Source | 117 | 3.48k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() constUnexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() constUnexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() constUnexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() constcompressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() constLine | Count | Source | 117 | 5.37k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::HasError() constUnexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::HasError() constUnexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::HasError() constUnexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::HasError() constUnexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::HasError() constUnexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::HasError() constUnexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::HasError() const dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::HasError() const Line | Count | Source | 117 | 1.44k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7>::HasError() const dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>::HasError() constLine | Count | Source | 117 | 59.6k | bool HasError() const { return has_error_ != 0; } |
dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2>::HasError() const Line | Count | Source | 117 | 31.3k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: dec_frame.cc:jxl::ThreadPool::RunCallState<jxl::FrameDecoder::Flush()::$_0, jxl::FrameDecoder::Flush()::$_1>::HasError() const dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>::HasError() constLine | Count | Source | 117 | 13.3k | bool HasError() const { return has_error_ != 0; } |
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>::HasError() constLine | Count | Source | 117 | 14.1k | bool HasError() const { return has_error_ != 0; } |
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>::HasError() constLine | Count | Source | 117 | 60.1k | bool HasError() const { return has_error_ != 0; } |
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>::HasError() const Line | Count | Source | 117 | 27.5k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() constUnexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() constUnexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() constUnexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() constUnexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() constUnexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() constpalette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::HasError() constLine | Count | Source | 117 | 364 | bool HasError() const { return has_error_ != 0; } |
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>::HasError() constLine | Count | Source | 117 | 614 | bool HasError() const { return has_error_ != 0; } |
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>::HasError() constLine | Count | Source | 117 | 328 | bool HasError() const { return has_error_ != 0; } |
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>::HasError() constLine | Count | Source | 117 | 1.44k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() constrct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() constLine | Count | Source | 117 | 4.33k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() constUnexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() constsqueeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() constLine | Count | Source | 117 | 48.4k | bool HasError() const { return has_error_ != 0; } |
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() constLine | Count | Source | 117 | 44.9k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() constUnexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() constUnexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() constUnexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() constUnexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const Line | Count | Source | 117 | 3.48k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1>::HasError() const enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>::HasError() constLine | Count | Source | 117 | 3.48k | bool HasError() const { return has_error_ != 0; } |
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>::HasError() constLine | Count | Source | 117 | 3.48k | bool HasError() const { return has_error_ != 0; } |
enc_cache.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>::HasError() constLine | Count | Source | 117 | 3.48k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constenc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::HasError() constLine | Count | Source | 117 | 14.7k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::HasError() const Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::HasError() constUnexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() constUnexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() constconvolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() constLine | Count | Source | 117 | 13.9k | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() constUnexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() constUnexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() constUnexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() constUnexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() constUnexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() const |
118 | | |
119 | | private: |
120 | | const InitFunc& init_func_; |
121 | | const DataFunc& data_func_; |
122 | | std::atomic<uint32_t> has_error_{0}; |
123 | | }; |
124 | | |
125 | | // The caller supplied runner function and its opaque void*. |
126 | | const JxlParallelRunner runner_; |
127 | | void* const runner_opaque_; |
128 | | }; |
129 | | |
130 | | template <class InitFunc, class DataFunc> |
131 | | Status RunOnPool(ThreadPool* pool, const uint32_t begin, const uint32_t end, |
132 | | const InitFunc& init_func, const DataFunc& data_func, |
133 | 404k | const char* caller) { |
134 | 404k | if (pool == nullptr) { |
135 | 210k | ThreadPool default_pool(nullptr, nullptr); |
136 | 210k | return default_pool.Run(begin, end, init_func, data_func, caller); |
137 | 210k | } else { |
138 | 193k | return pool->Run(begin, end, init_func, data_func, caller); |
139 | 193k | } |
140 | 404k | } Unexecuted instantiation: encode.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_0 const&, jxl::(anonymous namespace)::TokenizeAllCoefficients(jxl::FrameHeader const&, jxl::ThreadPool*, jxl::PassesEncoderState*)::$_1 const&, char const*) Line | Count | Source | 133 | 3.48k | const char* caller) { | 134 | 3.48k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 3.48k | } else { | 138 | 3.48k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 3.48k | } | 140 | 3.48k | } |
enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2 const&, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_0 const&, char const*) Line | Count | Source | 133 | 4.93k | const char* caller) { | 134 | 4.93k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 4.93k | } else { | 138 | 4.93k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 4.93k | } | 140 | 4.93k | } |
enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_2 const&, jxl::(anonymous namespace)::EncodeGroups(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::ThreadPool*, std::__1::vector<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> >, std::__1::allocator<std::__1::unique_ptr<jxl::BitWriter, std::__1::default_delete<jxl::BitWriter> > > >*, jxl::AuxOut*)::$_3 const&, char const*) Line | Count | Source | 133 | 4.93k | const char* caller) { | 134 | 4.93k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 4.93k | } else { | 138 | 4.93k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 4.93k | } | 140 | 4.93k | } |
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)enc_heuristics.cc:jxl::Status jxl::RunOnPool<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0 const&, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1 const&, char const*) Line | Count | Source | 133 | 10.4k | const char* caller) { | 134 | 10.4k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 10.4k | } else { | 138 | 10.4k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 10.4k | } | 140 | 10.4k | } |
enc_heuristics.cc:jxl::Status jxl::RunOnPool<jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_1 const&, jxl::LossyFrameHeuristics(jxl::FrameHeader const&, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::Image3<float> const*, jxl::Image3<float>*, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*)::$_0 const&, char const*) Line | Count | Source | 133 | 3.48k | const char* caller) { | 134 | 3.48k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 3.48k | } else { | 138 | 3.48k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 3.48k | } | 140 | 3.48k | } |
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)Line | Count | Source | 133 | 2.88k | const char* caller) { | 134 | 2.88k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 2.88k | } else { | 138 | 2.88k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 2.88k | } | 140 | 2.88k | } |
Unexecuted instantiation: enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)Line | Count | Source | 133 | 1.44k | const char* caller) { | 134 | 1.44k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 1.44k | } else { | 138 | 1.44k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 1.44k | } | 140 | 1.44k | } |
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)Line | Count | Source | 133 | 4.93k | const char* caller) { | 134 | 4.93k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 4.93k | } else { | 138 | 4.93k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 4.93k | } | 140 | 4.93k | } |
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)Line | Count | Source | 133 | 4.93k | const char* caller) { | 134 | 4.93k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 4.93k | } else { | 138 | 4.93k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 4.93k | } | 140 | 4.93k | } |
enc_patch_dictionary.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)Line | Count | Source | 133 | 3.14k | const char* caller) { | 134 | 3.14k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 3.14k | } else { | 138 | 3.14k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 3.14k | } | 140 | 3.14k | } |
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Line | Count | Source | 133 | 3.48k | const char* caller) { | 134 | 3.48k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 3.48k | } else { | 138 | 3.48k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 3.48k | } | 140 | 3.48k | } |
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Line | Count | Source | 133 | 5.37k | const char* caller) { | 134 | 5.37k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 5.37k | } else { | 138 | 5.37k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 5.37k | } | 140 | 5.37k | } |
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE0_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE1_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE2_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE3_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE4_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE5_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_ Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3 const&, char const*) dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5 const&, char const*) Line | Count | Source | 133 | 1.44k | const char* caller) { | 134 | 1.44k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 1.44k | } else { | 138 | 1.44k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 1.44k | } | 140 | 1.44k | } |
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_6 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_7 const&, char const*) dec_frame.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)Line | Count | Source | 133 | 59.6k | const char* caller) { | 134 | 59.6k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 59.6k | } else { | 138 | 59.6k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 59.6k | } | 140 | 59.6k | } |
dec_frame.cc:jxl::Status jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_1 const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_2 const&, char const*) Line | Count | Source | 133 | 31.4k | const char* caller) { | 134 | 31.4k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 31.4k | } else { | 138 | 31.4k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 31.4k | } | 140 | 31.4k | } |
Unexecuted instantiation: dec_frame.cc:jxl::Status jxl::RunOnPool<jxl::FrameDecoder::Flush()::$_0, jxl::FrameDecoder::Flush()::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::FrameDecoder::Flush()::$_0 const&, jxl::FrameDecoder::Flush()::$_1 const&, char const*) dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)Line | Count | Source | 133 | 13.3k | const char* caller) { | 134 | 13.3k | if (pool == nullptr) { | 135 | 13.3k | ThreadPool default_pool(nullptr, nullptr); | 136 | 13.3k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 13.3k | } else { | 138 | 0 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 0 | } | 140 | 13.3k | } |
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)Line | Count | Source | 133 | 14.1k | const char* caller) { | 134 | 14.1k | if (pool == nullptr) { | 135 | 14.1k | ThreadPool default_pool(nullptr, nullptr); | 136 | 14.1k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 14.1k | } else { | 138 | 0 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 0 | } | 140 | 14.1k | } |
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)Line | Count | Source | 133 | 60.1k | const char* caller) { | 134 | 60.1k | if (pool == nullptr) { | 135 | 60.1k | ThreadPool default_pool(nullptr, nullptr); | 136 | 60.1k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 60.1k | } else { | 138 | 0 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 0 | } | 140 | 60.1k | } |
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0 const&, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1 const&, char const*) Line | Count | Source | 133 | 27.5k | const char* caller) { | 134 | 27.5k | if (pool == nullptr) { | 135 | 26.9k | ThreadPool default_pool(nullptr, nullptr); | 136 | 26.9k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 26.9k | } else { | 138 | 528 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 528 | } | 140 | 27.5k | } |
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)palette.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)Line | Count | Source | 133 | 365 | const char* caller) { | 134 | 365 | if (pool == nullptr) { | 135 | 327 | ThreadPool default_pool(nullptr, nullptr); | 136 | 327 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 327 | } else { | 138 | 38 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 38 | } | 140 | 365 | } |
palette.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)Line | Count | Source | 133 | 614 | const char* caller) { | 134 | 614 | if (pool == nullptr) { | 135 | 606 | ThreadPool default_pool(nullptr, nullptr); | 136 | 606 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 606 | } else { | 138 | 8 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 8 | } | 140 | 614 | } |
palette.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)Line | Count | Source | 133 | 328 | const char* caller) { | 134 | 328 | if (pool == nullptr) { | 135 | 326 | ThreadPool default_pool(nullptr, nullptr); | 136 | 326 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 326 | } else { | 138 | 2 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 2 | } | 140 | 328 | } |
palette.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)Line | Count | Source | 133 | 1.44k | const char* caller) { | 134 | 1.44k | if (pool == nullptr) { | 135 | 1.44k | ThreadPool default_pool(nullptr, nullptr); | 136 | 1.44k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 1.44k | } else { | 138 | 5 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 5 | } | 140 | 1.44k | } |
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Line | Count | Source | 133 | 4.33k | const char* caller) { | 134 | 4.33k | if (pool == nullptr) { | 135 | 4.31k | ThreadPool default_pool(nullptr, nullptr); | 136 | 4.31k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 4.31k | } else { | 138 | 16 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 16 | } | 140 | 4.33k | } |
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)Line | Count | Source | 133 | 48.4k | const char* caller) { | 134 | 48.4k | if (pool == nullptr) { | 135 | 46.2k | ThreadPool default_pool(nullptr, nullptr); | 136 | 46.2k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 46.2k | } else { | 138 | 2.13k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 2.13k | } | 140 | 48.4k | } |
squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)Line | Count | Source | 133 | 44.9k | const char* caller) { | 134 | 44.9k | if (pool == nullptr) { | 135 | 42.9k | ThreadPool default_pool(nullptr, nullptr); | 136 | 42.9k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 42.9k | } else { | 138 | 2.01k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 2.01k | } | 140 | 44.9k | } |
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*) enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*) Line | Count | Source | 133 | 3.48k | const char* caller) { | 134 | 3.48k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 3.48k | } else { | 138 | 3.48k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 3.48k | } | 140 | 3.48k | } |
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_SSE2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*) Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_0 const&, jxl::(anonymous namespace)::RoundtripImage(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*)::$_1 const&, char const*) enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)Line | Count | Source | 133 | 3.48k | const char* caller) { | 134 | 3.48k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 3.48k | } else { | 138 | 3.48k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 3.48k | } | 140 | 3.48k | } |
enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)Line | Count | Source | 133 | 3.48k | const char* caller) { | 134 | 3.48k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 3.48k | } else { | 138 | 3.48k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 3.48k | } | 140 | 3.48k | } |
enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)Line | Count | Source | 133 | 3.48k | const char* caller) { | 134 | 3.48k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 3.48k | } else { | 138 | 3.48k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 3.48k | } | 140 | 3.48k | } |
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)enc_external_image.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)Line | Count | Source | 133 | 14.7k | const char* caller) { | 134 | 14.7k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 14.7k | } else { | 138 | 14.7k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 14.7k | } | 140 | 14.7k | } |
Unexecuted instantiation: enc_image_bundle.cc:jxl::Status jxl::RunOnPool<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1 const&, char const*) Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)Line | Count | Source | 133 | 13.9k | const char* caller) { | 134 | 13.9k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 13.9k | } else { | 138 | 13.9k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 13.9k | } | 140 | 13.9k | } |
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*) |
141 | | |
142 | | template <class DataFunc> |
143 | | Status RunOnPool(ThreadPool* pool, const uint32_t begin, const uint32_t end, |
144 | | const ThreadPoolNoInit& no_init_func, |
145 | 313k | const DataFunc& data_func, const char* caller) { |
146 | 313k | const auto init_func = [](size_t num_threads) -> Status { return true; };Unexecuted instantiation: encode.cc:jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_frame.cc:jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_frame.cc:jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_frame.cc:jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constenc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 2.88k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted instantiation: enc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constenc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 1.44k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
enc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 4.93k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
enc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 4.93k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
enc_patch_dictionary.cc:jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 3.14k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constenc_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 3.48k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: compressed_dc.cc:jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constcompressed_dc.cc:jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 5.37k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted instantiation: compressed_dc.cc:jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: compressed_dc.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: compressed_dc.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: compressed_dc.cc:jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constdec_frame.cc:jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 59.6k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
dec_modular.cc:jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 13.3k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
dec_modular.cc:jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 14.1k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
dec_modular.cc:jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 60.1k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constpalette.cc:jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 364 | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
palette.cc:jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 614 | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
palette.cc:jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 328 | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
palette.cc:jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 1.44k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constrct.cc:jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 4.33k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constsqueeze.cc:jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 48.4k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
squeeze.cc:jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 44.9k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constenc_cache.cc:jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 3.48k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
enc_cache.cc:jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 3.48k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
enc_cache.cc:jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 3.48k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constenc_external_image.cc:jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 14.7k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted instantiation: convolve_slow.cc:jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: convolve_slow.cc:jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constconvolve_symmetric5.cc:jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constLine | Count | Source | 146 | 13.9k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted instantiation: convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) constUnexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const |
147 | 313k | return RunOnPool(pool, begin, end, init_func, data_func, caller); |
148 | 313k | } Unexecuted instantiation: encode.cc:jxl::Status jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*) Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*) Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*) Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*) enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*) Line | Count | Source | 145 | 2.88k | const DataFunc& data_func, const char* caller) { | 146 | 2.88k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 2.88k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 2.88k | } |
Unexecuted instantiation: enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*) enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*) Line | Count | Source | 145 | 1.44k | const DataFunc& data_func, const char* caller) { | 146 | 1.44k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 1.44k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 1.44k | } |
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTree(jxl::ThreadPool*)::$_1 const&, char const*) Line | Count | Source | 145 | 4.93k | const DataFunc& data_func, const char* caller) { | 146 | 4.93k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 4.93k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 4.93k | } |
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeTokens(jxl::ThreadPool*)::$_0 const&, char const*) Line | Count | Source | 145 | 4.93k | const DataFunc& data_func, const char* caller) { | 146 | 4.93k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 4.93k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 4.93k | } |
enc_patch_dictionary.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::FindTextLikePatches(jxl::CompressParams const&, jxl::Image3<float> const&, jxl::PassesEncoderState const*, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*) Line | Count | Source | 145 | 3.14k | const DataFunc& data_func, const char* caller) { | 146 | 3.14k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 3.14k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 3.14k | } |
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*) enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*) Line | Count | Source | 145 | 3.48k | const DataFunc& data_func, const char* caller) { | 146 | 3.48k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 3.48k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 3.48k | } |
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*) Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*) Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*) Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*) compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*) Line | Count | Source | 145 | 5.37k | const DataFunc& data_func, const char* caller) { | 146 | 5.37k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 5.37k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 5.37k | } |
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)dec_frame.cc:jxl::Status jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*) Line | Count | Source | 145 | 59.6k | const DataFunc& data_func, const char* caller) { | 146 | 59.6k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 59.6k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 59.6k | } |
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_1 const&, char const*) Line | Count | Source | 145 | 13.3k | const DataFunc& data_func, const char* caller) { | 146 | 13.3k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 13.3k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 13.3k | } |
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*) Line | Count | Source | 145 | 14.1k | const DataFunc& data_func, const char* caller) { | 146 | 14.1k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 14.1k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 14.1k | } |
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_3 const&, char const*) Line | Count | Source | 145 | 60.1k | const DataFunc& data_func, const char* caller) { | 146 | 60.1k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 60.1k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 60.1k | } |
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*) Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*) Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*) Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*) Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*) Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*) palette.cc:jxl::Status jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*) Line | Count | Source | 145 | 365 | const DataFunc& data_func, const char* caller) { | 146 | 365 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 365 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 365 | } |
palette.cc:jxl::Status jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_1 const&, char const*) Line | Count | Source | 145 | 614 | const DataFunc& data_func, const char* caller) { | 146 | 614 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 614 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 614 | } |
palette.cc:jxl::Status jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_2 const&, char const*) Line | Count | Source | 145 | 328 | const DataFunc& data_func, const char* caller) { | 146 | 328 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 328 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 328 | } |
palette.cc:jxl::Status jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*) Line | Count | Source | 145 | 1.44k | const DataFunc& data_func, const char* caller) { | 146 | 1.44k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 1.44k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 1.44k | } |
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*) rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*) Line | Count | Source | 145 | 4.33k | const DataFunc& data_func, const char* caller) { | 146 | 4.33k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 4.33k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 4.33k | } |
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*) Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*) squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*) Line | Count | Source | 145 | 48.4k | const DataFunc& data_func, const char* caller) { | 146 | 48.4k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 48.4k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 48.4k | } |
squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*) Line | Count | Source | 145 | 44.9k | const DataFunc& data_func, const char* caller) { | 146 | 44.9k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 44.9k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 44.9k | } |
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*) Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*) Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*) Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*) Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*) enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*) Line | Count | Source | 145 | 3.48k | const DataFunc& data_func, const char* caller) { | 146 | 3.48k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 3.48k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 3.48k | } |
enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_0 const&, char const*) Line | Count | Source | 145 | 3.48k | const DataFunc& data_func, const char* caller) { | 146 | 3.48k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 3.48k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 3.48k | } |
enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InitializePassesEncoder(jxl::FrameHeader const&, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*, jxl::AuxOut*)::$_1 const&, char const*) Line | Count | Source | 145 | 3.48k | const DataFunc& data_func, const char* caller) { | 146 | 3.48k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 3.48k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 3.48k | } |
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)enc_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*) Line | Count | Source | 145 | 14.7k | const DataFunc& data_func, const char* caller) { | 146 | 14.7k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 14.7k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 14.7k | } |
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*) Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*) convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*) Line | Count | Source | 145 | 13.9k | const DataFunc& data_func, const char* caller) { | 146 | 13.9k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 13.9k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 13.9k | } |
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*) Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*) Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*) Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*) Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*) Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*) |
149 | | |
150 | | } // namespace jxl |
151 | | #if JXL_COMPILER_MSVC |
152 | | #pragma warning(default : 4180) |
153 | | #endif |
154 | | |
155 | | #endif // LIB_JXL_BASE_DATA_PARALLEL_H_ |