Coverage Report

Created: 2025-08-11 08:01

/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
158k
      : runner_(runner),
33
158k
        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
248k
             const DataFunc& data_func, const char* caller) {
52
248k
    JXL_ENSURE(begin <= end);
53
248k
    if (begin == end) return true;
54
248k
    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
248k
    if (!runner_) {
58
135k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
135k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
135k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
2.28M
      for (uint32_t i = begin; i < end; i++) {
64
2.15M
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
2.15M
      }
66
135k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
135k
      return true;
70
135k
    }
71
112k
    JxlParallelRetCode ret = (*runner_)(
72
112k
        runner_opaque_, static_cast<void*>(&call_state),
73
112k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
112k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
2.19k
      return JXL_FAILURE("[%s] failed", caller);
77
2.19k
    }
78
110k
    return true;
79
112k
  }
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
2.29k
             const DataFunc& data_func, const char* caller) {
52
2.29k
    JXL_ENSURE(begin <= end);
53
2.29k
    if (begin == end) return true;
54
2.29k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.29k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
2.29k
    JxlParallelRetCode ret = (*runner_)(
72
2.29k
        runner_opaque_, static_cast<void*>(&call_state),
73
2.29k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2.29k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2.29k
    return true;
79
2.29k
  }
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
3.37k
             const DataFunc& data_func, const char* caller) {
52
3.37k
    JXL_ENSURE(begin <= end);
53
3.37k
    if (begin == end) return true;
54
3.37k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.37k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.37k
    JxlParallelRetCode ret = (*runner_)(
72
3.37k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.37k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.37k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.37k
    return true;
79
3.37k
  }
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
3.37k
             const DataFunc& data_func, const char* caller) {
52
3.37k
    JXL_ENSURE(begin <= end);
53
3.37k
    if (begin == end) return true;
54
3.37k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.37k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.37k
    JxlParallelRetCode ret = (*runner_)(
72
3.37k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.37k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.37k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.37k
    return true;
79
3.37k
  }
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)
enc_heuristics.cc:jxl::Status jxl::ThreadPool::Run<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0 const&, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
51
6.87k
             const DataFunc& data_func, const char* caller) {
52
6.87k
    JXL_ENSURE(begin <= end);
53
6.87k
    if (begin == end) return true;
54
6.87k
    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
6.87k
    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
6.87k
    JxlParallelRetCode ret = (*runner_)(
72
6.87k
        runner_opaque_, static_cast<void*>(&call_state),
73
6.87k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
6.87k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
6.87k
    return true;
79
6.87k
  }
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
2.29k
             const DataFunc& data_func, const char* caller) {
52
2.29k
    JXL_ENSURE(begin <= end);
53
2.29k
    if (begin == end) return true;
54
2.29k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.29k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
2.29k
    JxlParallelRetCode ret = (*runner_)(
72
2.29k
        runner_opaque_, static_cast<void*>(&call_state),
73
2.29k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2.29k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2.29k
    return true;
79
2.29k
  }
enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)
Line
Count
Source
51
2.16k
             const DataFunc& data_func, const char* caller) {
52
2.16k
    JXL_ENSURE(begin <= end);
53
2.16k
    if (begin == end) return true;
54
2.16k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.16k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
2.16k
    JxlParallelRetCode ret = (*runner_)(
72
2.16k
        runner_opaque_, static_cast<void*>(&call_state),
73
2.16k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2.16k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2.16k
    return true;
79
2.16k
  }
Unexecuted instantiation: enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)
enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)
Line
Count
Source
51
1.08k
             const DataFunc& data_func, const char* caller) {
52
1.08k
    JXL_ENSURE(begin <= end);
53
1.08k
    if (begin == end) return true;
54
1.08k
    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.08k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
1.08k
    JxlParallelRetCode ret = (*runner_)(
72
1.08k
        runner_opaque_, static_cast<void*>(&call_state),
73
1.08k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
1.08k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
1.08k
    return true;
79
1.08k
  }
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
3.37k
             const DataFunc& data_func, const char* caller) {
52
3.37k
    JXL_ENSURE(begin <= end);
53
3.37k
    if (begin == end) return true;
54
3.37k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.37k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.37k
    JxlParallelRetCode ret = (*runner_)(
72
3.37k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.37k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.37k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.37k
    return true;
79
3.37k
  }
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
3.37k
             const DataFunc& data_func, const char* caller) {
52
3.37k
    JXL_ENSURE(begin <= end);
53
3.37k
    if (begin == end) return true;
54
3.37k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
3.37k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
3.37k
    JxlParallelRetCode ret = (*runner_)(
72
3.37k
        runner_opaque_, static_cast<void*>(&call_state),
73
3.37k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3.37k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3.37k
    return true;
79
3.37k
  }
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
2.04k
             const DataFunc& data_func, const char* caller) {
52
2.04k
    JXL_ENSURE(begin <= end);
53
2.04k
    if (begin == end) return true;
54
2.04k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.04k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
2.04k
    JxlParallelRetCode ret = (*runner_)(
72
2.04k
        runner_opaque_, static_cast<void*>(&call_state),
73
2.04k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2.04k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2.04k
    return true;
79
2.04k
  }
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
2.29k
             const DataFunc& data_func, const char* caller) {
52
2.29k
    JXL_ENSURE(begin <= end);
53
2.29k
    if (begin == end) return true;
54
2.29k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.29k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
2.29k
    JxlParallelRetCode ret = (*runner_)(
72
2.29k
        runner_opaque_, static_cast<void*>(&call_state),
73
2.29k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2.29k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2.29k
    return true;
79
2.29k
  }
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
51
2.86k
             const DataFunc& data_func, const char* caller) {
52
2.86k
    JXL_ENSURE(begin <= end);
53
2.86k
    if (begin == end) return true;
54
2.86k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.86k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
2.86k
    JxlParallelRetCode ret = (*runner_)(
72
2.86k
        runner_opaque_, static_cast<void*>(&call_state),
73
2.86k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2.86k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2.86k
    return true;
79
2.86k
  }
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE0_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE1_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE2_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE3_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE4_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE5_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>(unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3 const&, char const*)
dec_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>(unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5 const&, char const*)
Line
Count
Source
51
1.08k
             const DataFunc& data_func, const char* caller) {
52
1.08k
    JXL_ENSURE(begin <= end);
53
1.08k
    if (begin == end) return true;
54
1.08k
    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.08k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
1.08k
    JxlParallelRetCode ret = (*runner_)(
72
1.08k
        runner_opaque_, static_cast<void*>(&call_state),
73
1.08k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
1.08k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
1.08k
    return true;
79
1.08k
  }
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
22.9k
             const DataFunc& data_func, const char* caller) {
52
22.9k
    JXL_ENSURE(begin <= end);
53
22.9k
    if (begin == end) return true;
54
22.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
22.9k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
22.9k
    JxlParallelRetCode ret = (*runner_)(
72
22.9k
        runner_opaque_, static_cast<void*>(&call_state),
73
22.9k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
22.9k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
1.87k
      return JXL_FAILURE("[%s] failed", caller);
77
1.87k
    }
78
21.0k
    return true;
79
22.9k
  }
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
20.3k
             const DataFunc& data_func, const char* caller) {
52
20.3k
    JXL_ENSURE(begin <= end);
53
20.3k
    if (begin == end) return true;
54
20.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
20.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
20.3k
    JxlParallelRetCode ret = (*runner_)(
72
20.3k
        runner_opaque_, static_cast<void*>(&call_state),
73
20.3k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
20.3k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
321
      return JXL_FAILURE("[%s] failed", caller);
77
321
    }
78
20.0k
    return true;
79
20.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
10.2k
             const DataFunc& data_func, const char* caller) {
52
10.2k
    JXL_ENSURE(begin <= end);
53
10.2k
    if (begin == end) return true;
54
10.2k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
10.2k
    if (!runner_) {
58
10.2k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
10.2k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
10.2k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
444k
      for (uint32_t i = begin; i < end; i++) {
64
434k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
434k
      }
66
10.2k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
10.2k
      return true;
70
10.2k
    }
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
15.4k
             const DataFunc& data_func, const char* caller) {
52
15.4k
    JXL_ENSURE(begin <= end);
53
15.4k
    if (begin == end) return true;
54
15.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
15.4k
    if (!runner_) {
58
15.4k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
15.4k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
15.4k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
139k
      for (uint32_t i = begin; i < end; i++) {
64
124k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
124k
      }
66
15.4k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
15.4k
      return true;
70
15.4k
    }
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
33.3k
             const DataFunc& data_func, const char* caller) {
52
33.3k
    JXL_ENSURE(begin <= end);
53
33.3k
    if (begin == end) return true;
54
33.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
33.3k
    if (!runner_) {
58
33.3k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
33.3k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
33.3k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
1.35M
      for (uint32_t i = begin; i < end; i++) {
64
1.32M
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
1.32M
      }
66
33.3k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
33.3k
      return true;
70
33.3k
    }
71
0
    JxlParallelRetCode ret = (*runner_)(
72
0
        runner_opaque_, static_cast<void*>(&call_state),
73
0
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
0
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
0
    return true;
79
0
  }
dec_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::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.0k
             const DataFunc& data_func, const char* caller) {
52
19.0k
    JXL_ENSURE(begin <= end);
53
19.0k
    if (begin == end) return true;
54
19.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
19.0k
    if (!runner_) {
58
18.7k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
18.7k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
18.7k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
37.7k
      for (uint32_t i = begin; i < end; i++) {
64
19.0k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
19.0k
      }
66
18.7k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
18.7k
      return true;
70
18.7k
    }
71
271
    JxlParallelRetCode ret = (*runner_)(
72
271
        runner_opaque_, static_cast<void*>(&call_state),
73
271
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
271
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
271
    return true;
79
271
  }
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
palette.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
51
115
             const DataFunc& data_func, const char* caller) {
52
115
    JXL_ENSURE(begin <= end);
53
115
    if (begin == end) return true;
54
114
    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
114
    if (!runner_) {
58
98
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
98
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
98
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
1.53k
      for (uint32_t i = begin; i < end; i++) {
64
1.43k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
1.43k
      }
66
98
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
98
      return true;
70
98
    }
71
16
    JxlParallelRetCode ret = (*runner_)(
72
16
        runner_opaque_, static_cast<void*>(&call_state),
73
16
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
16
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
16
    return true;
79
16
  }
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
54
             const DataFunc& data_func, const char* caller) {
52
54
    JXL_ENSURE(begin <= end);
53
54
    if (begin == end) return true;
54
54
    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
54
    if (!runner_) {
58
53
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
53
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
53
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
941
      for (uint32_t i = begin; i < end; i++) {
64
888
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
888
      }
66
53
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
53
      return true;
70
53
    }
71
1
    JxlParallelRetCode ret = (*runner_)(
72
1
        runner_opaque_, static_cast<void*>(&call_state),
73
1
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
1
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
1
    return true;
79
1
  }
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
115
             const DataFunc& data_func, const char* caller) {
52
115
    JXL_ENSURE(begin <= end);
53
115
    if (begin == end) return true;
54
115
    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
115
    if (!runner_) {
58
115
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
115
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
115
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
295
      for (uint32_t i = begin; i < end; i++) {
64
180
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
180
      }
66
115
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
115
      return true;
70
115
    }
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
442
             const DataFunc& data_func, const char* caller) {
52
442
    JXL_ENSURE(begin <= end);
53
442
    if (begin == end) return true;
54
442
    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
442
    if (!runner_) {
58
440
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
440
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
440
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
1.16k
      for (uint32_t i = begin; i < end; i++) {
64
725
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
725
      }
66
440
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
440
      return true;
70
440
    }
71
2
    JxlParallelRetCode ret = (*runner_)(
72
2
        runner_opaque_, static_cast<void*>(&call_state),
73
2
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2
    return true;
79
2
  }
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.61k
             const DataFunc& data_func, const char* caller) {
52
1.61k
    JXL_ENSURE(begin <= end);
53
1.61k
    if (begin == end) return true;
54
1.61k
    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.61k
    if (!runner_) {
58
1.60k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
1.60k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
1.60k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
106k
      for (uint32_t i = begin; i < end; i++) {
64
104k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
104k
      }
66
1.60k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
1.60k
      return true;
70
1.60k
    }
71
3
    JxlParallelRetCode ret = (*runner_)(
72
3
        runner_opaque_, static_cast<void*>(&call_state),
73
3
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
3
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
3
    return true;
79
3
  }
Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
51
31.3k
             const DataFunc& data_func, const char* caller) {
52
31.3k
    JXL_ENSURE(begin <= end);
53
31.3k
    if (begin == end) return true;
54
31.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
31.3k
    if (!runner_) {
58
29.3k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
29.3k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
29.3k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
142k
      for (uint32_t i = begin; i < end; i++) {
64
113k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
113k
      }
66
29.3k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
29.3k
      return true;
70
29.3k
    }
71
2.01k
    JxlParallelRetCode ret = (*runner_)(
72
2.01k
        runner_opaque_, static_cast<void*>(&call_state),
73
2.01k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2.01k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2.01k
    return true;
79
2.01k
  }
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
28.1k
             const DataFunc& data_func, const char* caller) {
52
28.1k
    JXL_ENSURE(begin <= end);
53
28.1k
    if (begin == end) return true;
54
28.1k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
28.1k
    if (!runner_) {
58
26.2k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
26.2k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
26.2k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
55.3k
      for (uint32_t i = begin; i < end; i++) {
64
29.0k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
29.0k
      }
66
26.2k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
26.2k
      return true;
70
26.2k
    }
71
1.91k
    JxlParallelRetCode ret = (*runner_)(
72
1.91k
        runner_opaque_, static_cast<void*>(&call_state),
73
1.91k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
1.91k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
1.91k
    return true;
79
1.91k
  }
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
enc_adaptive_quantization.cc:jxl::Status jxl::ThreadPool::Run<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(unsigned int, unsigned int, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
Line
Count
Source
51
2.29k
             const DataFunc& data_func, const char* caller) {
52
2.29k
    JXL_ENSURE(begin <= end);
53
2.29k
    if (begin == end) return true;
54
2.29k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.29k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
2.29k
    JxlParallelRetCode ret = (*runner_)(
72
2.29k
        runner_opaque_, static_cast<void*>(&call_state),
73
2.29k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2.29k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2.29k
    return true;
79
2.29k
  }
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
2.29k
             const DataFunc& data_func, const char* caller) {
52
2.29k
    JXL_ENSURE(begin <= end);
53
2.29k
    if (begin == end) return true;
54
2.29k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.29k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
2.29k
    JxlParallelRetCode ret = (*runner_)(
72
2.29k
        runner_opaque_, static_cast<void*>(&call_state),
73
2.29k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2.29k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2.29k
    return true;
79
2.29k
  }
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
2.29k
             const DataFunc& data_func, const char* caller) {
52
2.29k
    JXL_ENSURE(begin <= end);
53
2.29k
    if (begin == end) return true;
54
2.29k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.29k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
2.29k
    JxlParallelRetCode ret = (*runner_)(
72
2.29k
        runner_opaque_, static_cast<void*>(&call_state),
73
2.29k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2.29k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2.29k
    return true;
79
2.29k
  }
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
2.29k
             const DataFunc& data_func, const char* caller) {
52
2.29k
    JXL_ENSURE(begin <= end);
53
2.29k
    if (begin == end) return true;
54
2.29k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
2.29k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
2.29k
    JxlParallelRetCode ret = (*runner_)(
72
2.29k
        runner_opaque_, static_cast<void*>(&call_state),
73
2.29k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
2.29k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
2.29k
    return true;
79
2.29k
  }
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
enc_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Line
Count
Source
51
10.0k
             const DataFunc& data_func, const char* caller) {
52
10.0k
    JXL_ENSURE(begin <= end);
53
10.0k
    if (begin == end) return true;
54
10.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
10.0k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
10.0k
    JxlParallelRetCode ret = (*runner_)(
72
10.0k
        runner_opaque_, static_cast<void*>(&call_state),
73
10.0k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
10.0k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
10.0k
    return true;
79
10.0k
  }
Unexecuted instantiation: enc_image_bundle.cc:jxl::Status jxl::ThreadPool::Run<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>(unsigned int, unsigned int, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Line
Count
Source
51
9.16k
             const DataFunc& data_func, const char* caller) {
52
9.16k
    JXL_ENSURE(begin <= end);
53
9.16k
    if (begin == end) return true;
54
9.16k
    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
9.16k
    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
9.16k
    JxlParallelRetCode ret = (*runner_)(
72
9.16k
        runner_opaque_, static_cast<void*>(&call_state),
73
9.16k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
9.16k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
9.16k
    return true;
79
9.16k
  }
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
80
81
  // Use this as init_func when no initialization is needed.
82
  static constexpr ThreadPoolNoInit NoInit{};
83
84
 private:
85
  // class holding the state of a Run() call to pass to the runner_ as an
86
  // opaque_jpegxl pointer.
87
  template <class InitFunc, class DataFunc>
88
  class RunCallState final {
89
   public:
90
    RunCallState(const InitFunc& init_func, const DataFunc& data_func)
91
248k
        : 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
2.29k
        : 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
3.37k
        : 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
3.37k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&)
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::RunCallState(jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0 const&, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1 const&)
Line
Count
Source
91
6.87k
        : 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
2.29k
        : init_func_(init_func), data_func_(data_func) {}
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&)
Line
Count
Source
91
2.16k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&)
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&)
Line
Count
Source
91
1.08k
        : 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
3.37k
        : 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
3.37k
        : 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
2.04k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Line
Count
Source
91
2.29k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)
compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)
Line
Count
Source
91
2.86k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#2} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#3} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#4} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#5} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#6} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#7} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::RunCallState(jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3 const&)
dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::RunCallState(jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5 const&)
Line
Count
Source
91
1.08k
        : 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
22.9k
        : 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
20.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
10.2k
        : 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
15.4k
        : 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
33.3k
        : 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.0k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&)
Line
Count
Source
91
114
        : 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
54
        : 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
115
        : 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
442
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)
rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)
Line
Count
Source
91
1.61k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)
Line
Count
Source
91
31.3k
        : 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
28.1k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&)
enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&)
Line
Count
Source
91
2.29k
        : 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
2.29k
        : 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
2.29k
        : 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
2.29k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&)
Line
Count
Source
91
10.0k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::RunCallState(jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1 const&)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)
convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)
Line
Count
Source
91
9.16k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)
92
93
    // JxlParallelRunInit interface.
94
248k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
248k
      auto* self =
96
248k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
248k
      if (!self->init_func_(num_threads)) {
100
2
        self->has_error_ = 1;
101
2
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
2
      }
103
248k
      return JXL_PARALLEL_RET_SUCCESS;
104
248k
    }
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
2.29k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.29k
      auto* self =
96
2.29k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.29k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.29k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.29k
    }
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
3.37k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.37k
      auto* self =
96
3.37k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.37k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.37k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.37k
    }
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
3.37k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.37k
      auto* self =
96
3.37k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.37k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.37k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.37k
    }
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::CallInitFunc(void*, unsigned long)
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
6.87k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
6.87k
      auto* self =
96
6.87k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
6.87k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
6.87k
      return JXL_PARALLEL_RET_SUCCESS;
104
6.87k
    }
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
2.29k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.29k
      auto* self =
96
2.29k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.29k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.29k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.29k
    }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
2.16k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.16k
      auto* self =
96
2.16k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.16k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.16k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.16k
    }
Unexecuted instantiation: enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::CallInitFunc(void*, unsigned long)
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
1.08k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
1.08k
      auto* self =
96
1.08k
          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.08k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
1.08k
      return JXL_PARALLEL_RET_SUCCESS;
104
1.08k
    }
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
3.37k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.37k
      auto* self =
96
3.37k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.37k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.37k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.37k
    }
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
3.37k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
3.37k
      auto* self =
96
3.37k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
3.37k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
3.37k
      return JXL_PARALLEL_RET_SUCCESS;
104
3.37k
    }
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
2.04k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.04k
      auto* self =
96
2.04k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.04k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.04k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.04k
    }
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
2.29k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.29k
      auto* self =
96
2.29k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.29k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.29k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.29k
    }
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
2.86k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.86k
      auto* self =
96
2.86k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.86k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.86k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.86k
    }
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::CallInitFunc(void*, unsigned long)
dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
1.08k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
1.08k
      auto* self =
96
1.08k
          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.08k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
1.08k
      return JXL_PARALLEL_RET_SUCCESS;
104
1.08k
    }
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
22.9k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
22.9k
      auto* self =
96
22.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
22.9k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
22.9k
      return JXL_PARALLEL_RET_SUCCESS;
104
22.9k
    }
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
20.3k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
20.3k
      auto* self =
96
20.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
20.3k
      if (!self->init_func_(num_threads)) {
100
2
        self->has_error_ = 1;
101
2
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
2
      }
103
20.3k
      return JXL_PARALLEL_RET_SUCCESS;
104
20.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
10.2k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
10.2k
      auto* self =
96
10.2k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
10.2k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
10.2k
      return JXL_PARALLEL_RET_SUCCESS;
104
10.2k
    }
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
15.4k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
15.4k
      auto* self =
96
15.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
15.4k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
15.4k
      return JXL_PARALLEL_RET_SUCCESS;
104
15.4k
    }
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
33.3k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
33.3k
      auto* self =
96
33.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
33.3k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
33.3k
      return JXL_PARALLEL_RET_SUCCESS;
104
33.3k
    }
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.0k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
19.0k
      auto* self =
96
19.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
19.0k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
19.0k
      return JXL_PARALLEL_RET_SUCCESS;
104
19.0k
    }
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
114
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
114
      auto* self =
96
114
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
114
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
114
      return JXL_PARALLEL_RET_SUCCESS;
104
114
    }
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
54
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
54
      auto* self =
96
54
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
54
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
54
      return JXL_PARALLEL_RET_SUCCESS;
104
54
    }
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
115
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
115
      auto* self =
96
115
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
115
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
115
      return JXL_PARALLEL_RET_SUCCESS;
104
115
    }
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
442
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
442
      auto* self =
96
442
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
442
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
442
      return JXL_PARALLEL_RET_SUCCESS;
104
442
    }
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.61k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
1.61k
      auto* self =
96
1.61k
          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.61k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
1.61k
      return JXL_PARALLEL_RET_SUCCESS;
104
1.61k
    }
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
31.3k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
31.3k
      auto* self =
96
31.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
31.3k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
31.3k
      return JXL_PARALLEL_RET_SUCCESS;
104
31.3k
    }
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
28.1k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
28.1k
      auto* self =
96
28.1k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
28.1k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
28.1k
      return JXL_PARALLEL_RET_SUCCESS;
104
28.1k
    }
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long)
enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
2.29k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.29k
      auto* self =
96
2.29k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.29k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.29k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.29k
    }
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
2.29k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.29k
      auto* self =
96
2.29k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.29k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.29k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.29k
    }
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
2.29k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.29k
      auto* self =
96
2.29k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.29k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.29k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.29k
    }
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
2.29k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
2.29k
      auto* self =
96
2.29k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
2.29k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
2.29k
      return JXL_PARALLEL_RET_SUCCESS;
104
2.29k
    }
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
10.0k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
10.0k
      auto* self =
96
10.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
10.0k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
10.0k
      return JXL_PARALLEL_RET_SUCCESS;
104
10.0k
    }
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)
convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
9.16k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
9.16k
      auto* self =
96
9.16k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
9.16k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
9.16k
      return JXL_PARALLEL_RET_SUCCESS;
104
9.16k
    }
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
105
106
    // JxlParallelRunFunction interface.
107
    static void CallDataFunc(void* jpegxl_opaque, uint32_t value,
108
7.54M
                             size_t thread_id) {
109
7.54M
      auto* self =
110
7.54M
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
7.54M
      if (self->has_error_) return;
112
7.54M
      if (!self->data_func_(value, thread_id)) {
113
2.19k
        self->has_error_ = 1;
114
2.19k
      }
115
7.54M
    }
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
5.71k
                             size_t thread_id) {
109
5.71k
      auto* self =
110
5.71k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
5.71k
      if (self->has_error_) return;
112
5.71k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
5.71k
    }
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
3.37k
                             size_t thread_id) {
109
3.37k
      auto* self =
110
3.37k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
3.37k
      if (self->has_error_) return;
112
3.37k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
3.37k
    }
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
6.79k
                             size_t thread_id) {
109
6.79k
      auto* self =
110
6.79k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
6.79k
      if (self->has_error_) return;
112
6.79k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
6.79k
    }
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
17.1k
                             size_t thread_id) {
109
17.1k
      auto* self =
110
17.1k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
17.1k
      if (self->has_error_) return;
112
17.1k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
17.1k
    }
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
57.3k
                             size_t thread_id) {
109
57.3k
      auto* self =
110
57.3k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
57.3k
      if (self->has_error_) return;
112
57.3k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
57.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)::$_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
146k
                             size_t thread_id) {
109
146k
      auto* self =
110
146k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
146k
      if (self->has_error_) return;
112
146k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
146k
    }
Unexecuted instantiation: enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
3.24k
                             size_t thread_id) {
109
3.24k
      auto* self =
110
3.24k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
3.24k
      if (self->has_error_) return;
112
3.24k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
3.24k
    }
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
5.66k
                             size_t thread_id) {
109
5.66k
      auto* self =
110
5.66k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
5.66k
      if (self->has_error_) return;
112
5.66k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
5.66k
    }
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
77.6k
                             size_t thread_id) {
109
77.6k
      auto* self =
110
77.6k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
77.6k
      if (self->has_error_) return;
112
77.6k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
77.6k
    }
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
126k
                             size_t thread_id) {
109
126k
      auto* self =
110
126k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
126k
      if (self->has_error_) return;
112
126k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
126k
    }
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
553k
                             size_t thread_id) {
109
553k
      auto* self =
110
553k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
553k
      if (self->has_error_) return;
112
553k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
553k
    }
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
70.8k
                             size_t thread_id) {
109
70.8k
      auto* self =
110
70.8k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
70.8k
      if (self->has_error_) return;
112
70.8k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
70.8k
    }
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
73.0k
                             size_t thread_id) {
109
73.0k
      auto* self =
110
73.0k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
73.0k
      if (self->has_error_) return;
112
73.0k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
73.0k
    }
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
24.1k
                             size_t thread_id) {
109
24.1k
      auto* self =
110
24.1k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
24.1k
      if (self->has_error_) return;
112
23.9k
      if (!self->data_func_(value, thread_id)) {
113
1.87k
        self->has_error_ = 1;
114
1.87k
      }
115
23.9k
    }
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
28.8k
                             size_t thread_id) {
109
28.8k
      auto* self =
110
28.8k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
28.8k
      if (self->has_error_) return;
112
28.1k
      if (!self->data_func_(value, thread_id)) {
113
319
        self->has_error_ = 1;
114
319
      }
115
28.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
434k
                             size_t thread_id) {
109
434k
      auto* self =
110
434k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
434k
      if (self->has_error_) return;
112
434k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
434k
    }
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
124k
                             size_t thread_id) {
109
124k
      auto* self =
110
124k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
124k
      if (self->has_error_) return;
112
124k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
124k
    }
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.32M
                             size_t thread_id) {
109
1.32M
      auto* self =
110
1.32M
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
1.32M
      if (self->has_error_) return;
112
1.32M
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
1.32M
    }
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
19.3k
                             size_t thread_id) {
109
19.3k
      auto* self =
110
19.3k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
19.3k
      if (self->has_error_) return;
112
19.3k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
19.3k
    }
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
7.58k
                             size_t thread_id) {
109
7.58k
      auto* self =
110
7.58k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
7.58k
      if (self->has_error_) return;
112
7.58k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
7.58k
    }
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
1.01k
                             size_t thread_id) {
109
1.01k
      auto* self =
110
1.01k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
1.01k
      if (self->has_error_) return;
112
1.01k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
1.01k
    }
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
180
                             size_t thread_id) {
109
180
      auto* self =
110
180
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
180
      if (self->has_error_) return;
112
180
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
180
    }
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
727
                             size_t thread_id) {
109
727
      auto* self =
110
727
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
727
      if (self->has_error_) return;
112
727
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
727
    }
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
105k
                             size_t thread_id) {
109
105k
      auto* self =
110
105k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
105k
      if (self->has_error_) return;
112
105k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
105k
    }
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
122k
                             size_t thread_id) {
109
122k
      auto* self =
110
122k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
122k
      if (self->has_error_) return;
112
122k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
122k
    }
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
31.2k
                             size_t thread_id) {
109
31.2k
      auto* self =
110
31.2k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
31.2k
      if (self->has_error_) return;
112
31.2k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
31.2k
    }
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
57.3k
                             size_t thread_id) {
109
57.3k
      auto* self =
110
57.3k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
57.3k
      if (self->has_error_) return;
112
57.3k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
57.3k
    }
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
2.29k
                             size_t thread_id) {
109
2.29k
      auto* self =
110
2.29k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
2.29k
      if (self->has_error_) return;
112
2.29k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
2.29k
    }
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
5.71k
                             size_t thread_id) {
109
5.71k
      auto* self =
110
5.71k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
5.71k
      if (self->has_error_) return;
112
5.71k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
5.71k
    }
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
2.29k
                             size_t thread_id) {
109
2.29k
      auto* self =
110
2.29k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
2.29k
      if (self->has_error_) return;
112
2.29k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
2.29k
    }
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
1.87M
                             size_t thread_id) {
109
1.87M
      auto* self =
110
1.87M
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
1.87M
      if (self->has_error_) return;
112
1.87M
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
1.87M
    }
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
2.23M
                             size_t thread_id) {
109
2.23M
      auto* self =
110
2.23M
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
2.23M
      if (self->has_error_) return;
112
2.23M
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
2.23M
    }
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
116
117
248k
    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
2.29k
    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
3.37k
    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
3.37k
    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_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
6.87k
    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
2.29k
    bool HasError() const { return has_error_ != 0; }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::HasError() const
Line
Count
Source
117
2.16k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::HasError() const
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::HasError() const
Line
Count
Source
117
1.08k
    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
3.37k
    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
3.37k
    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
2.04k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() 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
2.29k
    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_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::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_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>::HasError() const
Unexecuted instantiation: enc_rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>::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
2.86k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::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
1.08k
    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
22.9k
    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
20.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
10.2k
    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
15.4k
    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
33.3k
    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.0k
    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_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() const
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() const
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::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
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
114
    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
54
    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
115
    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
442
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() 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.61k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::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
31.3k
    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
28.1k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::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: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const
enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const
Line
Count
Source
117
2.29k
    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
2.29k
    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
2.29k
    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
2.29k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() 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_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::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
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
10.0k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::HasError() const
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::HasError() 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
9.16k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() const
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() const
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() const
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() const
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::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_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::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
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
248k
                 const char* caller) {
134
248k
  if (pool == nullptr) {
135
135k
    ThreadPool default_pool(nullptr, nullptr);
136
135k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
135k
  } else {
138
112k
    return pool->Run(begin, end, init_func, data_func, caller);
139
112k
  }
140
248k
}
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
2.29k
                 const char* caller) {
134
2.29k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
2.29k
  } else {
138
2.29k
    return pool->Run(begin, end, init_func, data_func, caller);
139
2.29k
  }
140
2.29k
}
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
3.37k
                 const char* caller) {
134
3.37k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.37k
  } else {
138
3.37k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.37k
  }
140
3.37k
}
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
3.37k
                 const char* caller) {
134
3.37k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.37k
  } else {
138
3.37k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.37k
  }
140
3.37k
}
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)
enc_heuristics.cc:jxl::Status jxl::RunOnPool<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0 const&, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
133
6.87k
                 const char* caller) {
134
6.87k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
6.87k
  } else {
138
6.87k
    return pool->Run(begin, end, init_func, data_func, caller);
139
6.87k
  }
140
6.87k
}
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
2.29k
                 const char* caller) {
134
2.29k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
2.29k
  } else {
138
2.29k
    return pool->Run(begin, end, init_func, data_func, caller);
139
2.29k
  }
140
2.29k
}
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)
Line
Count
Source
133
2.16k
                 const char* caller) {
134
2.16k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
2.16k
  } else {
138
2.16k
    return pool->Run(begin, end, init_func, data_func, caller);
139
2.16k
  }
140
2.16k
}
Unexecuted instantiation: enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)
Line
Count
Source
133
1.08k
                 const char* caller) {
134
1.08k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
1.08k
  } else {
138
1.08k
    return pool->Run(begin, end, init_func, data_func, caller);
139
1.08k
  }
140
1.08k
}
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
3.37k
                 const char* caller) {
134
3.37k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.37k
  } else {
138
3.37k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.37k
  }
140
3.37k
}
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
3.37k
                 const char* caller) {
134
3.37k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
3.37k
  } else {
138
3.37k
    return pool->Run(begin, end, init_func, data_func, caller);
139
3.37k
  }
140
3.37k
}
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
2.04k
                 const char* caller) {
134
2.04k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
2.04k
  } else {
138
2.04k
    return pool->Run(begin, end, init_func, data_func, caller);
139
2.04k
  }
140
2.04k
}
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
2.29k
                 const char* caller) {
134
2.29k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
2.29k
  } else {
138
2.29k
    return pool->Run(begin, end, init_func, data_func, caller);
139
2.29k
  }
140
2.29k
}
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
133
2.86k
                 const char* caller) {
134
2.86k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
2.86k
  } else {
138
2.86k
    return pool->Run(begin, end, init_func, data_func, caller);
139
2.86k
  }
140
2.86k
}
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE0_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE1_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE2_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE3_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE4_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE5_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3 const&, char const*)
dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5 const&, char const*)
Line
Count
Source
133
1.08k
                 const char* caller) {
134
1.08k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
1.08k
  } else {
138
1.08k
    return pool->Run(begin, end, init_func, data_func, caller);
139
1.08k
  }
140
1.08k
}
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
22.9k
                 const char* caller) {
134
22.9k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
22.9k
  } else {
138
22.9k
    return pool->Run(begin, end, init_func, data_func, caller);
139
22.9k
  }
140
22.9k
}
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
20.3k
                 const char* caller) {
134
20.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
20.3k
  } else {
138
20.3k
    return pool->Run(begin, end, init_func, data_func, caller);
139
20.3k
  }
140
20.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
10.2k
                 const char* caller) {
134
10.2k
  if (pool == nullptr) {
135
10.2k
    ThreadPool default_pool(nullptr, nullptr);
136
10.2k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
10.2k
  } else {
138
0
    return pool->Run(begin, end, init_func, data_func, caller);
139
0
  }
140
10.2k
}
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
15.4k
                 const char* caller) {
134
15.4k
  if (pool == nullptr) {
135
15.4k
    ThreadPool default_pool(nullptr, nullptr);
136
15.4k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
15.4k
  } else {
138
0
    return pool->Run(begin, end, init_func, data_func, caller);
139
0
  }
140
15.4k
}
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
33.3k
                 const char* caller) {
134
33.3k
  if (pool == nullptr) {
135
33.3k
    ThreadPool default_pool(nullptr, nullptr);
136
33.3k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
33.3k
  } else {
138
0
    return pool->Run(begin, end, init_func, data_func, caller);
139
0
  }
140
33.3k
}
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.0k
                 const char* caller) {
134
19.0k
  if (pool == nullptr) {
135
18.7k
    ThreadPool default_pool(nullptr, nullptr);
136
18.7k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
18.7k
  } else {
138
271
    return pool->Run(begin, end, init_func, data_func, caller);
139
271
  }
140
19.0k
}
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
palette.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
133
115
                 const char* caller) {
134
115
  if (pool == nullptr) {
135
99
    ThreadPool default_pool(nullptr, nullptr);
136
99
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
99
  } else {
138
16
    return pool->Run(begin, end, init_func, data_func, caller);
139
16
  }
140
115
}
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
54
                 const char* caller) {
134
54
  if (pool == nullptr) {
135
53
    ThreadPool default_pool(nullptr, nullptr);
136
53
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
53
  } else {
138
1
    return pool->Run(begin, end, init_func, data_func, caller);
139
1
  }
140
54
}
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
115
                 const char* caller) {
134
115
  if (pool == nullptr) {
135
115
    ThreadPool default_pool(nullptr, nullptr);
136
115
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
115
  } else {
138
0
    return pool->Run(begin, end, init_func, data_func, caller);
139
0
  }
140
115
}
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
442
                 const char* caller) {
134
442
  if (pool == nullptr) {
135
440
    ThreadPool default_pool(nullptr, nullptr);
136
440
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
440
  } else {
138
2
    return pool->Run(begin, end, init_func, data_func, caller);
139
2
  }
140
442
}
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.61k
                 const char* caller) {
134
1.61k
  if (pool == nullptr) {
135
1.60k
    ThreadPool default_pool(nullptr, nullptr);
136
1.60k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
1.60k
  } else {
138
3
    return pool->Run(begin, end, init_func, data_func, caller);
139
3
  }
140
1.61k
}
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
133
31.3k
                 const char* caller) {
134
31.3k
  if (pool == nullptr) {
135
29.3k
    ThreadPool default_pool(nullptr, nullptr);
136
29.3k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
29.3k
  } else {
138
2.01k
    return pool->Run(begin, end, init_func, data_func, caller);
139
2.01k
  }
140
31.3k
}
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
28.1k
                 const char* caller) {
134
28.1k
  if (pool == nullptr) {
135
26.2k
    ThreadPool default_pool(nullptr, nullptr);
136
26.2k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
26.2k
  } else {
138
1.91k
    return pool->Run(begin, end, init_func, data_func, caller);
139
1.91k
  }
140
28.1k
}
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3_SPR::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3_ZEN4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX3::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
enc_adaptive_quantization.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&, char const*)
Line
Count
Source
133
2.29k
                 const char* caller) {
134
2.29k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
2.29k
  } else {
138
2.29k
    return pool->Run(begin, end, init_func, data_func, caller);
139
2.29k
  }
140
2.29k
}
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
2.29k
                 const char* caller) {
134
2.29k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
2.29k
  } else {
138
2.29k
    return pool->Run(begin, end, init_func, data_func, caller);
139
2.29k
  }
140
2.29k
}
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
2.29k
                 const char* caller) {
134
2.29k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
2.29k
  } else {
138
2.29k
    return pool->Run(begin, end, init_func, data_func, caller);
139
2.29k
  }
140
2.29k
}
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
2.29k
                 const char* caller) {
134
2.29k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
2.29k
  } else {
138
2.29k
    return pool->Run(begin, end, init_func, data_func, caller);
139
2.29k
  }
140
2.29k
}
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
enc_external_image.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Line
Count
Source
133
10.0k
                 const char* caller) {
134
10.0k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
10.0k
  } else {
138
10.0k
    return pool->Run(begin, end, init_func, data_func, caller);
139
10.0k
  }
140
10.0k
}
Unexecuted instantiation: enc_image_bundle.cc:jxl::Status jxl::RunOnPool<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Line
Count
Source
133
9.16k
                 const char* caller) {
134
9.16k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
9.16k
  } else {
138
9.16k
    return pool->Run(begin, end, init_func, data_func, caller);
139
9.16k
  }
140
9.16k
}
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
141
142
template <class DataFunc>
143
Status RunOnPool(ThreadPool* pool, const uint32_t begin, const uint32_t end,
144
                 const ThreadPoolNoInit& no_init_func,
145
187k
                 const DataFunc& data_func, const char* caller) {
146
187k
  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
2.16k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: enc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) 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)::$_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
1.08k
  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
3.37k
  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
3.37k
  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
2.04k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) 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
2.29k
  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_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) 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
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_rct.cc:jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) 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
2.86k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: compressed_dc.cc:jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: compressed_dc.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: compressed_dc.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
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: 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
22.9k
  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
10.2k
  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
15.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::$_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
33.3k
  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_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) 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
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
114
  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
54
  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
115
  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
442
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) 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.61k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
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
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
31.3k
  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
28.1k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
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
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
2.29k
  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
2.29k
  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
2.29k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) 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_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) 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
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
10.0k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: convolve_slow.cc:jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) 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
9.16k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
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: 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_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) 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
147
187k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
187k
}
Unexecuted instantiation: encode.cc:jxl::Status jxl::RunOnPool<(anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, (anonymous namespace)::FastLosslessRunnerAdapter(void*, void*, void (*)(void*, unsigned long), unsigned long)::$_0 const&, char const*)
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_0 const&, char const*)
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::ComputeJPEGTranscodingData(jxl::jpeg::JPEGData const&, jxl::FrameHeader const&, jxl::ThreadPool*, jxl::ModularFrameEncoder*, jxl::PassesEncoderState*)::$_1 const&, char const*)
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)
Line
Count
Source
145
2.16k
                 const DataFunc& data_func, const char* caller) {
146
2.16k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
2.16k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
2.16k
}
Unexecuted instantiation: enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)
Line
Count
Source
145
1.08k
                 const DataFunc& data_func, const char* caller) {
146
1.08k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
1.08k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
1.08k
}
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
3.37k
                 const DataFunc& data_func, const char* caller) {
146
3.37k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
3.37k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
3.37k
}
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
3.37k
                 const DataFunc& data_func, const char* caller) {
146
3.37k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
3.37k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
3.37k
}
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
2.04k
                 const DataFunc& data_func, const char* caller) {
146
2.04k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
2.04k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
2.04k
}
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
2.29k
                 const DataFunc& data_func, const char* caller) {
146
2.29k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
2.29k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
2.29k
}
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_2 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_3 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_4 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_5 const&, char const*)
Unexecuted instantiation: enc_rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::FwdRctImpl(std::__1::array<jxl::Channel const*, 3ul> const&, std::__1::array<jxl::Channel*, 3ul> const&, unsigned long, jxl::ThreadPool*)::$_6 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
145
2.86k
                 const DataFunc& data_func, const char* caller) {
146
2.86k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
2.86k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
2.86k
}
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)
dec_frame.cc:jxl::Status jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)
Line
Count
Source
145
22.9k
                 const DataFunc& data_func, const char* caller) {
146
22.9k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
22.9k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
22.9k
}
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
10.2k
                 const DataFunc& data_func, const char* caller) {
146
10.2k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
10.2k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
10.2k
}
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
15.4k
                 const DataFunc& data_func, const char* caller) {
146
15.4k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
15.4k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
15.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::$_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
33.3k
                 const DataFunc& data_func, const char* caller) {
146
33.3k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
33.3k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
33.3k
}
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
palette.cc:jxl::Status jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
145
115
                 const DataFunc& data_func, const char* caller) {
146
115
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
115
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
115
}
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
54
                 const DataFunc& data_func, const char* caller) {
146
54
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
54
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
54
}
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
115
                 const DataFunc& data_func, const char* caller) {
146
115
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
115
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
115
}
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
442
                 const DataFunc& data_func, const char* caller) {
146
442
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
442
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
442
}
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.61k
                 const DataFunc& data_func, const char* caller) {
146
1.61k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
1.61k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
1.61k
}
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
145
31.3k
                 const DataFunc& data_func, const char* caller) {
146
31.3k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
31.3k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
31.3k
}
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
28.1k
                 const DataFunc& data_func, const char* caller) {
146
28.1k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
28.1k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
28.1k
}
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
enc_cache.cc:jxl::Status jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)
Line
Count
Source
145
2.29k
                 const DataFunc& data_func, const char* caller) {
146
2.29k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
2.29k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
2.29k
}
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
2.29k
                 const DataFunc& data_func, const char* caller) {
146
2.29k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
2.29k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
2.29k
}
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
2.29k
                 const DataFunc& data_func, const char* caller) {
146
2.29k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
2.29k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
2.29k
}
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
enc_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Line
Count
Source
145
10.0k
                 const DataFunc& data_func, const char* caller) {
146
10.0k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
10.0k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
10.0k
}
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
9.16k
                 const DataFunc& data_func, const char* caller) {
146
9.16k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
9.16k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
9.16k
}
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_ZEN4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX3_SPR::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
149
150
}  // namespace jxl
151
#if JXL_COMPILER_MSVC
152
#pragma warning(default : 4180)
153
#endif
154
155
#endif  // LIB_JXL_BASE_DATA_PARALLEL_H_