Home
last modified time | relevance | path

Searched refs:rowStride (Results 1 – 25 of 626) sorted by relevance

12345678910>>...26

/dports/multimedia/svt-hevc/SVT-HEVC-1.5.1/Source/Lib/C_DEFAULT/
H A DEbIntraPrediction_C.c27 EB_U32 rowStride = skip ? 2 : 1; in IntraModeVerticalLuma() local
74 EB_U32 rowStride = skip ? 2 : 1; in IntraModeVerticalLuma16bit() local
121 EB_U32 rowStride = skip ? 2 : 1; in IntraModeVerticalChroma() local
153 EB_U32 rowStride = skip ? 2 : 1; in IntraModeVerticalChroma16bit() local
185 EB_U32 rowStride = skip ? 2 : 1; in IntraModeHorizontalLuma() local
233 EB_U32 rowStride = skip ? 2 : 1; in IntraModeHorizontalLuma16bit() local
280 EB_U32 rowStride = skip ? 2 : 1; in IntraModeHorizontalChroma() local
313 EB_U32 rowStride = skip ? 2 : 1; in IntraModeHorizontalChroma16bit() local
352 EB_U32 rowStride = skip ? 2 : 1; in IntraModeDCLuma() local
397 for (rowIndex = rowStride; rowIndex<size; rowIndex += rowStride) { in IntraModeDCLuma()
[all …]
/dports/multimedia/gstreamer1-plugins-svt-hevc/SVT-HEVC-1.5.1/Source/Lib/C_DEFAULT/
H A DEbIntraPrediction_C.c27 EB_U32 rowStride = skip ? 2 : 1; in IntraModeVerticalLuma() local
74 EB_U32 rowStride = skip ? 2 : 1; in IntraModeVerticalLuma16bit() local
121 EB_U32 rowStride = skip ? 2 : 1; in IntraModeVerticalChroma() local
153 EB_U32 rowStride = skip ? 2 : 1; in IntraModeVerticalChroma16bit() local
185 EB_U32 rowStride = skip ? 2 : 1; in IntraModeHorizontalLuma() local
233 EB_U32 rowStride = skip ? 2 : 1; in IntraModeHorizontalLuma16bit() local
280 EB_U32 rowStride = skip ? 2 : 1; in IntraModeHorizontalChroma() local
313 EB_U32 rowStride = skip ? 2 : 1; in IntraModeHorizontalChroma16bit() local
352 EB_U32 rowStride = skip ? 2 : 1; in IntraModeDCLuma() local
397 for (rowIndex = rowStride; rowIndex<size; rowIndex += rowStride) { in IntraModeDCLuma()
[all …]
/dports/science/qmcpack/qmcpack-3.11.0/src/Platforms/CUDA_legacy/
H A Dcuda_inverse.cu154 int rowStride, in cublas_inverse() argument
167 dim3 dimGridConvert((N * rowStride + (CONVERT_BS - 1)) / CONVERT_BS, numMats); in cublas_inverse()
202 …AndCheckError(cublasSgetriBatched(handle, N, Alist_d, rowStride, PivotArray, Ainvlist_d, rowStride, in cublas_inverse()
220 int rowStride, in cublas_inverse() argument
230 dim3 dimGridConvert((N * rowStride + (CONVERT_BS - 1)) / CONVERT_BS, numMats); in cublas_inverse()
240 rowStride, infoArray + numMats, numMats), in cublas_inverse()
243 …heckError(cublasDgetriBatched(handle, N, AWorklist_d, rowStride, PivotArray, Ainvlist_d, rowStride, in cublas_inverse()
262 int rowStride, in cublas_inverse() argument
298 N * rowStride); in cublas_inverse()
332 int rowStride, in cublas_inverse() argument
[all …]
/dports/science/colt/colt/src/cern/colt/matrix/impl/
H A DAbstractMatrix2D.java25 protected int rowStride; field in AbstractMatrix2D
88 return rowZero + rank*rowStride; in _rowRank()
195 this.rowStride = rowStride; in setUp()
231 tmp = rowStride; rowStride = columnStride; columnStride = tmp; in vDice()
245 this.rowZero += this.rowStride * row; in vPart()
257 rowZero += (rows-1)*rowStride; in vRowFlip()
258 rowStride = -rowStride; in vRowFlip()
267 protected AbstractMatrix2D vStrides(int rowStride, int columnStride) { in vStrides() argument
268 …if (rowStride<=0 || columnStride<=0) throw new IndexOutOfBoundsException("illegal strides: "+rowSt… in vStrides()
269 this.rowStride *= rowStride; in vStrides()
[all …]
H A DAbstractMatrix3D.java35 protected int rowStride; field in AbstractMatrix3D
83 return rowZero + rank*rowStride; in _rowRank()
236 this.rowStride = rowStride; in setUp()
298 strides[1] = this.rowStride; in vDice()
302 this.rowStride = strides[axis1]; in vDice()
316 this.rowZero += this.rowStride * row; in vPart()
331 rowZero += (rows-1)*rowStride; in vRowFlip()
332 rowStride = -rowStride; in vRowFlip()
353 …(sliceStride<=0 || rowStride<=0 || columnStride<=0) throw new IndexOutOfBoundsException("illegal s… in vStrides()
356 this.rowStride *= rowStride; in vStrides()
[all …]
/dports/math/jtransforms/JTransforms/src/edu/emory/mathcs/jtransforms/fft/
H A DRealFFTUtils_3D.java119 private final int rowStride; field in RealFFTUtils_3D
142 this.rowStride = columns; in RealFFTUtils_3D()
143 this.sliceStride = rows * this.rowStride; in RealFFTUtils_3D()
304 final int rr = remainder / rowStride; in pack()
305 final int cc = remainder % rowStride; in pack()
370 final int rr = remainder / rowStride; in pack()
371 final int cc = remainder % rowStride; in pack()
432 final int rr = remainder / rowStride; in unpack()
433 final int cc = remainder % rowStride; in unpack()
492 final int rr = remainder / rowStride; in unpack()
[all …]
/dports/lang/clover/mesa-21.3.6/src/mesa/main/
H A Dtexcompress_bptc.c39 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_float() argument
45 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgb_float()
52 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_signed_float() argument
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true); in fetch_bptc_rgb_signed_float()
60 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_unsigned_float() argument
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false); in fetch_bptc_rgb_unsigned_float()
68 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm_bytes() argument
73 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgba_unorm_bytes()
80 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm() argument
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_rgba_unorm()
[all …]
H A Dtexcompress_rgtc.c328 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_l_latc1() argument
356 util_format_signed_fetch_texel_rgtc(rowStride, (GLbyte *) map, in fetch_signed_l_latc1()
366 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rg_rgtc2() argument
369 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
372 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
386 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
389 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
404 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
407 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
422 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_la_latc2()
[all …]
/dports/graphics/libosmesa/mesa-21.3.6/src/mesa/main/
H A Dtexcompress_bptc.c39 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_float() argument
45 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgb_float()
52 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_signed_float() argument
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true); in fetch_bptc_rgb_signed_float()
60 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_unsigned_float() argument
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false); in fetch_bptc_rgb_unsigned_float()
68 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm_bytes() argument
73 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgba_unorm_bytes()
80 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm() argument
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_rgba_unorm()
[all …]
H A Dtexcompress_rgtc.c328 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_l_latc1() argument
356 util_format_signed_fetch_texel_rgtc(rowStride, (GLbyte *) map, in fetch_signed_l_latc1()
366 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rg_rgtc2() argument
369 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
372 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
386 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
389 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
404 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
407 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
422 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_la_latc2()
[all …]
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/mesa/main/
H A Dtexcompress_bptc.c39 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_float() argument
45 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgb_float()
52 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_signed_float() argument
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true); in fetch_bptc_rgb_signed_float()
60 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_unsigned_float() argument
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false); in fetch_bptc_rgb_unsigned_float()
68 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm_bytes() argument
73 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgba_unorm_bytes()
80 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm() argument
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_rgba_unorm()
[all …]
H A Dtexcompress_rgtc.c328 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_l_latc1() argument
356 util_format_signed_fetch_texel_rgtc(rowStride, (GLbyte *) map, in fetch_signed_l_latc1()
366 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rg_rgtc2() argument
369 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
372 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
386 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
389 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
404 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
407 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
422 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_la_latc2()
[all …]
/dports/graphics/mesa-libs/mesa-21.3.6/src/mesa/main/
H A Dtexcompress_bptc.c39 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_float() argument
45 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgb_float()
52 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_signed_float() argument
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true); in fetch_bptc_rgb_signed_float()
60 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_unsigned_float() argument
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false); in fetch_bptc_rgb_unsigned_float()
68 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm_bytes() argument
73 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgba_unorm_bytes()
80 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm() argument
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_rgba_unorm()
[all …]
H A Dtexcompress_rgtc.c328 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_l_latc1() argument
356 util_format_signed_fetch_texel_rgtc(rowStride, (GLbyte *) map, in fetch_signed_l_latc1()
366 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rg_rgtc2() argument
369 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
372 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
386 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
389 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
404 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
407 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
422 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_la_latc2()
[all …]
/dports/graphics/mesa-dri-classic/mesa-20.2.3/src/mesa/main/
H A Dtexcompress_bptc.c39 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_float() argument
45 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgb_float()
52 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_signed_float() argument
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true); in fetch_bptc_rgb_signed_float()
60 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_unsigned_float() argument
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false); in fetch_bptc_rgb_unsigned_float()
68 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm_bytes() argument
73 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgba_unorm_bytes()
80 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm() argument
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_rgba_unorm()
[all …]
H A Dtexcompress_rgtc.c328 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_l_latc1() argument
356 util_format_signed_fetch_texel_rgtc(rowStride, (GLbyte *) map, in fetch_signed_l_latc1()
366 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rg_rgtc2() argument
369 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
372 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
386 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
389 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
404 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
407 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
422 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_la_latc2()
[all …]
/dports/graphics/mesa-dri-gallium/mesa-21.3.6/src/mesa/main/
H A Dtexcompress_bptc.c39 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_float() argument
45 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgb_float()
52 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_signed_float() argument
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true); in fetch_bptc_rgb_signed_float()
60 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_unsigned_float() argument
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false); in fetch_bptc_rgb_unsigned_float()
68 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm_bytes() argument
73 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgba_unorm_bytes()
80 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm() argument
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_rgba_unorm()
[all …]
H A Dtexcompress_rgtc.c328 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_l_latc1() argument
356 util_format_signed_fetch_texel_rgtc(rowStride, (GLbyte *) map, in fetch_signed_l_latc1()
366 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rg_rgtc2() argument
369 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
372 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
386 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
389 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
404 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
407 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
422 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_la_latc2()
[all …]
/dports/graphics/mesa-gallium-va/mesa-21.3.6/src/mesa/main/
H A Dtexcompress_bptc.c39 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_float() argument
45 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgb_float()
52 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_signed_float() argument
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true); in fetch_bptc_rgb_signed_float()
60 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_unsigned_float() argument
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false); in fetch_bptc_rgb_unsigned_float()
68 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm_bytes() argument
73 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgba_unorm_bytes()
80 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm() argument
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_rgba_unorm()
[all …]
H A Dtexcompress_rgtc.c328 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_l_latc1() argument
356 util_format_signed_fetch_texel_rgtc(rowStride, (GLbyte *) map, in fetch_signed_l_latc1()
366 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rg_rgtc2() argument
369 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
372 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
386 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
389 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
404 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
407 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
422 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_la_latc2()
[all …]
/dports/graphics/mesa-gallium-vdpau/mesa-21.3.6/src/mesa/main/
H A Dtexcompress_bptc.c39 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_float() argument
45 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgb_float()
52 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_signed_float() argument
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true); in fetch_bptc_rgb_signed_float()
60 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_unsigned_float() argument
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false); in fetch_bptc_rgb_unsigned_float()
68 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm_bytes() argument
73 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgba_unorm_bytes()
80 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm() argument
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_rgba_unorm()
[all …]
H A Dtexcompress_rgtc.c328 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_l_latc1() argument
356 util_format_signed_fetch_texel_rgtc(rowStride, (GLbyte *) map, in fetch_signed_l_latc1()
366 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rg_rgtc2() argument
369 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
372 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
386 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
389 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_la_latc2()
404 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
407 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_rg_rgtc2()
422 util_format_signed_fetch_texel_rgtc(rowStride, in fetch_signed_la_latc2()
[all …]
/dports/graphics/mesa-gallium-xa/mesa-21.3.6/src/mesa/main/
H A Dtexcompress_bptc.c39 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_float() argument
45 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgb_float()
52 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_signed_float() argument
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true); in fetch_bptc_rgb_signed_float()
60 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_unsigned_float() argument
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false); in fetch_bptc_rgb_unsigned_float()
68 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm_bytes() argument
73 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgba_unorm_bytes()
80 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm() argument
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_rgba_unorm()
[all …]
/dports/graphics/mesa-devel/mesa-22.0-branchpoint-2059-ge8a63cf61ec/src/mesa/main/
H A Dtexcompress_bptc.c39 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_float() argument
45 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgb_float()
52 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_signed_float() argument
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true); in fetch_bptc_rgb_signed_float()
60 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_unsigned_float() argument
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false); in fetch_bptc_rgb_unsigned_float()
68 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm_bytes() argument
73 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgba_unorm_bytes()
80 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm() argument
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_rgba_unorm()
[all …]
/dports/graphics/mesa-dri/mesa-21.3.6/src/mesa/main/
H A Dtexcompress_bptc.c39 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_float() argument
45 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgb_float()
52 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_signed_float() argument
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true); in fetch_bptc_rgb_signed_float()
60 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_unsigned_float() argument
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false); in fetch_bptc_rgb_unsigned_float()
68 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm_bytes() argument
73 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgba_unorm_bytes()
80 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm() argument
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_rgba_unorm()
[all …]

12345678910>>...26