95 | 331k | } Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE4::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX2::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long) void jxl::N_AVX2::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Line | Count | Source | 32 | 3.82k | pixel_type* out2, size_t w) { | 33 | 3.82k | static_assert(transform_type >= 0 && transform_type < 7, | 34 | 3.82k | "Invalid transform type"); | 35 | 3.82k | int second = transform_type >> 1; | 36 | 3.82k | int third = transform_type & 1; | 37 | | | 38 | 3.82k | size_t x = 0; | 39 | 3.82k | const HWY_FULL(pixel_type) d; | 40 | 3.82k | const size_t N = Lanes(d); | 41 | 47.3k | for (; x + N - 1 < w; x += N) { | 42 | 43.5k | if (transform_type == 6) { | 43 | 0 | auto Y = Load(d, in0 + x); | 44 | 0 | auto Co = Load(d, in1 + x); | 45 | 0 | auto Cg = Load(d, in2 + x); | 46 | 0 | Y = Sub(Y, ShiftRight<1>(Cg)); | 47 | 0 | auto G = Add(Cg, Y); | 48 | 0 | Y = Sub(Y, ShiftRight<1>(Co)); | 49 | 0 | auto R = Add(Y, Co); | 50 | 0 | Store(R, d, out0 + x); | 51 | 0 | Store(G, d, out1 + x); | 52 | 0 | Store(Y, d, out2 + x); | 53 | 43.5k | } else { | 54 | 43.5k | auto First = Load(d, in0 + x); | 55 | 43.5k | auto Second = Load(d, in1 + x); | 56 | 43.5k | auto Third = Load(d, in2 + x); | 57 | 43.5k | if (third) Third = Add(Third, First); | 58 | 43.5k | if (second == 1) { | 59 | 0 | Second = Add(Second, First); | 60 | 43.5k | } else if (second == 2) { | 61 | 0 | Second = Add(Second, ShiftRight<1>(Add(First, Third))); | 62 | 0 | } | 63 | 43.5k | Store(First, d, out0 + x); | 64 | 43.5k | Store(Second, d, out1 + x); | 65 | 43.5k | Store(Third, d, out2 + x); | 66 | 43.5k | } | 67 | 43.5k | } | 68 | 10.5k | for (; x < w; x++) { | 69 | 6.75k | if (transform_type == 6) { | 70 | 0 | pixel_type Y = in0[x]; | 71 | 0 | pixel_type Co = in1[x]; | 72 | 0 | pixel_type Cg = in2[x]; | 73 | 0 | pixel_type tmp = PixelAdd(Y, -(Cg >> 1)); | 74 | 0 | pixel_type G = PixelAdd(Cg, tmp); | 75 | 0 | pixel_type B = PixelAdd(tmp, -(Co >> 1)); | 76 | 0 | pixel_type R = PixelAdd(B, Co); | 77 | 0 | out0[x] = R; | 78 | 0 | out1[x] = G; | 79 | 0 | out2[x] = B; | 80 | 6.75k | } else { | 81 | 6.75k | pixel_type First = in0[x]; | 82 | 6.75k | pixel_type Second = in1[x]; | 83 | 6.75k | pixel_type Third = in2[x]; | 84 | 6.75k | if (third) Third = PixelAdd(Third, First); | 85 | 6.75k | if (second == 1) { | 86 | 0 | Second = PixelAdd(Second, First); | 87 | 6.75k | } else if (second == 2) { | 88 | 0 | Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1)); | 89 | 0 | } | 90 | 6.75k | out0[x] = First; | 91 | 6.75k | out1[x] = Second; | 92 | 6.75k | out2[x] = Third; | 93 | 6.75k | } | 94 | 6.75k | } | 95 | 3.82k | } |
void jxl::N_AVX2::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Line | Count | Source | 32 | 4.14k | pixel_type* out2, size_t w) { | 33 | 4.14k | static_assert(transform_type >= 0 && transform_type < 7, | 34 | 4.14k | "Invalid transform type"); | 35 | 4.14k | int second = transform_type >> 1; | 36 | 4.14k | int third = transform_type & 1; | 37 | | | 38 | 4.14k | size_t x = 0; | 39 | 4.14k | const HWY_FULL(pixel_type) d; | 40 | 4.14k | const size_t N = Lanes(d); | 41 | 68.5k | for (; x + N - 1 < w; x += N) { | 42 | 64.3k | if (transform_type == 6) { | 43 | 0 | auto Y = Load(d, in0 + x); | 44 | 0 | auto Co = Load(d, in1 + x); | 45 | 0 | auto Cg = Load(d, in2 + x); | 46 | 0 | Y = Sub(Y, ShiftRight<1>(Cg)); | 47 | 0 | auto G = Add(Cg, Y); | 48 | 0 | Y = Sub(Y, ShiftRight<1>(Co)); | 49 | 0 | auto R = Add(Y, Co); | 50 | 0 | Store(R, d, out0 + x); | 51 | 0 | Store(G, d, out1 + x); | 52 | 0 | Store(Y, d, out2 + x); | 53 | 64.3k | } else { | 54 | 64.3k | auto First = Load(d, in0 + x); | 55 | 64.3k | auto Second = Load(d, in1 + x); | 56 | 64.3k | auto Third = Load(d, in2 + x); | 57 | 64.3k | if (third) Third = Add(Third, First); | 58 | 64.3k | if (second == 1) { | 59 | 64.3k | Second = Add(Second, First); | 60 | 64.3k | } else if (second == 2) { | 61 | 0 | Second = Add(Second, ShiftRight<1>(Add(First, Third))); | 62 | 0 | } | 63 | 64.3k | Store(First, d, out0 + x); | 64 | 64.3k | Store(Second, d, out1 + x); | 65 | 64.3k | Store(Third, d, out2 + x); | 66 | 64.3k | } | 67 | 64.3k | } | 68 | 10.1k | for (; x < w; x++) { | 69 | 6.04k | if (transform_type == 6) { | 70 | 0 | pixel_type Y = in0[x]; | 71 | 0 | pixel_type Co = in1[x]; | 72 | 0 | pixel_type Cg = in2[x]; | 73 | 0 | pixel_type tmp = PixelAdd(Y, -(Cg >> 1)); | 74 | 0 | pixel_type G = PixelAdd(Cg, tmp); | 75 | 0 | pixel_type B = PixelAdd(tmp, -(Co >> 1)); | 76 | 0 | pixel_type R = PixelAdd(B, Co); | 77 | 0 | out0[x] = R; | 78 | 0 | out1[x] = G; | 79 | 0 | out2[x] = B; | 80 | 6.04k | } else { | 81 | 6.04k | pixel_type First = in0[x]; | 82 | 6.04k | pixel_type Second = in1[x]; | 83 | 6.04k | pixel_type Third = in2[x]; | 84 | 6.04k | if (third) Third = PixelAdd(Third, First); | 85 | 6.04k | if (second == 1) { | 86 | 6.04k | Second = PixelAdd(Second, First); | 87 | 6.04k | } else if (second == 2) { | 88 | 0 | Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1)); | 89 | 0 | } | 90 | 6.04k | out0[x] = First; | 91 | 6.04k | out1[x] = Second; | 92 | 6.04k | out2[x] = Third; | 93 | 6.04k | } | 94 | 6.04k | } | 95 | 4.14k | } |
void jxl::N_AVX2::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Line | Count | Source | 32 | 29.6k | pixel_type* out2, size_t w) { | 33 | 29.6k | static_assert(transform_type >= 0 && transform_type < 7, | 34 | 29.6k | "Invalid transform type"); | 35 | 29.6k | int second = transform_type >> 1; | 36 | 29.6k | int third = transform_type & 1; | 37 | | | 38 | 29.6k | size_t x = 0; | 39 | 29.6k | const HWY_FULL(pixel_type) d; | 40 | 29.6k | const size_t N = Lanes(d); | 41 | 670k | for (; x + N - 1 < w; x += N) { | 42 | 640k | if (transform_type == 6) { | 43 | 0 | auto Y = Load(d, in0 + x); | 44 | 0 | auto Co = Load(d, in1 + x); | 45 | 0 | auto Cg = Load(d, in2 + x); | 46 | 0 | Y = Sub(Y, ShiftRight<1>(Cg)); | 47 | 0 | auto G = Add(Cg, Y); | 48 | 0 | Y = Sub(Y, ShiftRight<1>(Co)); | 49 | 0 | auto R = Add(Y, Co); | 50 | 0 | Store(R, d, out0 + x); | 51 | 0 | Store(G, d, out1 + x); | 52 | 0 | Store(Y, d, out2 + x); | 53 | 640k | } else { | 54 | 640k | auto First = Load(d, in0 + x); | 55 | 640k | auto Second = Load(d, in1 + x); | 56 | 640k | auto Third = Load(d, in2 + x); | 57 | 640k | if (third) Third = Add(Third, First); | 58 | 640k | if (second == 1) { | 59 | 640k | Second = Add(Second, First); | 60 | 640k | } else if (second == 2) { | 61 | 0 | Second = Add(Second, ShiftRight<1>(Add(First, Third))); | 62 | 0 | } | 63 | 640k | Store(First, d, out0 + x); | 64 | 640k | Store(Second, d, out1 + x); | 65 | 640k | Store(Third, d, out2 + x); | 66 | 640k | } | 67 | 640k | } | 68 | 63.5k | for (; x < w; x++) { | 69 | 33.9k | if (transform_type == 6) { | 70 | 0 | pixel_type Y = in0[x]; | 71 | 0 | pixel_type Co = in1[x]; | 72 | 0 | pixel_type Cg = in2[x]; | 73 | 0 | pixel_type tmp = PixelAdd(Y, -(Cg >> 1)); | 74 | 0 | pixel_type G = PixelAdd(Cg, tmp); | 75 | 0 | pixel_type B = PixelAdd(tmp, -(Co >> 1)); | 76 | 0 | pixel_type R = PixelAdd(B, Co); | 77 | 0 | out0[x] = R; | 78 | 0 | out1[x] = G; | 79 | 0 | out2[x] = B; | 80 | 33.9k | } else { | 81 | 33.9k | pixel_type First = in0[x]; | 82 | 33.9k | pixel_type Second = in1[x]; | 83 | 33.9k | pixel_type Third = in2[x]; | 84 | 33.9k | if (third) Third = PixelAdd(Third, First); | 85 | 33.9k | if (second == 1) { | 86 | 33.9k | Second = PixelAdd(Second, First); | 87 | 33.9k | } else if (second == 2) { | 88 | 0 | Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1)); | 89 | 0 | } | 90 | 33.9k | out0[x] = First; | 91 | 33.9k | out1[x] = Second; | 92 | 33.9k | out2[x] = Third; | 93 | 33.9k | } | 94 | 33.9k | } | 95 | 29.6k | } |
void jxl::N_AVX2::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Line | Count | Source | 32 | 5.11k | pixel_type* out2, size_t w) { | 33 | 5.11k | static_assert(transform_type >= 0 && transform_type < 7, | 34 | 5.11k | "Invalid transform type"); | 35 | 5.11k | int second = transform_type >> 1; | 36 | 5.11k | int third = transform_type & 1; | 37 | | | 38 | 5.11k | size_t x = 0; | 39 | 5.11k | const HWY_FULL(pixel_type) d; | 40 | 5.11k | const size_t N = Lanes(d); | 41 | 194k | for (; x + N - 1 < w; x += N) { | 42 | 189k | if (transform_type == 6) { | 43 | 0 | auto Y = Load(d, in0 + x); | 44 | 0 | auto Co = Load(d, in1 + x); | 45 | 0 | auto Cg = Load(d, in2 + x); | 46 | 0 | Y = Sub(Y, ShiftRight<1>(Cg)); | 47 | 0 | auto G = Add(Cg, Y); | 48 | 0 | Y = Sub(Y, ShiftRight<1>(Co)); | 49 | 0 | auto R = Add(Y, Co); | 50 | 0 | Store(R, d, out0 + x); | 51 | 0 | Store(G, d, out1 + x); | 52 | 0 | Store(Y, d, out2 + x); | 53 | 189k | } else { | 54 | 189k | auto First = Load(d, in0 + x); | 55 | 189k | auto Second = Load(d, in1 + x); | 56 | 189k | auto Third = Load(d, in2 + x); | 57 | 189k | if (third) Third = Add(Third, First); | 58 | 189k | if (second == 1) { | 59 | 0 | Second = Add(Second, First); | 60 | 189k | } else if (second == 2) { | 61 | 189k | Second = Add(Second, ShiftRight<1>(Add(First, Third))); | 62 | 189k | } | 63 | 189k | Store(First, d, out0 + x); | 64 | 189k | Store(Second, d, out1 + x); | 65 | 189k | Store(Third, d, out2 + x); | 66 | 189k | } | 67 | 189k | } | 68 | 16.7k | for (; x < w; x++) { | 69 | 11.6k | if (transform_type == 6) { | 70 | 0 | pixel_type Y = in0[x]; | 71 | 0 | pixel_type Co = in1[x]; | 72 | 0 | pixel_type Cg = in2[x]; | 73 | 0 | pixel_type tmp = PixelAdd(Y, -(Cg >> 1)); | 74 | 0 | pixel_type G = PixelAdd(Cg, tmp); | 75 | 0 | pixel_type B = PixelAdd(tmp, -(Co >> 1)); | 76 | 0 | pixel_type R = PixelAdd(B, Co); | 77 | 0 | out0[x] = R; | 78 | 0 | out1[x] = G; | 79 | 0 | out2[x] = B; | 80 | 11.6k | } else { | 81 | 11.6k | pixel_type First = in0[x]; | 82 | 11.6k | pixel_type Second = in1[x]; | 83 | 11.6k | pixel_type Third = in2[x]; | 84 | 11.6k | if (third) Third = PixelAdd(Third, First); | 85 | 11.6k | if (second == 1) { | 86 | 0 | Second = PixelAdd(Second, First); | 87 | 11.6k | } else if (second == 2) { | 88 | 11.6k | Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1)); | 89 | 11.6k | } | 90 | 11.6k | out0[x] = First; | 91 | 11.6k | out1[x] = Second; | 92 | 11.6k | out2[x] = Third; | 93 | 11.6k | } | 94 | 11.6k | } | 95 | 5.11k | } |
void jxl::N_AVX2::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Line | Count | Source | 32 | 17.6k | pixel_type* out2, size_t w) { | 33 | 17.6k | static_assert(transform_type >= 0 && transform_type < 7, | 34 | 17.6k | "Invalid transform type"); | 35 | 17.6k | int second = transform_type >> 1; | 36 | 17.6k | int third = transform_type & 1; | 37 | | | 38 | 17.6k | size_t x = 0; | 39 | 17.6k | const HWY_FULL(pixel_type) d; | 40 | 17.6k | const size_t N = Lanes(d); | 41 | 331k | for (; x + N - 1 < w; x += N) { | 42 | 313k | if (transform_type == 6) { | 43 | 0 | auto Y = Load(d, in0 + x); | 44 | 0 | auto Co = Load(d, in1 + x); | 45 | 0 | auto Cg = Load(d, in2 + x); | 46 | 0 | Y = Sub(Y, ShiftRight<1>(Cg)); | 47 | 0 | auto G = Add(Cg, Y); | 48 | 0 | Y = Sub(Y, ShiftRight<1>(Co)); | 49 | 0 | auto R = Add(Y, Co); | 50 | 0 | Store(R, d, out0 + x); | 51 | 0 | Store(G, d, out1 + x); | 52 | 0 | Store(Y, d, out2 + x); | 53 | 313k | } else { | 54 | 313k | auto First = Load(d, in0 + x); | 55 | 313k | auto Second = Load(d, in1 + x); | 56 | 313k | auto Third = Load(d, in2 + x); | 57 | 313k | if (third) Third = Add(Third, First); | 58 | 313k | if (second == 1) { | 59 | 0 | Second = Add(Second, First); | 60 | 313k | } else if (second == 2) { | 61 | 313k | Second = Add(Second, ShiftRight<1>(Add(First, Third))); | 62 | 313k | } | 63 | 313k | Store(First, d, out0 + x); | 64 | 313k | Store(Second, d, out1 + x); | 65 | 313k | Store(Third, d, out2 + x); | 66 | 313k | } | 67 | 313k | } | 68 | 26.9k | for (; x < w; x++) { | 69 | 9.24k | if (transform_type == 6) { | 70 | 0 | pixel_type Y = in0[x]; | 71 | 0 | pixel_type Co = in1[x]; | 72 | 0 | pixel_type Cg = in2[x]; | 73 | 0 | pixel_type tmp = PixelAdd(Y, -(Cg >> 1)); | 74 | 0 | pixel_type G = PixelAdd(Cg, tmp); | 75 | 0 | pixel_type B = PixelAdd(tmp, -(Co >> 1)); | 76 | 0 | pixel_type R = PixelAdd(B, Co); | 77 | 0 | out0[x] = R; | 78 | 0 | out1[x] = G; | 79 | 0 | out2[x] = B; | 80 | 9.24k | } else { | 81 | 9.24k | pixel_type First = in0[x]; | 82 | 9.24k | pixel_type Second = in1[x]; | 83 | 9.24k | pixel_type Third = in2[x]; | 84 | 9.24k | if (third) Third = PixelAdd(Third, First); | 85 | 9.24k | if (second == 1) { | 86 | 0 | Second = PixelAdd(Second, First); | 87 | 9.24k | } else if (second == 2) { | 88 | 9.24k | Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1)); | 89 | 9.24k | } | 90 | 9.24k | out0[x] = First; | 91 | 9.24k | out1[x] = Second; | 92 | 9.24k | out2[x] = Third; | 93 | 9.24k | } | 94 | 9.24k | } | 95 | 17.6k | } |
void jxl::N_AVX2::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Line | Count | Source | 32 | 271k | pixel_type* out2, size_t w) { | 33 | 271k | static_assert(transform_type >= 0 && transform_type < 7, | 34 | 271k | "Invalid transform type"); | 35 | 271k | int second = transform_type >> 1; | 36 | 271k | int third = transform_type & 1; | 37 | | | 38 | 271k | size_t x = 0; | 39 | 271k | const HWY_FULL(pixel_type) d; | 40 | 271k | const size_t N = Lanes(d); | 41 | 1.53M | for (; x + N - 1 < w; x += N) { | 42 | 1.26M | if (transform_type == 6) { | 43 | 1.26M | auto Y = Load(d, in0 + x); | 44 | 1.26M | auto Co = Load(d, in1 + x); | 45 | 1.26M | auto Cg = Load(d, in2 + x); | 46 | 1.26M | Y = Sub(Y, ShiftRight<1>(Cg)); | 47 | 1.26M | auto G = Add(Cg, Y); | 48 | 1.26M | Y = Sub(Y, ShiftRight<1>(Co)); | 49 | 1.26M | auto R = Add(Y, Co); | 50 | 1.26M | Store(R, d, out0 + x); | 51 | 1.26M | Store(G, d, out1 + x); | 52 | 1.26M | Store(Y, d, out2 + x); | 53 | 1.26M | } else { | 54 | 0 | auto First = Load(d, in0 + x); | 55 | 0 | auto Second = Load(d, in1 + x); | 56 | 0 | auto Third = Load(d, in2 + x); | 57 | 0 | if (third) Third = Add(Third, First); | 58 | 0 | if (second == 1) { | 59 | 0 | Second = Add(Second, First); | 60 | 0 | } else if (second == 2) { | 61 | 0 | Second = Add(Second, ShiftRight<1>(Add(First, Third))); | 62 | 0 | } | 63 | 0 | Store(First, d, out0 + x); | 64 | 0 | Store(Second, d, out1 + x); | 65 | 0 | Store(Third, d, out2 + x); | 66 | 0 | } | 67 | 1.26M | } | 68 | 879k | for (; x < w; x++) { | 69 | 608k | if (transform_type == 6) { | 70 | 608k | pixel_type Y = in0[x]; | 71 | 608k | pixel_type Co = in1[x]; | 72 | 608k | pixel_type Cg = in2[x]; | 73 | 608k | pixel_type tmp = PixelAdd(Y, -(Cg >> 1)); | 74 | 608k | pixel_type G = PixelAdd(Cg, tmp); | 75 | 608k | pixel_type B = PixelAdd(tmp, -(Co >> 1)); | 76 | 608k | pixel_type R = PixelAdd(B, Co); | 77 | 608k | out0[x] = R; | 78 | 608k | out1[x] = G; | 79 | 608k | out2[x] = B; | 80 | 608k | } else { | 81 | 0 | pixel_type First = in0[x]; | 82 | 0 | pixel_type Second = in1[x]; | 83 | 0 | pixel_type Third = in2[x]; | 84 | 0 | if (third) Third = PixelAdd(Third, First); | 85 | 0 | if (second == 1) { | 86 | 0 | Second = PixelAdd(Second, First); | 87 | 0 | } else if (second == 2) { | 88 | 0 | Second = PixelAdd(Second, (PixelAdd(First, Third) >> 1)); | 89 | 0 | } | 90 | 0 | out0[x] = First; | 91 | 0 | out1[x] = Second; | 92 | 0 | out2[x] = Third; | 93 | 0 | } | 94 | 608k | } | 95 | 271k | } |
Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_ZEN4::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_AVX3_SPR::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<0>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<1>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<2>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<3>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<4>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<5>(int const*, int const*, int const*, int*, int*, int*, unsigned long) Unexecuted instantiation: void jxl::N_SSE2::InvRCTRow<6>(int const*, int const*, int const*, int*, int*, int*, unsigned long) |