Coverage Report

Created: 2025-08-12 07:37

/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
190k
      : runner_(runner),
33
190k
        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
261k
             const DataFunc& data_func, const char* caller) {
52
261k
    JXL_ENSURE(begin <= end);
53
261k
    if (begin == end) return true;
54
261k
    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
261k
    if (!runner_) {
58
179k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
179k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
179k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
3.11M
      for (uint32_t i = begin; i < end; i++) {
64
2.93M
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
2.93M
      }
66
179k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
179k
      return true;
70
179k
    }
71
81.2k
    JxlParallelRetCode ret = (*runner_)(
72
81.2k
        runner_opaque_, static_cast<void*>(&call_state),
73
81.2k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
81.2k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
180
      return JXL_FAILURE("[%s] failed", caller);
77
180
    }
78
81.0k
    return true;
79
81.2k
  }
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
162
             const DataFunc& data_func, const char* caller) {
52
162
    JXL_ENSURE(begin <= end);
53
162
    if (begin == end) return true;
54
162
    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
162
    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
162
    JxlParallelRetCode ret = (*runner_)(
72
162
        runner_opaque_, static_cast<void*>(&call_state),
73
162
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
162
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
162
    return true;
79
162
  }
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
224
             const DataFunc& data_func, const char* caller) {
52
224
    JXL_ENSURE(begin <= end);
53
224
    if (begin == end) return true;
54
224
    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
224
    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
224
    JxlParallelRetCode ret = (*runner_)(
72
224
        runner_opaque_, static_cast<void*>(&call_state),
73
224
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
224
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
224
    return true;
79
224
  }
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
224
             const DataFunc& data_func, const char* caller) {
52
224
    JXL_ENSURE(begin <= end);
53
224
    if (begin == end) return true;
54
224
    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
224
    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
224
    JxlParallelRetCode ret = (*runner_)(
72
224
        runner_opaque_, static_cast<void*>(&call_state),
73
224
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
224
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
224
    return true;
79
224
  }
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)
enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)
Line
Count
Source
51
124
             const DataFunc& data_func, const char* caller) {
52
124
    JXL_ENSURE(begin <= end);
53
124
    if (begin == end) return true;
54
124
    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
124
    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
124
    JxlParallelRetCode ret = (*runner_)(
72
124
        runner_opaque_, static_cast<void*>(&call_state),
73
124
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
124
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
124
    return true;
79
124
  }
enc_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)
Line
Count
Source
51
11
             const DataFunc& data_func, const char* caller) {
52
11
    JXL_ENSURE(begin <= end);
53
11
    if (begin == end) return true;
54
11
    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
11
    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
11
    JxlParallelRetCode ret = (*runner_)(
72
11
        runner_opaque_, static_cast<void*>(&call_state),
73
11
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
11
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
11
    return true;
79
11
  }
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
73
             const DataFunc& data_func, const char* caller) {
52
73
    JXL_ENSURE(begin <= end);
53
73
    if (begin == end) return true;
54
73
    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
73
    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
73
    JxlParallelRetCode ret = (*runner_)(
72
73
        runner_opaque_, static_cast<void*>(&call_state),
73
73
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
73
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
73
    return true;
79
73
  }
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
224
             const DataFunc& data_func, const char* caller) {
52
224
    JXL_ENSURE(begin <= end);
53
224
    if (begin == end) return true;
54
224
    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
224
    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
224
    JxlParallelRetCode ret = (*runner_)(
72
224
        runner_opaque_, static_cast<void*>(&call_state),
73
224
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
224
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
224
    return true;
79
224
  }
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
224
             const DataFunc& data_func, const char* caller) {
52
224
    JXL_ENSURE(begin <= end);
53
224
    if (begin == end) return true;
54
224
    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
224
    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
224
    JxlParallelRetCode ret = (*runner_)(
72
224
        runner_opaque_, static_cast<void*>(&call_state),
73
224
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
224
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
224
    return true;
79
224
  }
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
138
             const DataFunc& data_func, const char* caller) {
52
138
    JXL_ENSURE(begin <= end);
53
138
    if (begin == end) return true;
54
138
    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
138
    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
138
    JxlParallelRetCode ret = (*runner_)(
72
138
        runner_opaque_, static_cast<void*>(&call_state),
73
138
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
138
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
138
    return true;
79
138
  }
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Line
Count
Source
51
162
             const DataFunc& data_func, const char* caller) {
52
162
    JXL_ENSURE(begin <= end);
53
162
    if (begin == end) return true;
54
162
    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
162
    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
162
    JxlParallelRetCode ret = (*runner_)(
72
162
        runner_opaque_, static_cast<void*>(&call_state),
73
162
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
162
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
162
    return true;
79
162
  }
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_image_bundle.cc:jxl::Status jxl::ThreadPool::Run<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>(unsigned int, unsigned int, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1 const&, char const*)
enc_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Line
Count
Source
51
655
             const DataFunc& data_func, const char* caller) {
52
655
    JXL_ENSURE(begin <= end);
53
655
    if (begin == end) return true;
54
655
    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
655
    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
655
    JxlParallelRetCode ret = (*runner_)(
72
655
        runner_opaque_, static_cast<void*>(&call_state),
73
655
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
655
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
655
    return true;
79
655
  }
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
486
             const DataFunc& data_func, const char* caller) {
52
486
    JXL_ENSURE(begin <= end);
53
486
    if (begin == end) return true;
54
486
    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
486
    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
486
    JxlParallelRetCode ret = (*runner_)(
72
486
        runner_opaque_, static_cast<void*>(&call_state),
73
486
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
486
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
486
    return true;
79
486
  }
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
162
             const DataFunc& data_func, const char* caller) {
52
162
    JXL_ENSURE(begin <= end);
53
162
    if (begin == end) return true;
54
162
    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
162
    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
162
    JxlParallelRetCode ret = (*runner_)(
72
162
        runner_opaque_, static_cast<void*>(&call_state),
73
162
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
162
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
162
    return true;
79
162
  }
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
162
             const DataFunc& data_func, const char* caller) {
52
162
    JXL_ENSURE(begin <= end);
53
162
    if (begin == end) return true;
54
162
    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
162
    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
162
    JxlParallelRetCode ret = (*runner_)(
72
162
        runner_opaque_, static_cast<void*>(&call_state),
73
162
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
162
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
162
    return true;
79
162
  }
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
162
             const DataFunc& data_func, const char* caller) {
52
162
    JXL_ENSURE(begin <= end);
53
162
    if (begin == end) return true;
54
162
    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
162
    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
162
    JxlParallelRetCode ret = (*runner_)(
72
162
        runner_opaque_, static_cast<void*>(&call_state),
73
162
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
162
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
162
    return true;
79
162
  }
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
162
             const DataFunc& data_func, const char* caller) {
52
162
    JXL_ENSURE(begin <= end);
53
162
    if (begin == end) return true;
54
162
    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
162
    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
162
    JxlParallelRetCode ret = (*runner_)(
72
162
        runner_opaque_, static_cast<void*>(&call_state),
73
162
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
162
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
162
    return true;
79
162
  }
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
162
             const DataFunc& data_func, const char* caller) {
52
162
    JXL_ENSURE(begin <= end);
53
162
    if (begin == end) return true;
54
162
    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
162
    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
162
    JxlParallelRetCode ret = (*runner_)(
72
162
        runner_opaque_, static_cast<void*>(&call_state),
73
162
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
162
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
162
    return true;
79
162
  }
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_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
855
             const DataFunc& data_func, const char* caller) {
52
855
    JXL_ENSURE(begin <= end);
53
855
    if (begin == end) return true;
54
855
    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
855
    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
855
    JxlParallelRetCode ret = (*runner_)(
72
855
        runner_opaque_, static_cast<void*>(&call_state),
73
855
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
855
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
855
    return true;
79
855
  }
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Line
Count
Source
51
648
             const DataFunc& data_func, const char* caller) {
52
648
    JXL_ENSURE(begin <= end);
53
648
    if (begin == end) return true;
54
648
    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
648
    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
648
    JxlParallelRetCode ret = (*runner_)(
72
648
        runner_opaque_, static_cast<void*>(&call_state),
73
648
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
648
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
648
    return true;
79
648
  }
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE0_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE1_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE2_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE3_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE4_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl10ThreadPool3RunIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS9_PS0_EUljmE5_EES5_SD_jjRKNS_16ThreadPoolNoInitERKS8_PKcEUlmE_SE_EES5_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>(unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3 const&, char const*)
dec_external_image.cc:jxl::Status jxl::ThreadPool::Run<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>(unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5 const&, char const*)
Line
Count
Source
51
62
             const DataFunc& data_func, const char* caller) {
52
62
    JXL_ENSURE(begin <= end);
53
62
    if (begin == end) return true;
54
62
    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
62
    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
62
    JxlParallelRetCode ret = (*runner_)(
72
62
        runner_opaque_, static_cast<void*>(&call_state),
73
62
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
62
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
62
    return true;
79
62
  }
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
23.9k
             const DataFunc& data_func, const char* caller) {
52
23.9k
    JXL_ENSURE(begin <= end);
53
23.9k
    if (begin == end) return true;
54
23.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
23.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
23.9k
    JxlParallelRetCode ret = (*runner_)(
72
23.9k
        runner_opaque_, static_cast<void*>(&call_state),
73
23.9k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
23.9k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
85
      return JXL_FAILURE("[%s] failed", caller);
77
85
    }
78
23.8k
    return true;
79
23.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
23.7k
             const DataFunc& data_func, const char* caller) {
52
23.7k
    JXL_ENSURE(begin <= end);
53
23.7k
    if (begin == end) return true;
54
23.7k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
23.7k
    if (!runner_) {
58
0
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
0
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
0
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
0
      for (uint32_t i = begin; i < end; i++) {
64
0
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
0
      }
66
0
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
0
      return true;
70
0
    }
71
23.7k
    JxlParallelRetCode ret = (*runner_)(
72
23.7k
        runner_opaque_, static_cast<void*>(&call_state),
73
23.7k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
23.7k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
95
      return JXL_FAILURE("[%s] failed", caller);
77
95
    }
78
23.6k
    return true;
79
23.7k
  }
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
14.3k
             const DataFunc& data_func, const char* caller) {
52
14.3k
    JXL_ENSURE(begin <= end);
53
14.3k
    if (begin == end) return true;
54
14.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
14.3k
    if (!runner_) {
58
14.3k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
14.3k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
14.3k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
757k
      for (uint32_t i = begin; i < end; i++) {
64
742k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
742k
      }
66
14.3k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
14.3k
      return true;
70
14.3k
    }
71
0
    JxlParallelRetCode ret = (*runner_)(
72
0
        runner_opaque_, static_cast<void*>(&call_state),
73
0
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
0
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
0
    return true;
79
0
  }
dec_modular.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)
Line
Count
Source
51
9.33k
             const DataFunc& data_func, const char* caller) {
52
9.33k
    JXL_ENSURE(begin <= end);
53
9.33k
    if (begin == end) return true;
54
9.33k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
9.33k
    if (!runner_) {
58
9.33k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
9.33k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
9.33k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
119k
      for (uint32_t i = begin; i < end; i++) {
64
110k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
110k
      }
66
9.33k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
9.33k
      return true;
70
9.33k
    }
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
38.6k
             const DataFunc& data_func, const char* caller) {
52
38.6k
    JXL_ENSURE(begin <= end);
53
38.6k
    if (begin == end) return true;
54
38.6k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
38.6k
    if (!runner_) {
58
38.6k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
38.6k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
38.6k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
1.84M
      for (uint32_t i = begin; i < end; i++) {
64
1.80M
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
1.80M
      }
66
38.6k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
38.6k
      return true;
70
38.6k
    }
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.5k
             const DataFunc& data_func, const char* caller) {
52
19.5k
    JXL_ENSURE(begin <= end);
53
19.5k
    if (begin == end) return true;
54
19.5k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
19.5k
    if (!runner_) {
58
17.9k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
17.9k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
17.9k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
36.5k
      for (uint32_t i = begin; i < end; i++) {
64
18.6k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
18.6k
      }
66
17.9k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
17.9k
      return true;
70
17.9k
    }
71
1.57k
    JxlParallelRetCode ret = (*runner_)(
72
1.57k
        runner_opaque_, static_cast<void*>(&call_state),
73
1.57k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
1.57k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
1.57k
    return true;
79
1.57k
  }
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
51
64.6k
             const DataFunc& data_func, const char* caller) {
52
64.6k
    JXL_ENSURE(begin <= end);
53
64.6k
    if (begin == end) return true;
54
64.6k
    RunCallState<InitFunc, DataFunc> call_state(init_func, data_func);
55
    // The runner_ uses the C convention and returns 0 in case of error, so we
56
    // convert it to a Status.
57
64.6k
    if (!runner_) {
58
51.2k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
51.2k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
51.2k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
207k
      for (uint32_t i = begin; i < end; i++) {
64
156k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
156k
      }
66
51.2k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
51.2k
      return true;
70
51.2k
    }
71
13.4k
    JxlParallelRetCode ret = (*runner_)(
72
13.4k
        runner_opaque_, static_cast<void*>(&call_state),
73
13.4k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
13.4k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
13.4k
    return true;
79
13.4k
  }
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
58.2k
             const DataFunc& data_func, const char* caller) {
52
58.2k
    JXL_ENSURE(begin <= end);
53
58.2k
    if (begin == end) return true;
54
58.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
58.2k
    if (!runner_) {
58
45.5k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
45.5k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
45.5k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
93.3k
      for (uint32_t i = begin; i < end; i++) {
64
47.8k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
47.8k
      }
66
45.5k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
45.5k
      return true;
70
45.5k
    }
71
12.7k
    JxlParallelRetCode ret = (*runner_)(
72
12.7k
        runner_opaque_, static_cast<void*>(&call_state),
73
12.7k
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
12.7k
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
12.7k
    return true;
79
12.7k
  }
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
51
1.25k
             const DataFunc& data_func, const char* caller) {
52
1.25k
    JXL_ENSURE(begin <= end);
53
1.25k
    if (begin == end) return true;
54
1.24k
    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.24k
    if (!runner_) {
58
1.15k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
1.15k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
1.15k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
42.4k
      for (uint32_t i = begin; i < end; i++) {
64
41.3k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
41.3k
      }
66
1.15k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
1.15k
      return true;
70
1.15k
    }
71
95
    JxlParallelRetCode ret = (*runner_)(
72
95
        runner_opaque_, static_cast<void*>(&call_state),
73
95
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
95
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
95
    return true;
79
95
  }
Unexecuted instantiation: rct.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
palette.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
51
450
             const DataFunc& data_func, const char* caller) {
52
450
    JXL_ENSURE(begin <= end);
53
450
    if (begin == end) return true;
54
450
    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
450
    if (!runner_) {
58
366
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
366
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
366
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
3.94k
      for (uint32_t i = begin; i < end; i++) {
64
3.57k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
3.57k
      }
66
366
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
366
      return true;
70
366
    }
71
84
    JxlParallelRetCode ret = (*runner_)(
72
84
        runner_opaque_, static_cast<void*>(&call_state),
73
84
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
84
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
84
    return true;
79
84
  }
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
323
             const DataFunc& data_func, const char* caller) {
52
323
    JXL_ENSURE(begin <= end);
53
323
    if (begin == end) return true;
54
323
    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
323
    if (!runner_) {
58
60
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
60
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
60
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
6.50k
      for (uint32_t i = begin; i < end; i++) {
64
6.44k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
6.44k
      }
66
60
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
60
      return true;
70
60
    }
71
263
    JxlParallelRetCode ret = (*runner_)(
72
263
        runner_opaque_, static_cast<void*>(&call_state),
73
263
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
263
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
263
    return true;
79
263
  }
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
294
             const DataFunc& data_func, const char* caller) {
52
294
    JXL_ENSURE(begin <= end);
53
294
    if (begin == end) return true;
54
294
    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
294
    if (!runner_) {
58
171
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
171
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
171
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
695
      for (uint32_t i = begin; i < end; i++) {
64
524
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
524
      }
66
171
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
171
      return true;
70
171
    }
71
123
    JxlParallelRetCode ret = (*runner_)(
72
123
        runner_opaque_, static_cast<void*>(&call_state),
73
123
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
123
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
123
    return true;
79
123
  }
palette.cc:jxl::Status jxl::ThreadPool::Run<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)
Line
Count
Source
51
1.26k
             const DataFunc& data_func, const char* caller) {
52
1.26k
    JXL_ENSURE(begin <= end);
53
1.26k
    if (begin == end) return true;
54
1.26k
    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.26k
    if (!runner_) {
58
1.01k
      void* jpegxl_opaque = static_cast<void*>(&call_state);
59
1.01k
      if (call_state.CallInitFunc(jpegxl_opaque, 1) !=
60
1.01k
          JXL_PARALLEL_RET_SUCCESS) {
61
0
        return JXL_FAILURE("Failed to initialize thread");
62
0
      }
63
3.17k
      for (uint32_t i = begin; i < end; i++) {
64
2.15k
        call_state.CallDataFunc(jpegxl_opaque, i, 0);
65
2.15k
      }
66
1.01k
      if (call_state.HasError()) {
67
0
        return JXL_FAILURE("[%s] failed", caller);
68
0
      }
69
1.01k
      return true;
70
1.01k
    }
71
245
    JxlParallelRetCode ret = (*runner_)(
72
245
        runner_opaque_, static_cast<void*>(&call_state),
73
245
        &call_state.CallInitFunc, &call_state.CallDataFunc, begin, end);
74
75
245
    if (ret != JXL_PARALLEL_RET_SUCCESS || call_state.HasError()) {
76
0
      return JXL_FAILURE("[%s] failed", caller);
77
0
    }
78
245
    return true;
79
245
  }
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
261k
        : 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
162
        : 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
224
        : 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
224
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&)
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&)
Line
Count
Source
91
124
        : init_func_(init_func), data_func_(data_func) {}
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&)
Line
Count
Source
91
11
        : init_func_(init_func), data_func_(data_func) {}
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&)
Line
Count
Source
91
73
        : 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
224
        : 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
224
        : 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
138
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Line
Count
Source
91
162
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::RunCallState(jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1 const&)
enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&)
Line
Count
Source
91
655
        : init_func_(init_func), data_func_(data_func) {}
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::RunCallState(jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0 const&, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1 const&)
Line
Count
Source
91
486
        : 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
162
        : init_func_(init_func), data_func_(data_func) {}
enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::RunCallState(jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0 const&, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1 const&)
Line
Count
Source
91
162
        : 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
162
        : 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
162
        : 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
162
        : init_func_(init_func), data_func_(data_func) {}
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_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
855
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)
convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)
Line
Count
Source
91
648
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#1} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#2} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#3} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#4} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#5} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#6} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::RunCallState(char const* const&, {lambda(unsigned int, unsigned long)#7} const&)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::RunCallState(jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3 const&)
dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::RunCallState(jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5 const&)
Line
Count
Source
91
62
        : 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
23.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
23.7k
        : 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
14.3k
        : init_func_(init_func), data_func_(data_func) {}
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>::RunCallState({lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&)
Line
Count
Source
91
9.33k
        : 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
38.6k
        : 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.5k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)
Line
Count
Source
91
64.6k
        : 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
58.2k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)
rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)
Line
Count
Source
91
1.24k
        : init_func_(init_func), data_func_(data_func) {}
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&)
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::RunCallState({lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&)
Line
Count
Source
91
450
        : 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
323
        : 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
294
        : init_func_(init_func), data_func_(data_func) {}
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>::RunCallState({lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&)
Line
Count
Source
91
1.26k
        : init_func_(init_func), data_func_(data_func) {}
92
93
    // JxlParallelRunInit interface.
94
261k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
261k
      auto* self =
96
261k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
261k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
261k
      return JXL_PARALLEL_RET_SUCCESS;
104
261k
    }
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
162
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
162
      auto* self =
96
162
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
162
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
162
      return JXL_PARALLEL_RET_SUCCESS;
104
162
    }
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
224
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
224
      auto* self =
96
224
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
224
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
224
      return JXL_PARALLEL_RET_SUCCESS;
104
224
    }
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
224
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
224
      auto* self =
96
224
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
224
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
224
      return JXL_PARALLEL_RET_SUCCESS;
104
224
    }
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::CallInitFunc(void*, unsigned long)
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
124
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
124
      auto* self =
96
124
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
124
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
124
      return JXL_PARALLEL_RET_SUCCESS;
104
124
    }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
11
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
11
      auto* self =
96
11
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
11
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
11
      return JXL_PARALLEL_RET_SUCCESS;
104
11
    }
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
73
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
73
      auto* self =
96
73
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
73
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
73
      return JXL_PARALLEL_RET_SUCCESS;
104
73
    }
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
224
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
224
      auto* self =
96
224
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
224
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
224
      return JXL_PARALLEL_RET_SUCCESS;
104
224
    }
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
224
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
224
      auto* self =
96
224
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
224
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
224
      return JXL_PARALLEL_RET_SUCCESS;
104
224
    }
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
138
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
138
      auto* self =
96
138
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
138
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
138
      return JXL_PARALLEL_RET_SUCCESS;
104
138
    }
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
162
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
162
      auto* self =
96
162
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
162
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
162
      return JXL_PARALLEL_RET_SUCCESS;
104
162
    }
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::CallInitFunc(void*, unsigned long)
enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
655
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
655
      auto* self =
96
655
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
655
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
655
      return JXL_PARALLEL_RET_SUCCESS;
104
655
    }
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
486
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
486
      auto* self =
96
486
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
486
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
486
      return JXL_PARALLEL_RET_SUCCESS;
104
486
    }
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
162
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
162
      auto* self =
96
162
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
162
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
162
      return JXL_PARALLEL_RET_SUCCESS;
104
162
    }
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
162
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
162
      auto* self =
96
162
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
162
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
162
      return JXL_PARALLEL_RET_SUCCESS;
104
162
    }
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
162
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
162
      auto* self =
96
162
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
162
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
162
      return JXL_PARALLEL_RET_SUCCESS;
104
162
    }
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
162
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
162
      auto* self =
96
162
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
162
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
162
      return JXL_PARALLEL_RET_SUCCESS;
104
162
    }
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
162
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
162
      auto* self =
96
162
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
162
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
162
      return JXL_PARALLEL_RET_SUCCESS;
104
162
    }
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_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
855
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
855
      auto* self =
96
855
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
855
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
855
      return JXL_PARALLEL_RET_SUCCESS;
104
855
    }
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)
convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
648
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
648
      auto* self =
96
648
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
648
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
648
      return JXL_PARALLEL_RET_SUCCESS;
104
648
    }
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::CallInitFunc(void*, unsigned long)
dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
62
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
62
      auto* self =
96
62
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
62
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
62
      return JXL_PARALLEL_RET_SUCCESS;
104
62
    }
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
23.9k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
23.9k
      auto* self =
96
23.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
23.9k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
23.9k
      return JXL_PARALLEL_RET_SUCCESS;
104
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>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
23.7k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
23.7k
      auto* self =
96
23.7k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
23.7k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
23.7k
      return JXL_PARALLEL_RET_SUCCESS;
104
23.7k
    }
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
14.3k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
14.3k
      auto* self =
96
14.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
14.3k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
14.3k
      return JXL_PARALLEL_RET_SUCCESS;
104
14.3k
    }
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
9.33k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
9.33k
      auto* self =
96
9.33k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
9.33k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
9.33k
      return JXL_PARALLEL_RET_SUCCESS;
104
9.33k
    }
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
38.6k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
38.6k
      auto* self =
96
38.6k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
38.6k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
38.6k
      return JXL_PARALLEL_RET_SUCCESS;
104
38.6k
    }
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.5k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
19.5k
      auto* self =
96
19.5k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
19.5k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
19.5k
      return JXL_PARALLEL_RET_SUCCESS;
104
19.5k
    }
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
64.6k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
64.6k
      auto* self =
96
64.6k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
64.6k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
64.6k
      return JXL_PARALLEL_RET_SUCCESS;
104
64.6k
    }
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
58.2k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
58.2k
      auto* self =
96
58.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
58.2k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
58.2k
      return JXL_PARALLEL_RET_SUCCESS;
104
58.2k
    }
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
1.24k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
1.24k
      auto* self =
96
1.24k
          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.24k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
1.24k
      return JXL_PARALLEL_RET_SUCCESS;
104
1.24k
    }
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
450
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
450
      auto* self =
96
450
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
450
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
450
      return JXL_PARALLEL_RET_SUCCESS;
104
450
    }
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
323
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
323
      auto* self =
96
323
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
323
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
323
      return JXL_PARALLEL_RET_SUCCESS;
104
323
    }
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
294
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
294
      auto* self =
96
294
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
97
      // Returns -1 when the internal init function returns false Status to
98
      // indicate an error.
99
294
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
294
      return JXL_PARALLEL_RET_SUCCESS;
104
294
    }
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>::CallInitFunc(void*, unsigned long)
Line
Count
Source
94
1.26k
    static int CallInitFunc(void* jpegxl_opaque, size_t num_threads) {
95
1.26k
      auto* self =
96
1.26k
          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.26k
      if (!self->init_func_(num_threads)) {
100
0
        self->has_error_ = 1;
101
0
        return JXL_PARALLEL_RET_RUNNER_ERROR;
102
0
      }
103
1.26k
      return JXL_PARALLEL_RET_SUCCESS;
104
1.26k
    }
105
106
    // JxlParallelRunFunction interface.
107
    static void CallDataFunc(void* jpegxl_opaque, uint32_t value,
108
3.65M
                             size_t thread_id) {
109
3.65M
      auto* self =
110
3.65M
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
3.65M
      if (self->has_error_) return;
112
3.65M
      if (!self->data_func_(value, thread_id)) {
113
180
        self->has_error_ = 1;
114
180
      }
115
3.65M
    }
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
539
                             size_t thread_id) {
109
539
      auto* self =
110
539
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
539
      if (self->has_error_) return;
112
539
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
539
    }
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
224
                             size_t thread_id) {
109
224
      auto* self =
110
224
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
224
      if (self->has_error_) return;
112
224
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
224
    }
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
601
                             size_t thread_id) {
109
601
      auto* self =
110
601
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
601
      if (self->has_error_) return;
112
601
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
601
    }
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
8.18k
                             size_t thread_id) {
109
8.18k
      auto* self =
110
8.18k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
8.18k
      if (self->has_error_) return;
112
8.18k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
8.18k
    }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
515
                             size_t thread_id) {
109
515
      auto* self =
110
515
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
515
      if (self->has_error_) return;
112
515
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
515
    }
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
221
                             size_t thread_id) {
109
221
      auto* self =
110
221
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
221
      if (self->has_error_) return;
112
221
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
221
    }
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
398
                             size_t thread_id) {
109
398
      auto* self =
110
398
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
398
      if (self->has_error_) return;
112
398
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
398
    }
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
5.30k
                             size_t thread_id) {
109
5.30k
      auto* self =
110
5.30k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
5.30k
      if (self->has_error_) return;
112
5.30k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
5.30k
    }
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
12.8k
                             size_t thread_id) {
109
12.8k
      auto* self =
110
12.8k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
12.8k
      if (self->has_error_) return;
112
12.8k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
12.8k
    }
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
53.3k
                             size_t thread_id) {
109
53.3k
      auto* self =
110
53.3k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
53.3k
      if (self->has_error_) return;
112
53.3k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
53.3k
    }
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
171k
                             size_t thread_id) {
109
171k
      auto* self =
110
171k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
171k
      if (self->has_error_) return;
112
171k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
171k
    }
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
1.61k
                             size_t thread_id) {
109
1.61k
      auto* self =
110
1.61k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
1.61k
      if (self->has_error_) return;
112
1.61k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
1.61k
    }
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
6.48k
                             size_t thread_id) {
109
6.48k
      auto* self =
110
6.48k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
6.48k
      if (self->has_error_) return;
112
6.48k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
6.48k
    }
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
6.48k
                             size_t thread_id) {
109
6.48k
      auto* self =
110
6.48k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
6.48k
      if (self->has_error_) return;
112
6.48k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
6.48k
    }
Unexecuted instantiation: enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_SSE4::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::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
162
                             size_t thread_id) {
109
162
      auto* self =
110
162
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
162
      if (self->has_error_) return;
112
162
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
162
    }
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
539
                             size_t thread_id) {
109
539
      auto* self =
110
539
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
539
      if (self->has_error_) return;
112
539
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
539
    }
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
162
                             size_t thread_id) {
109
162
      auto* self =
110
162
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
162
      if (self->has_error_) return;
112
162
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
162
    }
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_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
10.4k
                             size_t thread_id) {
109
10.4k
      auto* self =
110
10.4k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
10.4k
      if (self->has_error_) return;
112
10.4k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
10.4k
    }
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
215k
                             size_t thread_id) {
109
215k
      auto* self =
110
215k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
215k
      if (self->has_error_) return;
112
215k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
215k
    }
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::CallDataFunc(void*, unsigned int, unsigned long)
dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
4.09k
                             size_t thread_id) {
109
4.09k
      auto* self =
110
4.09k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
4.09k
      if (self->has_error_) return;
112
4.09k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
4.09k
    }
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.8k
                             size_t thread_id) {
109
24.8k
      auto* self =
110
24.8k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
24.8k
      if (self->has_error_) return;
112
24.5k
      if (!self->data_func_(value, thread_id)) {
113
85
        self->has_error_ = 1;
114
85
      }
115
24.5k
    }
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
29.9k
                             size_t thread_id) {
109
29.9k
      auto* self =
110
29.9k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
29.9k
      if (self->has_error_) return;
112
27.9k
      if (!self->data_func_(value, thread_id)) {
113
95
        self->has_error_ = 1;
114
95
      }
115
27.9k
    }
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
742k
                             size_t thread_id) {
109
742k
      auto* self =
110
742k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
742k
      if (self->has_error_) return;
112
742k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
742k
    }
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
110k
                             size_t thread_id) {
109
110k
      auto* self =
110
110k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
110k
      if (self->has_error_) return;
112
110k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
110k
    }
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.80M
                             size_t thread_id) {
109
1.80M
      auto* self =
110
1.80M
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
1.80M
      if (self->has_error_) return;
112
1.80M
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
1.80M
    }
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_0, jxl::ModularFrameDecoder::FinalizeDecoding(jxl::FrameHeader const&, jxl::PassesDecoderState*, jxl::ThreadPool*, bool)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
20.5k
                             size_t thread_id) {
109
20.5k
      auto* self =
110
20.5k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
20.5k
      if (self->has_error_) return;
112
20.5k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
20.5k
    }
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
247k
                             size_t thread_id) {
109
247k
      auto* self =
110
247k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
247k
      if (self->has_error_) return;
112
247k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
247k
    }
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
65.6k
                             size_t thread_id) {
109
65.6k
      auto* self =
110
65.6k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
65.6k
      if (self->has_error_) return;
112
65.6k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
65.6k
    }
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
53.4k
                             size_t thread_id) {
109
53.4k
      auto* self =
110
53.4k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
53.4k
      if (self->has_error_) return;
112
53.4k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
53.4k
    }
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::CallDataFunc(void*, unsigned int, unsigned long)
Line
Count
Source
108
6.45k
                             size_t thread_id) {
109
6.45k
      auto* self =
110
6.45k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
6.45k
      if (self->has_error_) return;
112
6.45k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
6.45k
    }
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
48.1k
                             size_t thread_id) {
109
48.1k
      auto* self =
110
48.1k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
48.1k
      if (self->has_error_) return;
112
48.1k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
48.1k
    }
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
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*)::$_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
3.11k
                             size_t thread_id) {
109
3.11k
      auto* self =
110
3.11k
          static_cast<RunCallState<InitFunc, DataFunc>*>(jpegxl_opaque);
111
3.11k
      if (self->has_error_) return;
112
3.11k
      if (!self->data_func_(value, thread_id)) {
113
0
        self->has_error_ = 1;
114
0
      }
115
3.11k
    }
116
117
261k
    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
162
    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
224
    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
224
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: enc_frame.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>::HasError() const
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>::HasError() const
Line
Count
Source
117
124
    bool HasError() const { return has_error_ != 0; }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>::HasError() const
Line
Count
Source
117
11
    bool HasError() const { return has_error_ != 0; }
enc_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>::HasError() const
Line
Count
Source
117
73
    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
224
    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
224
    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
138
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_detect_dots.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Line
Count
Source
117
162
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>::HasError() const
Unexecuted instantiation: enc_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: enc_image_bundle.cc:jxl::ThreadPool::RunCallState<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>::HasError() const
enc_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::HasError() const
Line
Count
Source
117
655
    bool HasError() const { return has_error_ != 0; }
enc_heuristics.cc:jxl::ThreadPool::RunCallState<jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_0, jxl::ReconstructImage(jxl::FrameHeader const&, jxl::PassesSharedState const&, std::__1::vector<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> >, std::__1::allocator<std::__1::unique_ptr<jxl::ACImage, std::__1::default_delete<jxl::ACImage> > > > const&, jxl::ThreadPool*)::$_1>::HasError() const
Line
Count
Source
117
486
    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
162
    bool HasError() const { return has_error_ != 0; }
enc_adaptive_quantization.cc:jxl::ThreadPool::RunCallState<jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_0, jxl::N_AVX2::(anonymous namespace)::AdaptiveQuantizationMap(float, jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, float, jxl::ThreadPool*, jxl::Plane<float>*, jxl::Plane<float>*)::$_1>::HasError() const
Line
Count
Source
117
162
    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
162
    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
162
    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
162
    bool HasError() const { return has_error_ != 0; }
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_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
855
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: compressed_dc.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>::HasError() const
Unexecuted instantiation: convolve_slow.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() const
convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() const
Line
Count
Source
117
648
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: convolve_symmetric5.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#2}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#3}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#4}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#5}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#6}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#7}>::HasError() const
Unexecuted instantiation: dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>::HasError() const
dec_external_image.cc:jxl::ThreadPool::RunCallState<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>::HasError() const
Line
Count
Source
117
62
    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
23.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
23.7k
    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
14.3k
    bool HasError() const { return has_error_ != 0; }
dec_modular.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>::HasError() const
Line
Count
Source
117
9.33k
    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
38.6k
    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.5k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() const
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() const
Unexecuted instantiation: dec_xyb.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>::HasError() const
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() const
squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() const
Line
Count
Source
117
64.6k
    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
58.2k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>::HasError() const
Unexecuted instantiation: squeeze.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>::HasError() const
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
Line
Count
Source
117
1.24k
    bool HasError() const { return has_error_ != 0; }
Unexecuted instantiation: rct.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>::HasError() const
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>::HasError() const
Line
Count
Source
117
450
    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
323
    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
294
    bool HasError() const { return has_error_ != 0; }
palette.cc:jxl::ThreadPool::RunCallState<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>::HasError() const
Line
Count
Source
117
1.26k
    bool HasError() const { return has_error_ != 0; }
118
119
   private:
120
    const InitFunc& init_func_;
121
    const DataFunc& data_func_;
122
    std::atomic<uint32_t> has_error_{0};
123
  };
124
125
  // The caller supplied runner function and its opaque void*.
126
  const JxlParallelRunner runner_;
127
  void* const runner_opaque_;
128
};
129
130
template <class InitFunc, class DataFunc>
131
Status RunOnPool(ThreadPool* pool, const uint32_t begin, const uint32_t end,
132
                 const InitFunc& init_func, const DataFunc& data_func,
133
261k
                 const char* caller) {
134
261k
  if (pool == nullptr) {
135
179k
    ThreadPool default_pool(nullptr, nullptr);
136
179k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
179k
  } else {
138
81.2k
    return pool->Run(begin, end, init_func, data_func, caller);
139
81.2k
  }
140
261k
}
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
162
                 const char* caller) {
134
162
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
162
  } else {
138
162
    return pool->Run(begin, end, init_func, data_func, caller);
139
162
  }
140
162
}
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
224
                 const char* caller) {
134
224
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
224
  } else {
138
224
    return pool->Run(begin, end, init_func, data_func, caller);
139
224
  }
140
224
}
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
224
                 const char* caller) {
134
224
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
224
  } else {
138
224
    return pool->Run(begin, end, init_func, data_func, caller);
139
224
  }
140
224
}
Unexecuted instantiation: enc_frame.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::EncodeFrame(JxlMemoryManagerStruct*, jxl::CompressParams const&, jxl::FrameInfo const&, jxl::CodecMetadata const*, jxl::JxlEncoderChunkedFrameAdapter&, JxlCmsInterface const&, jxl::ThreadPool*, JxlEncoderOutputProcessorWrapper*, jxl::AuxOut*)::$_0 const&, char const*)
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_0 const&, char const*)
Line
Count
Source
133
124
                 const char* caller) {
134
124
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
124
  } else {
138
124
    return pool->Run(begin, end, init_func, data_func, caller);
139
124
  }
140
124
}
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)
Line
Count
Source
133
11
                 const char* caller) {
134
11
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
11
  } else {
138
11
    return pool->Run(begin, end, init_func, data_func, caller);
139
11
  }
140
11
}
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
73
                 const char* caller) {
134
73
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
73
  } else {
138
73
    return pool->Run(begin, end, init_func, data_func, caller);
139
73
  }
140
73
}
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
224
                 const char* caller) {
134
224
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
224
  } else {
138
224
    return pool->Run(begin, end, init_func, data_func, caller);
139
224
  }
140
224
}
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
224
                 const char* caller) {
134
224
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
224
  } else {
138
224
    return pool->Run(begin, end, init_func, data_func, caller);
139
224
  }
140
224
}
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
138
                 const char* caller) {
134
138
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
138
  } else {
138
138
    return pool->Run(begin, end, init_func, data_func, caller);
139
138
  }
140
138
}
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Line
Count
Source
133
162
                 const char* caller) {
134
162
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
162
  } else {
138
162
    return pool->Run(begin, end, init_func, data_func, caller);
139
162
  }
140
162
}
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_image_bundle.cc:jxl::Status jxl::RunOnPool<jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, jxl::ApplyColorTransform(jxl::ColorEncoding const&, float, jxl::Image3<float> const&, jxl::Plane<float> const*, jxl::RectT<unsigned long> const&, jxl::ColorEncoding const&, JxlCmsInterface const&, jxl::ThreadPool*, jxl::Image3<float>*)::$_1 const&, char const*)
enc_external_image.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Line
Count
Source
133
655
                 const char* caller) {
134
655
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
655
  } else {
138
655
    return pool->Run(begin, end, init_func, data_func, caller);
139
655
  }
140
655
}
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
486
                 const char* caller) {
134
486
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
486
  } else {
138
486
    return pool->Run(begin, end, init_func, data_func, caller);
139
486
  }
140
486
}
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
162
                 const char* caller) {
134
162
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
162
  } else {
138
162
    return pool->Run(begin, end, init_func, data_func, caller);
139
162
  }
140
162
}
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
162
                 const char* caller) {
134
162
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
162
  } else {
138
162
    return pool->Run(begin, end, init_func, data_func, caller);
139
162
  }
140
162
}
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
162
                 const char* caller) {
134
162
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
162
  } else {
138
162
    return pool->Run(begin, end, init_func, data_func, caller);
139
162
  }
140
162
}
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
162
                 const char* caller) {
134
162
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
162
  } else {
138
162
    return pool->Run(begin, end, init_func, data_func, caller);
139
162
  }
140
162
}
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
162
                 const char* caller) {
134
162
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
162
  } else {
138
162
    return pool->Run(begin, end, init_func, data_func, caller);
139
162
  }
140
162
}
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_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
855
                 const char* caller) {
134
855
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
855
  } else {
138
855
    return pool->Run(begin, end, init_func, data_func, caller);
139
855
  }
140
855
}
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}, {lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1} const, {lambda(unsigned int, unsigned long)#1} const&, char const)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Line
Count
Source
133
648
                 const char* caller) {
134
648
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
648
  } else {
138
648
    return pool->Run(begin, end, init_func, data_func, caller);
139
648
  }
140
648
}
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE0_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE1_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE2_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE3_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE4_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:_ZN3jxl9RunOnPoolIZNS_9RunOnPoolIZNS_12_GLOBAL__N_115UndoOrientationIfEENS_6StatusENS_11OrientationERKNS_5PlaneIT_EERS8_PNS_10ThreadPoolEEUljmE5_EES4_SD_jjRKNS_16ThreadPoolNoInitERKS7_PKcEUlmE_SE_EES4_SD_jjSJ_RKT0_SL_
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_2 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_3 const&, char const*)
dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_4 const&, jxl::ConvertChannelsToExternal(jxl::Plane<float> const**, unsigned long, unsigned long, bool, JxlEndianness, unsigned long, jxl::ThreadPool*, void*, unsigned long, jxl::PixelCallback const&, jxl::Orientation)::$_5 const&, char const*)
Line
Count
Source
133
62
                 const char* caller) {
134
62
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
62
  } else {
138
62
    return pool->Run(begin, end, init_func, data_func, caller);
139
62
  }
140
62
}
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
23.9k
                 const char* caller) {
134
23.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
23.9k
  } else {
138
23.9k
    return pool->Run(begin, end, init_func, data_func, caller);
139
23.9k
  }
140
23.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
23.7k
                 const char* caller) {
134
23.7k
  if (pool == nullptr) {
135
0
    ThreadPool default_pool(nullptr, nullptr);
136
0
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
23.7k
  } else {
138
23.7k
    return pool->Run(begin, end, init_func, data_func, caller);
139
23.7k
  }
140
23.7k
}
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
14.3k
                 const char* caller) {
134
14.3k
  if (pool == nullptr) {
135
14.3k
    ThreadPool default_pool(nullptr, nullptr);
136
14.3k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
14.3k
  } else {
138
0
    return pool->Run(begin, end, init_func, data_func, caller);
139
0
  }
140
14.3k
}
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)
Line
Count
Source
133
9.33k
                 const char* caller) {
134
9.33k
  if (pool == nullptr) {
135
9.33k
    ThreadPool default_pool(nullptr, nullptr);
136
9.33k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
9.33k
  } else {
138
0
    return pool->Run(begin, end, init_func, data_func, caller);
139
0
  }
140
9.33k
}
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
38.6k
                 const char* caller) {
134
38.6k
  if (pool == nullptr) {
135
38.6k
    ThreadPool default_pool(nullptr, nullptr);
136
38.6k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
38.6k
  } else {
138
0
    return pool->Run(begin, end, init_func, data_func, caller);
139
0
  }
140
38.6k
}
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.5k
                 const char* caller) {
134
19.5k
  if (pool == nullptr) {
135
17.9k
    ThreadPool default_pool(nullptr, nullptr);
136
17.9k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
17.9k
  } else {
138
1.57k
    return pool->Run(begin, end, init_func, data_func, caller);
139
1.57k
  }
140
19.5k
}
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
133
64.6k
                 const char* caller) {
134
64.6k
  if (pool == nullptr) {
135
51.2k
    ThreadPool default_pool(nullptr, nullptr);
136
51.2k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
51.2k
  } else {
138
13.4k
    return pool->Run(begin, end, init_func, data_func, caller);
139
13.4k
  }
140
64.6k
}
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
58.2k
                 const char* caller) {
134
58.2k
  if (pool == nullptr) {
135
45.5k
    ThreadPool default_pool(nullptr, nullptr);
136
45.5k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
45.5k
  } else {
138
12.7k
    return pool->Run(begin, end, init_func, data_func, caller);
139
12.7k
  }
140
58.2k
}
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
133
1.25k
                 const char* caller) {
134
1.25k
  if (pool == nullptr) {
135
1.15k
    ThreadPool default_pool(nullptr, nullptr);
136
1.15k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
1.15k
  } else {
138
95
    return pool->Run(begin, end, init_func, data_func, caller);
139
95
  }
140
1.25k
}
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
palette.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
133
450
                 const char* caller) {
134
450
  if (pool == nullptr) {
135
366
    ThreadPool default_pool(nullptr, nullptr);
136
366
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
366
  } else {
138
84
    return pool->Run(begin, end, init_func, data_func, caller);
139
84
  }
140
450
}
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
323
                 const char* caller) {
134
323
  if (pool == nullptr) {
135
60
    ThreadPool default_pool(nullptr, nullptr);
136
60
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
263
  } else {
138
263
    return pool->Run(begin, end, init_func, data_func, caller);
139
263
  }
140
323
}
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
294
                 const char* caller) {
134
294
  if (pool == nullptr) {
135
171
    ThreadPool default_pool(nullptr, nullptr);
136
171
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
171
  } else {
138
123
    return pool->Run(begin, end, init_func, data_func, caller);
139
123
  }
140
294
}
palette.cc:jxl::Status jxl::RunOnPool<jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1} const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)
Line
Count
Source
133
1.26k
                 const char* caller) {
134
1.26k
  if (pool == nullptr) {
135
1.01k
    ThreadPool default_pool(nullptr, nullptr);
136
1.01k
    return default_pool.Run(begin, end, init_func, data_func, caller);
137
1.01k
  } else {
138
245
    return pool->Run(begin, end, init_func, data_func, caller);
139
245
  }
140
1.26k
}
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
216k
                 const DataFunc& data_func, const char* caller) {
146
216k
  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
124
  const auto init_func = [](size_t num_threads) -> Status { return true; };
enc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
11
  const auto init_func = [](size_t num_threads) -> Status { return true; };
enc_modular.cc:jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
73
  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
224
  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
224
  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
138
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_detect_dots.cc:jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
162
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: enc_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
enc_external_image.cc:jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
655
  const auto init_func = [](size_t num_threads) -> Status { return true; };
enc_cache.cc:jxl::RunOnPool<jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ComputeACMetadata(jxl::ThreadPool*, jxl::PassesEncoderState*, jxl::ModularFrameEncoder*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
162
  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
162
  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
162
  const auto init_func = [](size_t num_threads) -> Status { return true; };
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_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
855
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: compressed_dc.cc:jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: convolve_slow.cc:jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: convolve_slow.cc:jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
648
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: convolve_symmetric5.cc:jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_external_image.cc:jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
dec_frame.cc:jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
23.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
14.3k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
dec_modular.cc:jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
9.33k
  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
38.6k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: dec_xyb.cc:jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
squeeze.cc:jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
64.6k
  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
58.2k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: squeeze.cc:jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Unexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
rct.cc:jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
1.24k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
Unexecuted instantiation: rct.cc:jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
palette.cc:jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
450
  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
323
  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
294
  const auto init_func = [](size_t num_threads) -> Status { return true; };
palette.cc:jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)::{lambda(unsigned long)#1}::operator()(unsigned long) const
Line
Count
Source
146
1.26k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
216k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
216k
}
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
124
                 const DataFunc& data_func, const char* caller) {
146
124
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
124
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
124
}
enc_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameEncoder::ComputeEncodingData(jxl::FrameHeader const&, jxl::ImageMetadata const&, jxl::Image3<float>*, std::__1::vector<jxl::Plane<float>, std::__1::allocator<jxl::Plane<float> > > const&, jxl::RectT<unsigned long> const&, jxl::FrameDimensions const&, jxl::RectT<unsigned long> const&, jxl::PassesEncoderState*, JxlCmsInterface const&, jxl::ThreadPool*, jxl::AuxOut*, bool)::$_1 const&, char const*)
Line
Count
Source
145
11
                 const DataFunc& data_func, const char* caller) {
146
11
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
11
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
11
}
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
73
                 const DataFunc& data_func, const char* caller) {
146
73
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
73
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
73
}
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
224
                 const DataFunc& data_func, const char* caller) {
146
224
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
224
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
224
}
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
224
                 const DataFunc& data_func, const char* caller) {
146
224
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
224
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
224
}
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
138
                 const DataFunc& data_func, const char* caller) {
146
138
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
138
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
138
}
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_detect_dots.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SumOfSquareDifferences(jxl::Image3<float> const&, jxl::Image3<float> const&, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<0ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<1ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<2ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: jxl::Status jxl::RunOnPool<jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Separable5Impl::RunInteriorRows<3ul>(unsigned long, unsigned long)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Line
Count
Source
145
162
                 const DataFunc& data_func, const char* caller) {
146
162
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
162
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
162
}
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::LinearSRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYB(float const*, jxl::ThreadPool*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::SRGBToXYBAndLinear(float const*, jxl::ThreadPool*, jxl::Image3<float>*, jxl::Image3<float>*)::$_0 const&, char const*)
Unexecuted instantiation: enc_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::RgbToYcbcr(jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float> const&, jxl::Plane<float>*, jxl::Plane<float>*, jxl::Plane<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
enc_external_image.cc:jxl::Status jxl::RunOnPool<jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ConvertFromExternalNoSizeCheck(unsigned char const*, unsigned long, unsigned long, unsigned long, unsigned long, JxlPixelFormat, unsigned long, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Line
Count
Source
145
655
                 const DataFunc& data_func, const char* caller) {
146
655
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
655
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
655
}
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
162
                 const DataFunc& data_func, const char* caller) {
146
162
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
162
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
162
}
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
162
                 const DataFunc& data_func, const char* caller) {
146
162
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
162
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
162
}
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
162
                 const DataFunc& data_func, const char* caller) {
146
162
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
162
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
162
}
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_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
855
                 const DataFunc& data_func, const char* caller) {
146
855
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
855
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
855
}
Unexecuted instantiation: compressed_dc.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::SlowSymmetric3(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric3 const&, jxl::ThreadPool*, jxl::Plane<float>*)::$_0 const&, char const*)
Unexecuted instantiation: convolve_slow.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::SlowSeparable<2, jxl::WeightsSeparable5>(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSeparable5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Line
Count
Source
145
648
                 const DataFunc& data_func, const char* caller) {
146
648
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
648
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
648
}
Unexecuted instantiation: convolve_symmetric5.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::Symmetric5(jxl::Plane<float> const&, jxl::RectT<unsigned long> const&, jxl::WeightsSymmetric5 const&, jxl::ThreadPool*, jxl::Plane<float>*, jxl::RectT<unsigned long> const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#1} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#2} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#3} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#4} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#5} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#6} const&, char const*)
Unexecuted instantiation: dec_external_image.cc:jxl::Status jxl::RunOnPool<jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7}>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::(anonymous namespace)::UndoOrientation<float>(jxl::Orientation, jxl::Plane<float> const&, jxl::Plane<float>&, jxl::ThreadPool*)::{lambda(unsigned int, unsigned long)#7} const&, char const*)
dec_frame.cc:jxl::Status jxl::RunOnPool<jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::FrameDecoder::ProcessSections(jxl::FrameDecoder::SectionInfo const*, unsigned long, jxl::FrameDecoder::SectionStatus*)::$_0 const&, char const*)
Line
Count
Source
145
23.9k
                 const DataFunc& data_func, const char* caller) {
146
23.9k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
23.9k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
23.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
14.3k
                 const DataFunc& data_func, const char* caller) {
146
14.3k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
14.3k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
14.3k
}
dec_modular.cc:jxl::Status jxl::RunOnPool<jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::ModularFrameDecoder::ModularImageToDecodedRect(jxl::FrameHeader const&, jxl::Image&, jxl::PassesDecoderState*, jxl::ThreadPool*, jxl::RenderPipelineInput&, jxl::RectT<unsigned long>) const::$_2 const&, char const*)
Line
Count
Source
145
9.33k
                 const DataFunc& data_func, const char* caller) {
146
9.33k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
9.33k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
9.33k
}
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
38.6k
                 const DataFunc& data_func, const char* caller) {
146
38.6k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
38.6k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
38.6k
}
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: dec_xyb.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::OpsinToLinear(jxl::Image3<float> const&, jxl::RectT<unsigned long> const&, jxl::ThreadPool*, jxl::Image3<float>*, jxl::OpsinParams const&)::$_0 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Line
Count
Source
145
64.6k
                 const DataFunc& data_func, const char* caller) {
146
64.6k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
64.6k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
64.6k
}
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
58.2k
                 const DataFunc& data_func, const char* caller) {
146
58.2k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
58.2k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
58.2k
}
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvHSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_1 const&, char const*)
Unexecuted instantiation: squeeze.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvVSqueeze(jxl::Image&, unsigned int, unsigned int, jxl::ThreadPool*)::$_0 const&, char const*)
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE4::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
rct.cc:jxl::Status jxl::RunOnPool<jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_AVX2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
145
1.25k
                 const DataFunc& data_func, const char* caller) {
146
1.25k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
1.25k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
1.25k
}
Unexecuted instantiation: rct.cc:jxl::Status jxl::RunOnPool<jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::N_SSE2::InvRCT(jxl::Image&, unsigned long, unsigned long, jxl::ThreadPool*)::$_0 const&, char const*)
palette.cc:jxl::Status jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_0 const&, char const*)
Line
Count
Source
145
450
                 const DataFunc& data_func, const char* caller) {
146
450
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
450
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
450
}
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
323
                 const DataFunc& data_func, const char* caller) {
146
323
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
323
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
323
}
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
294
                 const DataFunc& data_func, const char* caller) {
146
294
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
294
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
294
}
palette.cc:jxl::Status jxl::RunOnPool<jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3>(jxl::ThreadPool*, unsigned int, unsigned int, jxl::ThreadPoolNoInit const&, jxl::InvPalette(jxl::Image&, unsigned int, unsigned int, unsigned int, jxl::Predictor, jxl::weighted::Header const&, jxl::ThreadPool*)::$_3 const&, char const*)
Line
Count
Source
145
1.26k
                 const DataFunc& data_func, const char* caller) {
146
1.26k
  const auto init_func = [](size_t num_threads) -> Status { return true; };
147
1.26k
  return RunOnPool(pool, begin, end, init_func, data_func, caller);
148
1.26k
}
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_