Home
last modified time | relevance | path

Searched refs:LUT (Results 1 – 25 of 57) sorted by relevance

123

/third_party/libjpeg-turbo/simd/x86_64/
Djcphuff-sse2.asm34 mov T0d, INT [LUT + 0*SIZEOF_INT]
35 mov T1d, INT [LUT + 8*SIZEOF_INT]
39 mov T0d, INT [LUT + 1*SIZEOF_INT]
40 mov T1d, INT [LUT + 9*SIZEOF_INT]
44 mov T0d, INT [LUT + 2*SIZEOF_INT]
45 mov T1d, INT [LUT + 10*SIZEOF_INT]
49 mov T0d, INT [LUT + 3*SIZEOF_INT]
50 mov T1d, INT [LUT + 11*SIZEOF_INT]
54 mov T0d, INT [LUT + 4*SIZEOF_INT]
55 mov T1d, INT [LUT + 12*SIZEOF_INT]
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/
Djcphuff-sse2.asm34 mov T0d, INT [LUT + 0*SIZEOF_INT]
35 mov T1d, INT [LUT + 8*SIZEOF_INT]
39 mov T0d, INT [LUT + 1*SIZEOF_INT]
40 mov T1d, INT [LUT + 9*SIZEOF_INT]
44 mov T0d, INT [LUT + 2*SIZEOF_INT]
45 mov T1d, INT [LUT + 10*SIZEOF_INT]
49 mov T0d, INT [LUT + 3*SIZEOF_INT]
50 mov T1d, INT [LUT + 11*SIZEOF_INT]
54 mov T0d, INT [LUT + 4*SIZEOF_INT]
55 mov T1d, INT [LUT + 12*SIZEOF_INT]
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/simd/x86_64/
Djcphuff-sse2.asm36 mov T0d, INT [LUT + 0*SIZEOF_INT]
37 mov T1d, INT [LUT + 8*SIZEOF_INT]
41 mov T0d, INT [LUT + 1*SIZEOF_INT]
42 mov T1d, INT [LUT + 9*SIZEOF_INT]
46 mov T0d, INT [LUT + 2*SIZEOF_INT]
47 mov T1d, INT [LUT + 10*SIZEOF_INT]
51 mov T0d, INT [LUT + 3*SIZEOF_INT]
52 mov T1d, INT [LUT + 11*SIZEOF_INT]
56 mov T0d, INT [LUT + 4*SIZEOF_INT]
57 mov T1d, INT [LUT + 12*SIZEOF_INT]
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/
Djcphuff-sse2.asm33 mov T0, INT [LUT + 0*SIZEOF_INT]
34 mov T1, INT [LUT + 8*SIZEOF_INT]
38 mov T0, INT [LUT + 1*SIZEOF_INT]
39 mov T1, INT [LUT + 9*SIZEOF_INT]
43 mov T0, INT [LUT + 2*SIZEOF_INT]
44 mov T1, INT [LUT + 10*SIZEOF_INT]
48 mov T0, INT [LUT + 3*SIZEOF_INT]
49 mov T1, INT [LUT + 11*SIZEOF_INT]
53 mov T0, INT [LUT + 4*SIZEOF_INT]
54 mov T1, INT [LUT + 12*SIZEOF_INT]
[all …]
/third_party/libjpeg-turbo/simd/i386/
Djcphuff-sse2.asm33 mov T0, INT [LUT + 0*SIZEOF_INT]
34 mov T1, INT [LUT + 8*SIZEOF_INT]
38 mov T0, INT [LUT + 1*SIZEOF_INT]
39 mov T1, INT [LUT + 9*SIZEOF_INT]
43 mov T0, INT [LUT + 2*SIZEOF_INT]
44 mov T1, INT [LUT + 10*SIZEOF_INT]
48 mov T0, INT [LUT + 3*SIZEOF_INT]
49 mov T1, INT [LUT + 11*SIZEOF_INT]
53 mov T0, INT [LUT + 4*SIZEOF_INT]
54 mov T1, INT [LUT + 12*SIZEOF_INT]
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/simd/i386/
Djcphuff-sse2.asm35 mov T0, INT [LUT + 0*SIZEOF_INT]
36 mov T1, INT [LUT + 8*SIZEOF_INT]
40 mov T0, INT [LUT + 1*SIZEOF_INT]
41 mov T1, INT [LUT + 9*SIZEOF_INT]
45 mov T0, INT [LUT + 2*SIZEOF_INT]
46 mov T1, INT [LUT + 10*SIZEOF_INT]
50 mov T0, INT [LUT + 3*SIZEOF_INT]
51 mov T1, INT [LUT + 11*SIZEOF_INT]
55 mov T0, INT [LUT + 4*SIZEOF_INT]
56 mov T1, INT [LUT + 12*SIZEOF_INT]
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_histeq.c64 int LUT[256]; ///< lookup table derived from histogram[] member
176 histeq->LUT[0] = histeq->in_histogram[0]; in filter_frame()
179 histeq->LUT[x] = histeq->LUT[x-1] + histeq->in_histogram[x]; in filter_frame()
183 histeq->LUT[x] = (histeq->LUT[x] * intensity) / (inlink->h * inlink->w); in filter_frame()
188 histeq->LUT[x] = (strength * histeq->LUT[x]) / 255 + in filter_frame()
204 lut = histeq->LUT[luma]; in filter_frame()
208 (histeq->LUT[luma] + histeq->LUT[luma - 1]) / 2 : in filter_frame()
209 histeq->LUT[luma - 1]; in filter_frame()
215 (histeq->LUT[luma] + histeq->LUT[luma + 1]) / 2 : in filter_frame()
216 histeq->LUT[luma + 1]; in filter_frame()
/third_party/skia/third_party/externals/spirv-cross/shaders-hlsl/frag/
Dlut-promotion.frag6 const float LUT[16] = float[](
15 FragColor = LUT[index];
17 FragColor += LUT[index ^ 1];
19 FragColor += LUT[index & 1];
21 // Not declared as a LUT, but can be promoted to one.
32 // Not declared as a LUT, but this cannot be promoted, because we have a partial write.
40 // Not declared as a LUT, but this cannot be promoted, because we have two complete writes.
/third_party/skia/third_party/externals/spirv-cross/shaders-msl/frag/
Dlut-promotion.frag6 const float LUT[16] = float[](
15 FragColor = LUT[index];
17 FragColor += LUT[index ^ 1];
19 FragColor += LUT[index & 1];
21 // Not declared as a LUT, but can be promoted to one.
32 // Not declared as a LUT, but this cannot be promoted, because we have a partial write.
40 // Not declared as a LUT, but this cannot be promoted, because we have two complete writes.
/third_party/skia/third_party/externals/spirv-cross/shaders/frag/
Dlut-promotion.frag6 const float LUT[16] = float[](
15 FragColor = LUT[index];
17 FragColor += LUT[index ^ 1];
19 FragColor += LUT[index & 1];
21 // Not declared as a LUT, but can be promoted to one.
32 // Not declared as a LUT, but this cannot be promoted, because we have a partial write.
40 // Not declared as a LUT, but this cannot be promoted, because we have two complete writes.
/third_party/skia/third_party/externals/brotli/c/common/
Dcontext.h111 #define BROTLI_CONTEXT(P1, P2, LUT) ((LUT)[P1] | ((LUT) + 256)[P2]) argument
/third_party/node/deps/brotli/c/common/
Dcontext.h111 #define BROTLI_CONTEXT(P1, P2, LUT) ((LUT)[P1] | ((LUT) + 256)[P2]) argument
/third_party/skia/third_party/externals/tint/test/bug/tint/
D1113.wgsl.expected.glsl24 } LUT;
68 int g55 = atomicOr(LUT.values[0], 0);
141 } LUT;
163 int g55 = atomicOr(LUT.values[0], 0);
185 atomicExchange(LUT.values[voxelIndex], offset);
227 } LUT;
271 int g55 = atomicOr(LUT.values[0], 0);
299 int triangleOffset = atomicAdd(LUT.values[voxelIndex], 1);
D1113.wgsl39 [[binding(21), group(0)]] var<storage, read_write> LUT : AI32s;
94 var g55 = atomicLoad(&LUT.values[0]);
154 atomicStore(&LUT.values[voxelIndex], offset);
181 // var triangleOffset = LUT.values[voxelIndex];
182 var triangleOffset = atomicAdd(&LUT.values[voxelIndex], 1);
D1113.wgsl.expected.wgsl60 [[binding(21), group(0)]] var<storage, read_write> LUT : AI32s;
99 var g55 = atomicLoad(&(LUT.values[0]));
140 atomicStore(&(LUT.values[voxelIndex]), offset);
159 var triangleOffset = atomicAdd(&(LUT.values[voxelIndex]), 1);
D1113.wgsl.expected.hlsl36 RWByteAddressBuffer LUT : register(u21, space0);
74 int g55 = atomicLoad_2(LUT, (4u * uint(0)));
127 atomicStore_1(LUT, (4u * voxelIndex), offset);
155 int triangleOffset = atomicAdd_2(LUT, (4u * voxelIndex), 1);
D1113.wgsl.expected.spvasm37 OpName %LUT "LUT"
148 OpDecorate %LUT Binding 21
149 OpDecorate %LUT DescriptorSet 0
192 %LUT = OpVariable %_ptr_StorageBuffer_AI32s StorageBuffer
398 %201 = OpAccessChain %_ptr_StorageBuffer_int %LUT %uint_0 %int_0
553 %331 = OpAccessChain %_ptr_StorageBuffer_int %LUT %uint_0 %330
635 %396 = OpAccessChain %_ptr_StorageBuffer_int %LUT %uint_0 %395
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/gen/
Dintrinsic_table.go120 matcherIndices lut.LUT
121 openTypes lut.LUT
122 openNumbers lut.LUT
123 parameters lut.LUT
124 overloads lut.LUT
/third_party/skia/third_party/externals/opengl-registry/extensions/HP/
DREADME.image_pipeline.txt24 7. LUT (COLOR_TABLE_SGI from the SGI_color_table extension)
26 9. LUT (POST_CONVOLUTION_COLOR_TABLE_SGI, from SGI_color_table extension)
28 11. LUT (POST_COLOR_MATRIX_COLOR_TABLE_SGI, from SGI_color_table extension)
46 to follow this with a LUT that would be the means for accomplishing
/third_party/openGLES/extensions/HP/
DREADME.image_pipeline.txt24 7. LUT (COLOR_TABLE_SGI from the SGI_color_table extension)
26 9. LUT (POST_CONVOLUTION_COLOR_TABLE_SGI, from SGI_color_table extension)
28 11. LUT (POST_COLOR_MATRIX_COLOR_TABLE_SGI, from SGI_color_table extension)
46 to follow this with a LUT that would be the means for accomplishing
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringExtras.h66 static const char *const LUT = "0123456789ABCDEF"; in toHex() local
73 Output.push_back(LUT[c >> 4]); in toHex()
74 Output.push_back(LUT[c & 15]); in toHex()
/third_party/skia/third_party/externals/tint/test/bug/chromium/
D1273230.wgsl73 [[binding(21), group(0)]] var<storage, read_write> LUT : AI32s;
112 var g55 = atomicLoad(&(LUT.values[0]));
131 var triangleOffset = atomicAdd(&(LUT.values[i1]), 1);
D1273230.wgsl.expected.hlsl65 RWByteAddressBuffer LUT : register(u21, space0);
103 int g55 = atomicLoad_2(LUT, (4u * uint(0)));
125 int triangleOffset = atomicAdd_1(LUT, (4u * i1), 1);
D1273230.wgsl.expected.wgsl91 [[binding(21), group(0)]] var<storage, read_write> LUT : AI32s;
130 var g55 = atomicLoad(&(LUT.values[0]));
149 var triangleOffset = atomicAdd(&(LUT.values[i1]), 1);
D1273230.wgsl.expected.spvasm51 OpName %LUT "LUT"
140 OpDecorate %LUT Binding 21
141 OpDecorate %LUT DescriptorSet 0
182 %LUT = OpVariable %_ptr_StorageBuffer_AI32s StorageBuffer
422 %236 = OpAccessChain %_ptr_StorageBuffer_int %LUT %uint_0 %int_0
498 %301 = OpAccessChain %_ptr_StorageBuffer_int %LUT %uint_0 %300

123