/src/libjxl/lib/jxl/base/data_parallel.h
Line | Count | Source (jump to first uncovered line) |
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 | 155k | : runner_(runner), |
33 | 155k | 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 | 206k | const DataFunc& data_func, const char* caller) { |
52 | 206k | JXL_ENSURE(begin <= end); |
53 | 206k | if (begin == end) return true; |
54 | 206k | 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 | 206k | if (!runner_) { |
58 | 140k | void* jpegxl_opaque = static_cast<void*>(&call_state); |
59 | 140k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != |
60 | 140k | JXL_PARALLEL_RET_SUCCESS) { |
61 | 0 | return JXL_FAILURE("Failed to initialize thread"); |
62 | 0 | } |
63 | 2.11M | for (uint32_t i = begin; i < end; i++) { |
64 | 1.97M | call_state.CallDataFunc(jpegxl_opaque, i, 0); |
65 | 1.97M | } |
66 | 140k | if (call_state.HasError()) { |
67 | 0 | return JXL_FAILURE("[%s] failed", caller); |
68 | 0 | } |
69 | 140k | return true; |
70 | 140k | } |
71 | 65.5k | JxlParallelRetCode ret = (*runner_)( |
72 | 65.5k | runner_opaque_, static_cast<void*>(&call_state), |
73 | 65.5k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); |
74 | | |
75 | 65.5k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { |
76 | 2.93k | return JXL_FAILURE("[%s] failed", caller); |
77 | 2.93k | } |
78 | 62.6k | return true; |
79 | 65.5k | } 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 | 186 | const DataFunc& data_func, const char* caller) { | 52 | 186 | JXL_ENSURE(begin <= end); | 53 | 186 | if (begin == end) return true; | 54 | 186 | 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 | 186 | 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 | 186 | JxlParallelRetCode ret = (*runner_)( | 72 | 186 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 186 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 186 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 186 | return true; | 79 | 186 | } |
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*)::$_1, 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*)::$_1 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 | 283 | const DataFunc& data_func, const char* caller) { | 52 | 283 | JXL_ENSURE(begin <= end); | 53 | 283 | if (begin == end) return true; | 54 | 283 | 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 | 283 | 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 | 283 | JxlParallelRetCode ret = (*runner_)( | 72 | 283 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 283 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 283 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 283 | return true; | 79 | 283 | } |
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*)::$_1, 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>(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*)::$_1 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*)::$_2 const&, char const*) Line | Count | Source | 51 | 283 | const DataFunc& data_func, const char* caller) { | 52 | 283 | JXL_ENSURE(begin <= end); | 53 | 283 | if (begin == end) return true; | 54 | 283 | 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 | 283 | 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 | 283 | JxlParallelRetCode ret = (*runner_)( | 72 | 283 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 283 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 283 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 283 | return true; | 79 | 283 | } |
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_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 | 194 | const DataFunc& data_func, const char* caller) { | 52 | 194 | JXL_ENSURE(begin <= end); | 53 | 194 | if (begin == end) return true; | 54 | 194 | 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 | 194 | 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 | 194 | JxlParallelRetCode ret = (*runner_)( | 72 | 194 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 194 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 194 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 194 | return true; | 79 | 194 | } |
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*) Line | Count | Source | 51 | 14 | const DataFunc& data_func, const char* caller) { | 52 | 14 | JXL_ENSURE(begin <= end); | 53 | 14 | if (begin == end) return true; | 54 | 14 | 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 | 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 | JxlParallelRetCode ret = (*runner_)( | 72 | 14 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 14 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 14 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 14 | return true; | 79 | 14 | } |
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 | 111 | const DataFunc& data_func, const char* caller) { | 52 | 111 | JXL_ENSURE(begin <= end); | 53 | 111 | if (begin == end) return true; | 54 | 111 | 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 | 111 | 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 | 111 | JxlParallelRetCode ret = (*runner_)( | 72 | 111 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 111 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 111 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 111 | return true; | 79 | 111 | } |
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 | 283 | const DataFunc& data_func, const char* caller) { | 52 | 283 | JXL_ENSURE(begin <= end); | 53 | 283 | if (begin == end) return true; | 54 | 283 | 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 | 283 | 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 | 283 | JxlParallelRetCode ret = (*runner_)( | 72 | 283 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 283 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 283 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 283 | return true; | 79 | 283 | } |
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 | 283 | const DataFunc& data_func, const char* caller) { | 52 | 283 | JXL_ENSURE(begin <= end); | 53 | 283 | if (begin == end) return true; | 54 | 283 | 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 | 283 | 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 | 283 | JxlParallelRetCode ret = (*runner_)( | 72 | 283 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 283 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 283 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 283 | return true; | 79 | 283 | } |
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 | 186 | const DataFunc& data_func, const char* caller) { | 52 | 186 | JXL_ENSURE(begin <= end); | 53 | 186 | if (begin == end) return true; | 54 | 171 | 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 | 171 | 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 | 171 | JxlParallelRetCode ret = (*runner_)( | 72 | 171 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 171 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 171 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 171 | return true; | 79 | 171 | } |
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_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*) 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_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) 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 | 186 | const DataFunc& data_func, const char* caller) { | 52 | 186 | JXL_ENSURE(begin <= end); | 53 | 186 | if (begin == end) return true; | 54 | 186 | 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 | 186 | 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 | 186 | JxlParallelRetCode ret = (*runner_)( | 72 | 186 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 186 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 186 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 186 | return true; | 79 | 186 | } |
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_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_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*) 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 | 833 | const DataFunc& data_func, const char* caller) { | 52 | 833 | JXL_ENSURE(begin <= end); | 53 | 833 | if (begin == end) return true; | 54 | 833 | 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 | 833 | 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 | 833 | JxlParallelRetCode ret = (*runner_)( | 72 | 833 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 833 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 833 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 833 | return true; | 79 | 833 | } |
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 | 558 | const DataFunc& data_func, const char* caller) { | 52 | 558 | JXL_ENSURE(begin <= end); | 53 | 558 | if (begin == end) return true; | 54 | 558 | 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 | 558 | 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 | 558 | JxlParallelRetCode ret = (*runner_)( | 72 | 558 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 558 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 558 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 558 | return true; | 79 | 558 | } |
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 | 186 | const DataFunc& data_func, const char* caller) { | 52 | 186 | JXL_ENSURE(begin <= end); | 53 | 186 | if (begin == end) return true; | 54 | 186 | 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 | 186 | 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 | 186 | JxlParallelRetCode ret = (*runner_)( | 72 | 186 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 186 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 186 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 186 | return true; | 79 | 186 | } |
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 | 186 | const DataFunc& data_func, const char* caller) { | 52 | 186 | JXL_ENSURE(begin <= end); | 53 | 186 | if (begin == end) return true; | 54 | 186 | 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 | 186 | 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 | 186 | JxlParallelRetCode ret = (*runner_)( | 72 | 186 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 186 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 186 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 186 | return true; | 79 | 186 | } |
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 | 186 | const DataFunc& data_func, const char* caller) { | 52 | 186 | JXL_ENSURE(begin <= end); | 53 | 186 | if (begin == end) return true; | 54 | 186 | 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 | 186 | 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 | 186 | JxlParallelRetCode ret = (*runner_)( | 72 | 186 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 186 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 186 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 186 | return true; | 79 | 186 | } |
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 | 186 | const DataFunc& data_func, const char* caller) { | 52 | 186 | JXL_ENSURE(begin <= end); | 53 | 186 | if (begin == end) return true; | 54 | 186 | 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 | 186 | 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 | 186 | JxlParallelRetCode ret = (*runner_)( | 72 | 186 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 186 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 186 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 186 | return true; | 79 | 186 | } |
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 | 186 | const DataFunc& data_func, const char* caller) { | 52 | 186 | JXL_ENSURE(begin <= end); | 53 | 186 | if (begin == end) return true; | 54 | 186 | 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 | 186 | 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 | 186 | JxlParallelRetCode ret = (*runner_)( | 72 | 186 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 186 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 186 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 186 | return true; | 79 | 186 | } |
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 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 | 868 | const DataFunc& data_func, const char* caller) { | 52 | 868 | JXL_ENSURE(begin <= end); | 53 | 868 | if (begin == end) return true; | 54 | 868 | 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 | 868 | 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 | 868 | JxlParallelRetCode ret = (*runner_)( | 72 | 868 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 868 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 868 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 868 | return true; | 79 | 868 | } |
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: 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 | 744 | const DataFunc& data_func, const char* caller) { | 52 | 744 | JXL_ENSURE(begin <= end); | 53 | 744 | if (begin == end) return true; | 54 | 744 | 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 | 744 | 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 | 744 | JxlParallelRetCode ret = (*runner_)( | 72 | 744 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 744 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 744 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 744 | return true; | 79 | 744 | } |
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: 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 | 97 | const DataFunc& data_func, const char* caller) { | 52 | 97 | JXL_ENSURE(begin <= end); | 53 | 97 | if (begin == end) return true; | 54 | 97 | 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 | 97 | 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 | 97 | JxlParallelRetCode ret = (*runner_)( | 72 | 97 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 97 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 97 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 97 | return true; | 79 | 97 | } |
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 | 24.4k | const DataFunc& data_func, const char* caller) { | 52 | 24.4k | JXL_ENSURE(begin <= end); | 53 | 24.4k | if (begin == end) return true; | 54 | 24.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 | 24.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 | 24.4k | JxlParallelRetCode ret = (*runner_)( | 72 | 24.4k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 24.4k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 24.4k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 2.65k | return JXL_FAILURE("[%s] failed", caller); | 77 | 2.65k | } | 78 | 21.8k | return true; | 79 | 24.4k | } |
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 | 21.3k | const DataFunc& data_func, const char* caller) { | 52 | 21.3k | JXL_ENSURE(begin <= end); | 53 | 21.3k | if (begin == end) return true; | 54 | 21.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 | 21.3k | 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 | 21.3k | JxlParallelRetCode ret = (*runner_)( | 72 | 21.3k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 21.3k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 21.3k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 280 | return JXL_FAILURE("[%s] failed", caller); | 77 | 280 | } | 78 | 21.1k | return true; | 79 | 21.3k | } |
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 | 15.7k | const DataFunc& data_func, const char* caller) { | 52 | 15.7k | JXL_ENSURE(begin <= end); | 53 | 15.7k | if (begin == end) return true; | 54 | 15.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 | 15.7k | if (!runner_) { | 58 | 15.7k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 15.7k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 15.7k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 502k | for (uint32_t i = begin; i < end; i++) { | 64 | 486k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 486k | } | 66 | 15.7k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 15.7k | return true; | 70 | 15.7k | } | 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 | 3.15k | const DataFunc& data_func, const char* caller) { | 52 | 3.15k | JXL_ENSURE(begin <= end); | 53 | 3.15k | if (begin == end) return true; | 54 | 3.15k | 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.15k | if (!runner_) { | 58 | 3.15k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 3.15k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 3.15k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 22.7k | for (uint32_t i = begin; i < end; i++) { | 64 | 19.5k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 19.5k | } | 66 | 3.15k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 3.15k | return true; | 70 | 3.15k | } | 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 | 42.0k | const DataFunc& data_func, const char* caller) { | 52 | 42.0k | JXL_ENSURE(begin <= end); | 53 | 42.0k | if (begin == end) return true; | 54 | 42.0k | 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 | 42.0k | if (!runner_) { | 58 | 42.0k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 42.0k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 42.0k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 1.30M | for (uint32_t i = begin; i < end; i++) { | 64 | 1.25M | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 1.25M | } | 66 | 42.0k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 42.0k | return true; | 70 | 42.0k | } | 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 | 19.4k | const DataFunc& data_func, const char* caller) { | 52 | 19.4k | JXL_ENSURE(begin <= end); | 53 | 19.4k | if (begin == end) return true; | 54 | 19.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 | 19.4k | if (!runner_) { | 58 | 18.9k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 18.9k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 18.9k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 38.3k | for (uint32_t i = begin; i < end; i++) { | 64 | 19.3k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 19.3k | } | 66 | 18.9k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 18.9k | return true; | 70 | 18.9k | } | 71 | 433 | JxlParallelRetCode ret = (*runner_)( | 72 | 433 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 433 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 433 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 433 | return true; | 79 | 433 | } |
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_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*) 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 | 37.8k | const DataFunc& data_func, const char* caller) { | 52 | 37.8k | JXL_ENSURE(begin <= end); | 53 | 37.8k | if (begin == end) return true; | 54 | 37.8k | 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 | 37.8k | if (!runner_) { | 58 | 30.6k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 30.6k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 30.6k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 140k | for (uint32_t i = begin; i < end; i++) { | 64 | 110k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 110k | } | 66 | 30.6k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 30.6k | return true; | 70 | 30.6k | } | 71 | 7.24k | JxlParallelRetCode ret = (*runner_)( | 72 | 7.24k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 7.24k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 7.24k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 7.24k | return true; | 79 | 7.24k | } |
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 | 32.9k | const DataFunc& data_func, const char* caller) { | 52 | 32.9k | JXL_ENSURE(begin <= end); | 53 | 32.9k | if (begin == end) return true; | 54 | 32.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 | 32.9k | 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 | 57.2k | for (uint32_t i = begin; i < end; i++) { | 64 | 30.2k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 30.2k | } | 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 | 5.97k | JxlParallelRetCode ret = (*runner_)( | 72 | 5.97k | runner_opaque_, static_cast<void*>(&call_state), | 73 | 5.97k | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 5.97k | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 5.97k | return true; | 79 | 5.97k | } |
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: 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 | 1.53k | const DataFunc& data_func, const char* caller) { | 52 | 1.53k | JXL_ENSURE(begin <= end); | 53 | 1.53k | if (begin == end) return true; | 54 | 1.53k | 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.53k | if (!runner_) { | 58 | 1.51k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 1.51k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 1.51k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 46.3k | for (uint32_t i = begin; i < end; i++) { | 64 | 44.8k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 44.8k | } | 66 | 1.51k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 1.51k | return true; | 70 | 1.51k | } | 71 | 15 | JxlParallelRetCode ret = (*runner_)( | 72 | 15 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 15 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 15 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 15 | return true; | 79 | 15 | } |
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*) 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 | 103 | const DataFunc& data_func, const char* caller) { | 52 | 103 | JXL_ENSURE(begin <= end); | 53 | 103 | if (begin == end) return true; | 54 | 103 | 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 | 103 | if (!runner_) { | 58 | 103 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 103 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 103 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 2.06k | for (uint32_t i = begin; i < end; i++) { | 64 | 1.96k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 1.96k | } | 66 | 103 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 103 | return true; | 70 | 103 | } | 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 | } |
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 | 88 | const DataFunc& data_func, const char* caller) { | 52 | 88 | JXL_ENSURE(begin <= end); | 53 | 88 | if (begin == end) return true; | 54 | 88 | 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 | 88 | if (!runner_) { | 58 | 88 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 88 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 88 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 2.62k | for (uint32_t i = begin; i < end; i++) { | 64 | 2.53k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 2.53k | } | 66 | 88 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 88 | return true; | 70 | 88 | } | 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 | } |
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 | 235 | const DataFunc& data_func, const char* caller) { | 52 | 235 | JXL_ENSURE(begin <= end); | 53 | 235 | if (begin == end) return true; | 54 | 235 | 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 | 235 | if (!runner_) { | 58 | 235 | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 235 | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 235 | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 699 | for (uint32_t i = begin; i < end; i++) { | 64 | 464 | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 464 | } | 66 | 235 | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 235 | return true; | 70 | 235 | } | 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 | } |
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.53k | const DataFunc& data_func, const char* caller) { | 52 | 1.53k | JXL_ENSURE(begin <= end); | 53 | 1.53k | if (begin == end) return true; | 54 | 1.53k | 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.53k | if (!runner_) { | 58 | 1.52k | void* jpegxl_opaque = static_cast<void*>(&call_state); | 59 | 1.52k | if (call_state.CallInitFunc(jpegxl_opaque, 1) != | 60 | 1.52k | JXL_PARALLEL_RET_SUCCESS) { | 61 | 0 | return JXL_FAILURE("Failed to initialize thread"); | 62 | 0 | } | 63 | 4.42k | for (uint32_t i = begin; i < end; i++) { | 64 | 2.89k | call_state.CallDataFunc(jpegxl_opaque, i, 0); | 65 | 2.89k | } | 66 | 1.52k | if (call_state.HasError()) { | 67 | 0 | return JXL_FAILURE("[%s] failed", caller); | 68 | 0 | } | 69 | 1.52k | return true; | 70 | 1.52k | } | 71 | 9 | JxlParallelRetCode ret = (*runner_)( | 72 | 9 | runner_opaque_, static_cast<void*>(&call_state), | 73 | 9 | &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end); | 74 | | | 75 | 9 | if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) { | 76 | 0 | return JXL_FAILURE("[%s] failed", caller); | 77 | 0 | } | 78 | 9 | return true; | 79 | 9 | } |
|
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 | 206k | : 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 | 186 | : 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*)::$_1, 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*)::$_1 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 | 283 | : 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*)::$_1, 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>::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*)::$_1 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*)::$_2 const&) Line | Count | Source | 91 | 283 | : 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_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 | 194 | : 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)::$_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&) Line | Count | Source | 91 | 14 | : 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)::$_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 | 111 | : 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 | 283 | : 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 | 283 | : 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 | 171 | : init_func_(init_func), data_func_(data_func) {} |
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_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&) 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_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&) 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 | 186 | : 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_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_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&) 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 | 833 | : init_func_(init_func), data_func_(data_func) {} |
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 | 558 | : 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 | 186 | : init_func_(init_func), data_func_(data_func) {} |
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 | 186 | : 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 | 186 | : 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 | 186 | : 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 | 186 | : init_func_(init_func), data_func_(data_func) {} |
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 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 | 868 | : init_func_(init_func), data_func_(data_func) {} |
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: 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 | 744 | : init_func_(init_func), data_func_(data_func) {} |
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: 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 | 97 | : 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 | 24.4k | : 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 | 21.3k | : 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 | 15.7k | : 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 | 3.15k | : 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 | 42.0k | : 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 | 19.4k | : 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_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&) 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 | 37.8k | : 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 | 32.9k | : init_func_(init_func), data_func_(data_func) {} |
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: 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 | 1.53k | : init_func_(init_func), data_func_(data_func) {} |
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&) 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 | 103 | : 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 | 88 | : 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 | 235 | : 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.53k | : init_func_(init_func), data_func_(data_func) {} |
|
92 | | |
93 | | // JxlParallelRunInit interface. |
94 | 206k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { |
95 | 206k | auto* self = |
96 | 206k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); |
97 | | // Returns -1 when the internal init function returns false Status to |
98 | | // indicate an error. |
99 | 206k | if (!self->init_func_(num_threads)) { |
100 | 3 | self->has_error_ = 1; |
101 | 3 | return JXL_PARALLEL_RET_RUNNER_ERROR; |
102 | 3 | } |
103 | 206k | return JXL_PARALLEL_RET_SUCCESS; |
104 | 206k | } 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 | 186 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 186 | auto* self = | 96 | 186 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 186 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 186 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 186 | } |
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*)::$_1, 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 | 283 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 283 | auto* self = | 96 | 283 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 283 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 283 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 283 | } |
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*)::$_1, 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>::CallInitFunc(void*, unsigned long) Line | Count | Source | 94 | 283 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 283 | auto* self = | 96 | 283 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 283 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 283 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 283 | } |
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_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 | 194 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 194 | auto* self = | 96 | 194 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 194 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 194 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 194 | } |
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) Line | Count | Source | 94 | 14 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 14 | auto* self = | 96 | 14 | 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 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 14 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 14 | } |
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 | 111 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 111 | auto* self = | 96 | 111 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 111 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 111 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 111 | } |
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 | 283 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 283 | auto* self = | 96 | 283 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 283 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 283 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 283 | } |
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 | 283 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 283 | auto* self = | 96 | 283 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 283 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 283 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 283 | } |
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 | 171 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 171 | auto* self = | 96 | 171 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 171 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 171 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 171 | } |
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_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) 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_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) 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 | 186 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 186 | auto* self = | 96 | 186 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 186 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 186 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 186 | } |
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_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_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) 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 | 833 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 833 | auto* self = | 96 | 833 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 833 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 833 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 833 | } |
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 | 558 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 558 | auto* self = | 96 | 558 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 558 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 558 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 558 | } |
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 | 186 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 186 | auto* self = | 96 | 186 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 186 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 186 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 186 | } |
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 | 186 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 186 | auto* self = | 96 | 186 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 186 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 186 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 186 | } |
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 | 186 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 186 | auto* self = | 96 | 186 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 186 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 186 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 186 | } |
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 | 186 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 186 | auto* self = | 96 | 186 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 186 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 186 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 186 | } |
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 | 186 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 186 | auto* self = | 96 | 186 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 186 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 186 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 186 | } |
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::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 | 868 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 868 | auto* self = | 96 | 868 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 868 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 868 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 868 | } |
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: 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 | 744 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 744 | auto* self = | 96 | 744 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 744 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 744 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 744 | } |
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: 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 | 97 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 97 | auto* self = | 96 | 97 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 97 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 97 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 97 | } |
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 | 24.4k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 24.4k | auto* self = | 96 | 24.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 | 24.4k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 24.4k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 24.4k | } |
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 | 21.3k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 21.3k | auto* self = | 96 | 21.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 | 21.3k | if (!self->init_func_(num_threads)) { | 100 | 3 | self->has_error_ = 1; | 101 | 3 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 3 | } | 103 | 21.3k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 21.3k | } |
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 | 15.7k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 15.7k | auto* self = | 96 | 15.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 | 15.7k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 15.7k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 15.7k | } |
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 | 3.15k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 3.15k | auto* self = | 96 | 3.15k | 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.15k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 3.15k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 3.15k | } |
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 | 42.0k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 42.0k | auto* self = | 96 | 42.0k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 42.0k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 42.0k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 42.0k | } |
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 | 19.4k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 19.4k | auto* self = | 96 | 19.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 | 19.4k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 19.4k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 19.4k | } |
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_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) 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 | 37.8k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 37.8k | auto* self = | 96 | 37.8k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 37.8k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 37.8k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 37.8k | } |
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 | 32.9k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 32.9k | auto* self = | 96 | 32.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 | 32.9k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 32.9k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 32.9k | } |
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: 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 | 1.53k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 1.53k | auto* self = | 96 | 1.53k | 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.53k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 1.53k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 1.53k | } |
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) 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 | 103 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 103 | auto* self = | 96 | 103 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 103 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 103 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 103 | } |
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 | 88 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 88 | auto* self = | 96 | 88 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 88 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 88 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 88 | } |
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 | 235 | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 235 | auto* self = | 96 | 235 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 97 | | // Returns -1 when the internal init function returns false Status to | 98 | | // indicate an error. | 99 | 235 | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 235 | return JXL_PARALLEL_RET_SUCCESS; | 104 | 235 | } |
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.53k | static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) { | 95 | 1.53k | auto* self = | 96 | 1.53k | 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.53k | if (!self->init_func_(num_threads)) { | 100 | 0 | self->has_error_ = 1; | 101 | 0 | return JXL_PARALLEL_RET_RUNNER_ERROR; | 102 | 0 | } | 103 | 1.53k | return JXL_PARALLEL_RET_SUCCESS; | 104 | 1.53k | } |
|
105 | | |
106 | | // JxlParallelRunFunction interface. |
107 | | static void CallDataFunc(void* jpegxl_opaque, uint32_t value, |
108 | 2.63M | size_t thread_id) { |
109 | 2.63M | auto* self = |
110 | 2.63M | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); |
111 | 2.63M | if (self->has_error_) return; |
112 | 2.63M | if (!self->data_func_(value, thread_id)) { |
113 | 2.92k | self->has_error_ = 1; |
114 | 2.92k | } |
115 | 2.63M | } 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 | 595 | size_t thread_id) { | 109 | 595 | auto* self = | 110 | 595 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 595 | if (self->has_error_) return; | 112 | 595 | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 595 | } |
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*)::$_1, 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 | 283 | size_t thread_id) { | 109 | 283 | auto* self = | 110 | 283 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 283 | if (self->has_error_) return; | 112 | 283 | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 283 | } |
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*)::$_1, 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>::CallDataFunc(void*, unsigned int, unsigned long) Line | Count | Source | 108 | 692 | size_t thread_id) { | 109 | 692 | auto* self = | 110 | 692 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 692 | if (self->has_error_) return; | 112 | 692 | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 692 | } |
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_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 | 12.3k | size_t thread_id) { | 109 | 12.3k | auto* self = | 110 | 12.3k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 12.3k | if (self->has_error_) return; | 112 | 12.3k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 12.3k | } |
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) Line | Count | Source | 108 | 356 | size_t thread_id) { | 109 | 356 | auto* self = | 110 | 356 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 356 | if (self->has_error_) return; | 112 | 356 | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 356 | } |
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 | 333 | size_t thread_id) { | 109 | 333 | auto* self = | 110 | 333 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 333 | if (self->has_error_) return; | 112 | 333 | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 333 | } |
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 | 483 | size_t thread_id) { | 109 | 483 | auto* self = | 110 | 483 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 483 | if (self->has_error_) return; | 112 | 483 | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 483 | } |
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 | 6.63k | size_t thread_id) { | 109 | 6.63k | auto* self = | 110 | 6.63k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 6.63k | if (self->has_error_) return; | 112 | 6.63k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 6.63k | } |
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 | 14.4k | size_t thread_id) { | 109 | 14.4k | auto* self = | 110 | 14.4k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 14.4k | if (self->has_error_) return; | 112 | 14.4k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 14.4k | } |
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_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) 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_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) 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 | 58.2k | size_t thread_id) { | 109 | 58.2k | auto* self = | 110 | 58.2k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 58.2k | if (self->has_error_) return; | 112 | 58.2k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 58.2k | } |
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_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_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) 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 | 191k | size_t thread_id) { | 109 | 191k | auto* self = | 110 | 191k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 191k | if (self->has_error_) return; | 112 | 191k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 191k | } |
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 | 1.78k | size_t thread_id) { | 109 | 1.78k | auto* self = | 110 | 1.78k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 1.78k | if (self->has_error_) return; | 112 | 1.78k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 1.78k | } |
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 | 7.22k | size_t thread_id) { | 109 | 7.22k | auto* self = | 110 | 7.22k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 7.22k | if (self->has_error_) return; | 112 | 7.22k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 7.22k | } |
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 | 7.22k | size_t thread_id) { | 109 | 7.22k | auto* self = | 110 | 7.22k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 7.22k | if (self->has_error_) return; | 112 | 7.22k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 7.22k | } |
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 | 186 | size_t thread_id) { | 109 | 186 | auto* self = | 110 | 186 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 186 | if (self->has_error_) return; | 112 | 186 | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 186 | } |
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 | 595 | size_t thread_id) { | 109 | 595 | auto* self = | 110 | 595 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 595 | if (self->has_error_) return; | 112 | 595 | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 595 | } |
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 | 186 | size_t thread_id) { | 109 | 186 | auto* self = | 110 | 186 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 186 | if (self->has_error_) return; | 112 | 186 | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 186 | } |
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::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 | 17.3k | size_t thread_id) { | 109 | 17.3k | auto* self = | 110 | 17.3k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 17.3k | if (self->has_error_) return; | 112 | 17.3k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 17.3k | } |
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: 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 | 234k | size_t thread_id) { | 109 | 234k | auto* self = | 110 | 234k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 234k | if (self->has_error_) return; | 112 | 234k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 234k | } |
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: 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 | 6.16k | size_t thread_id) { | 109 | 6.16k | auto* self = | 110 | 6.16k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 6.16k | if (self->has_error_) return; | 112 | 6.16k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 6.16k | } |
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 | 25.9k | size_t thread_id) { | 109 | 25.9k | auto* self = | 110 | 25.9k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 25.9k | if (self->has_error_) return; | 112 | 25.4k | if (!self->data_func_(value, thread_id)) { | 113 | 2.65k | self->has_error_ = 1; | 114 | 2.65k | } | 115 | 25.4k | } |
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 | 27.2k | size_t thread_id) { | 109 | 27.2k | auto* self = | 110 | 27.2k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 27.2k | if (self->has_error_) return; | 112 | 26.1k | if (!self->data_func_(value, thread_id)) { | 113 | 277 | self->has_error_ = 1; | 114 | 277 | } | 115 | 26.1k | } |
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 | 486k | size_t thread_id) { | 109 | 486k | auto* self = | 110 | 486k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 486k | if (self->has_error_) return; | 112 | 486k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 486k | } |
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 | 19.5k | size_t thread_id) { | 109 | 19.5k | auto* self = | 110 | 19.5k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 19.5k | if (self->has_error_) return; | 112 | 19.5k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 19.5k | } |
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 | 1.25M | size_t thread_id) { | 109 | 1.25M | auto* self = | 110 | 1.25M | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 1.25M | if (self->has_error_) return; | 112 | 1.25M | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 1.25M | } |
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 | 20.1k | size_t thread_id) { | 109 | 20.1k | auto* self = | 110 | 20.1k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 20.1k | if (self->has_error_) return; | 112 | 20.1k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 20.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_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) 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 | 145k | size_t thread_id) { | 109 | 145k | auto* self = | 110 | 145k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 145k | if (self->has_error_) return; | 112 | 145k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 145k | } |
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 | 37.5k | size_t thread_id) { | 109 | 37.5k | auto* self = | 110 | 37.5k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 37.5k | if (self->has_error_) return; | 112 | 37.5k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 37.5k | } |
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: 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 | 46.7k | size_t thread_id) { | 109 | 46.7k | auto* self = | 110 | 46.7k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 46.7k | if (self->has_error_) return; | 112 | 46.7k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 46.7k | } |
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) 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 | 1.96k | size_t thread_id) { | 109 | 1.96k | auto* self = | 110 | 1.96k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 1.96k | if (self->has_error_) return; | 112 | 1.96k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 1.96k | } |
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 | 2.53k | size_t thread_id) { | 109 | 2.53k | auto* self = | 110 | 2.53k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 2.53k | if (self->has_error_) return; | 112 | 2.53k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 2.53k | } |
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 | 464 | size_t thread_id) { | 109 | 464 | auto* self = | 110 | 464 | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 464 | if (self->has_error_) return; | 112 | 464 | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 464 | } |
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.90k | size_t thread_id) { | 109 | 2.90k | auto* self = | 110 | 2.90k | static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque); | 111 | 2.90k | if (self->has_error_) return; | 112 | 2.90k | if (!self->data_func_(value, thread_id)) { | 113 | 0 | self->has_error_ = 1; | 114 | 0 | } | 115 | 2.90k | } |
|
116 | | |
117 | 206k | 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() 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>::HasError() 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>::HasError() 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>::HasError() const Line | Count | Source | 117 | 186 | 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*)::$_1, 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 | 283 | 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*)::$_1, 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>::HasError() const Line | Count | Source | 117 | 283 | 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() 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)::$_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() const Line | Count | Source | 117 | 194 | 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)::$_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() const Line | Count | Source | 117 | 14 | 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)::$_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() const Line | Count | Source | 117 | 111 | 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() const Line | Count | Source | 117 | 283 | 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() const Line | Count | Source | 117 | 283 | 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() const Line | Count | Source | 117 | 171 | bool HasError() const { return has_error_ != 0; } |
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>::HasError() 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>::HasError() 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>::HasError() const 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() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() const 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() 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>::HasError() 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>::HasError() 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>::HasError() 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>::HasError() 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>::HasError() const Line | Count | Source | 117 | 186 | 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() 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>::HasError() 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>::HasError() 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>::HasError() 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>::HasError() 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>::HasError() const 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 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>::HasError() const Line | Count | Source | 117 | 833 | bool HasError() const { return has_error_ != 0; } |
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>::HasError() const Line | Count | Source | 117 | 558 | 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 | 186 | bool HasError() const { return has_error_ != 0; } |
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 | 186 | 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() const Line | Count | Source | 117 | 186 | 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() const Line | Count | Source | 117 | 186 | 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() const Line | Count | Source | 117 | 186 | bool HasError() const { return has_error_ != 0; } |
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() 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>::HasError() 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>::HasError() const Line | Count | Source | 117 | 868 | bool HasError() const { return has_error_ != 0; } |
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>::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() 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}>::HasError() 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>::HasError() 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>::HasError() const Line | Count | Source | 117 | 744 | bool HasError() const { return has_error_ != 0; } |
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>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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}>::HasError() 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>::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 | 97 | 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() const Line | Count | Source | 117 | 24.4k | 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 | 21.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() const Line | Count | Source | 117 | 15.7k | 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() const Line | Count | Source | 117 | 3.15k | 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() const Line | Count | Source | 117 | 42.0k | 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 | 19.4k | 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() 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>::HasError() 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>::HasError() 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>::HasError() 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>::HasError() 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>::HasError() const Line | Count | Source | 117 | 37.8k | 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() const Line | Count | Source | 117 | 32.9k | bool HasError() const { return has_error_ != 0; } |
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>::HasError() 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>::HasError() const 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() 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>::HasError() const Line | Count | Source | 117 | 1.53k | bool HasError() const { return has_error_ != 0; } |
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>::HasError() 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>::HasError() const Line | Count | Source | 117 | 103 | 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() const Line | Count | Source | 117 | 88 | 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() const Line | Count | Source | 117 | 235 | 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() const Line | Count | Source | 117 | 1.53k | bool HasError() const { return has_error_ != 0; } |
|
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 | 206k | const char* caller) { |
134 | 206k | if (pool == nullptr) { |
135 | 140k | ThreadPool default_pool(nullptr, nullptr); |
136 | 140k | return default_pool.Run(begin, end, init_func, data_func, caller); |
137 | 140k | } else { |
138 | 65.5k | return pool->Run(begin, end, init_func, data_func, caller); |
139 | 65.5k | } |
140 | 206k | } 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 | 186 | const char* caller) { | 134 | 186 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 186 | } else { | 138 | 186 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 186 | } | 140 | 186 | } |
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*)::$_1, 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*)::$_1 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 | 283 | const char* caller) { | 134 | 283 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 283 | } else { | 138 | 283 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 283 | } | 140 | 283 | } |
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*)::$_1, 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::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*)::$_1 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*)::$_2 const&, char const*) Line | Count | Source | 133 | 283 | const char* caller) { | 134 | 283 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 283 | } else { | 138 | 283 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 283 | } | 140 | 283 | } |
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_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 | 194 | const char* caller) { | 134 | 194 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 194 | } else { | 138 | 194 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 194 | } | 140 | 194 | } |
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*) Line | Count | Source | 133 | 14 | const char* caller) { | 134 | 14 | 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 | } else { | 138 | 14 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 14 | } | 140 | 14 | } |
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 | 111 | const char* caller) { | 134 | 111 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 111 | } else { | 138 | 111 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 111 | } | 140 | 111 | } |
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 | 283 | const char* caller) { | 134 | 283 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 283 | } else { | 138 | 283 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 283 | } | 140 | 283 | } |
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 | 283 | const char* caller) { | 134 | 283 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 283 | } else { | 138 | 283 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 283 | } | 140 | 283 | } |
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 | 186 | const char* caller) { | 134 | 186 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 186 | } else { | 138 | 186 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 186 | } | 140 | 186 | } |
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_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*) 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_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) 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 | 186 | const char* caller) { | 134 | 186 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 186 | } else { | 138 | 186 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 186 | } | 140 | 186 | } |
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_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_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*) 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 | 833 | const char* caller) { | 134 | 833 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 833 | } else { | 138 | 833 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 833 | } | 140 | 833 | } |
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 | 558 | const char* caller) { | 134 | 558 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 558 | } else { | 138 | 558 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 558 | } | 140 | 558 | } |
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 | 186 | const char* caller) { | 134 | 186 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 186 | } else { | 138 | 186 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 186 | } | 140 | 186 | } |
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 | 186 | const char* caller) { | 134 | 186 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 186 | } else { | 138 | 186 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 186 | } | 140 | 186 | } |
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 | 186 | const char* caller) { | 134 | 186 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 186 | } else { | 138 | 186 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 186 | } | 140 | 186 | } |
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 | 186 | const char* caller) { | 134 | 186 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 186 | } else { | 138 | 186 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 186 | } | 140 | 186 | } |
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 | 186 | const char* caller) { | 134 | 186 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 186 | } else { | 138 | 186 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 186 | } | 140 | 186 | } |
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 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 | 868 | const char* caller) { | 134 | 868 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 868 | } else { | 138 | 868 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 868 | } | 140 | 868 | } |
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: 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 | 744 | const char* caller) { | 134 | 744 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 744 | } else { | 138 | 744 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 744 | } | 140 | 744 | } |
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: 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 | 97 | const char* caller) { | 134 | 97 | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 97 | } else { | 138 | 97 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 97 | } | 140 | 97 | } |
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 | 24.4k | const char* caller) { | 134 | 24.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 | 24.4k | } else { | 138 | 24.4k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 24.4k | } | 140 | 24.4k | } |
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 | 21.3k | const char* caller) { | 134 | 21.3k | if (pool == nullptr) { | 135 | 0 | ThreadPool default_pool(nullptr, nullptr); | 136 | 0 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 21.3k | } else { | 138 | 21.3k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 21.3k | } | 140 | 21.3k | } |
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 | 15.7k | const char* caller) { | 134 | 15.7k | if (pool == nullptr) { | 135 | 15.7k | ThreadPool default_pool(nullptr, nullptr); | 136 | 15.7k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 15.7k | } else { | 138 | 0 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 0 | } | 140 | 15.7k | } |
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 | 3.15k | const char* caller) { | 134 | 3.15k | if (pool == nullptr) { | 135 | 3.15k | ThreadPool default_pool(nullptr, nullptr); | 136 | 3.15k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 3.15k | } else { | 138 | 0 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 0 | } | 140 | 3.15k | } |
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 | 42.0k | const char* caller) { | 134 | 42.0k | if (pool == nullptr) { | 135 | 42.0k | ThreadPool default_pool(nullptr, nullptr); | 136 | 42.0k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 42.0k | } else { | 138 | 0 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 0 | } | 140 | 42.0k | } |
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 | 19.4k | const char* caller) { | 134 | 19.4k | if (pool == nullptr) { | 135 | 18.9k | ThreadPool default_pool(nullptr, nullptr); | 136 | 18.9k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 18.9k | } else { | 138 | 433 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 433 | } | 140 | 19.4k | } |
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_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*) 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 | 37.8k | const char* caller) { | 134 | 37.8k | if (pool == nullptr) { | 135 | 30.6k | ThreadPool default_pool(nullptr, nullptr); | 136 | 30.6k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 30.6k | } else { | 138 | 7.24k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 7.24k | } | 140 | 37.8k | } |
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 | 32.9k | const char* caller) { | 134 | 32.9k | 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 | 5.97k | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 5.97k | } | 140 | 32.9k | } |
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: 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 | 1.53k | const char* caller) { | 134 | 1.53k | if (pool == nullptr) { | 135 | 1.51k | ThreadPool default_pool(nullptr, nullptr); | 136 | 1.51k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 1.51k | } else { | 138 | 15 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 15 | } | 140 | 1.53k | } |
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*) 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 | 103 | const char* caller) { | 134 | 103 | if (pool == nullptr) { | 135 | 103 | ThreadPool default_pool(nullptr, nullptr); | 136 | 103 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 103 | } else { | 138 | 0 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 0 | } | 140 | 103 | } |
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 | 88 | const char* caller) { | 134 | 88 | if (pool == nullptr) { | 135 | 88 | ThreadPool default_pool(nullptr, nullptr); | 136 | 88 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 88 | } else { | 138 | 0 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 0 | } | 140 | 88 | } |
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 | 235 | const char* caller) { | 134 | 235 | if (pool == nullptr) { | 135 | 235 | ThreadPool default_pool(nullptr, nullptr); | 136 | 235 | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 235 | } else { | 138 | 0 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 0 | } | 140 | 235 | } |
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.53k | const char* caller) { | 134 | 1.53k | if (pool == nullptr) { | 135 | 1.52k | ThreadPool default_pool(nullptr, nullptr); | 136 | 1.52k | return default_pool.Run(begin, end, init_func, data_func, caller); | 137 | 1.52k | } else { | 138 | 9 | return pool->Run(begin, end, init_func, data_func, caller); | 139 | 9 | } | 140 | 1.53k | } |
|
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 | 163k | const DataFunc& data_func, const char* caller) { |
146 | 163k | 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const 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)::$_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) const Line | Count | Source | 146 | 194 | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
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) const Line | Count | Source | 146 | 14 | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
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)::$_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) const Line | Count | Source | 146 | 111 | 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) const Line | Count | Source | 146 | 283 | 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) const Line | Count | Source | 146 | 283 | 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) const Line | Count | Source | 146 | 171 | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted 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) const Unexecuted 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) const Unexecuted 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 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const enc_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) const Line | Count | Source | 146 | 186 | 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const enc_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) const Line | Count | Source | 146 | 833 | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
enc_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) const Line | Count | Source | 146 | 186 | 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) const Line | Count | Source | 146 | 186 | 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) const Line | Count | Source | 146 | 186 | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const Unexecuted 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) const compressed_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) const Line | Count | Source | 146 | 868 | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted 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) const 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) const Unexecuted 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) const Unexecuted 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) const convolve_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) const Line | Count | Source | 146 | 744 | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const dec_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) const Line | Count | Source | 146 | 24.4k | 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) const Line | Count | Source | 146 | 15.7k | 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) const Line | Count | Source | 146 | 3.15k | 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) const Line | Count | Source | 146 | 42.0k | 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const Unexecuted 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) const squeeze.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) const Line | Count | Source | 146 | 37.8k | 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) const Line | Count | Source | 146 | 32.9k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted 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) const Unexecuted 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) const 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) const rct.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) const Line | Count | Source | 146 | 1.53k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
Unexecuted 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) const palette.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) const Line | Count | Source | 146 | 103 | 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) const Line | Count | Source | 146 | 88 | 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) const Line | Count | Source | 146 | 235 | 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) const Line | Count | Source | 146 | 1.53k | const auto init_func = [](size_t num_threads) -> Status { return true; }; |
|
147 | 163k | return RunOnPool(pool, begin, end, init_func, data_func, caller); |
148 | 163k | } 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 | 194 | const DataFunc& data_func, const char* caller) { | 146 | 194 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 194 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 194 | } |
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*) Line | Count | Source | 145 | 14 | const DataFunc& data_func, const char* caller) { | 146 | 14 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 14 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 14 | } |
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 | 111 | const DataFunc& data_func, const char* caller) { | 146 | 111 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 111 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 111 | } |
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 | 283 | const DataFunc& data_func, const char* caller) { | 146 | 283 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 283 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 283 | } |
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 | 283 | const DataFunc& data_func, const char* caller) { | 146 | 283 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 283 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 283 | } |
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 | 186 | const DataFunc& data_func, const char* caller) { | 146 | 186 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 186 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 186 | } |
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_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*) 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_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*) 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 | 186 | const DataFunc& data_func, const char* caller) { | 146 | 186 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 186 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 186 | } |
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_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*) 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 | 833 | const DataFunc& data_func, const char* caller) { | 146 | 833 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 833 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 833 | } |
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 | 186 | const DataFunc& data_func, const char* caller) { | 146 | 186 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 186 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 186 | } |
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 | 186 | const DataFunc& data_func, const char* caller) { | 146 | 186 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 186 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 186 | } |
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 | 186 | const DataFunc& data_func, const char* caller) { | 146 | 186 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 186 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 186 | } |
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FwdRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 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 | 868 | const DataFunc& data_func, const char* caller) { | 146 | 868 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 868 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 868 | } |
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: 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 | 744 | const DataFunc& data_func, const char* caller) { | 146 | 744 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 744 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 744 | } |
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: 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 | 24.4k | const DataFunc& data_func, const char* caller) { | 146 | 24.4k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 24.4k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 24.4k | } |
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 | 15.7k | const DataFunc& data_func, const char* caller) { | 146 | 15.7k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 15.7k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 15.7k | } |
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 | 3.15k | const DataFunc& data_func, const char* caller) { | 146 | 3.15k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 3.15k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 3.15k | } |
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 | 42.0k | const DataFunc& data_func, const char* caller) { | 146 | 42.0k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 42.0k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 42.0k | } |
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_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*) 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 | 37.8k | const DataFunc& data_func, const char* caller) { | 146 | 37.8k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 37.8k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 37.8k | } |
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 | 32.9k | const DataFunc& data_func, const char* caller) { | 146 | 32.9k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 32.9k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 32.9k | } |
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*) 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 | 1.53k | const DataFunc& data_func, const char* caller) { | 146 | 1.53k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 1.53k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 1.53k | } |
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*) 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 | 103 | const DataFunc& data_func, const char* caller) { | 146 | 103 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 103 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 103 | } |
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 | 88 | const DataFunc& data_func, const char* caller) { | 146 | 88 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 88 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 88 | } |
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 | 235 | const DataFunc& data_func, const char* caller) { | 146 | 235 | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 235 | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 235 | } |
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.53k | const DataFunc& data_func, const char* caller) { | 146 | 1.53k | const auto init_func = [](size_t num_threads) -> Status { return true; }; | 147 | 1.53k | return RunOnPool(pool, begin, end, init_func, data_func, caller); | 148 | 1.53k | } |
|
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_ |