Home
last modified time | relevance | path

Searched refs:pitch (Results 1 – 25 of 591) sorted by relevance

12345678910>>...24

/third_party/mesa3d/src/freedreno/fdl/
Dfd6_layout_test.c44 {.offset = 0, .pitch = 256},
45 {.offset = 8192, .pitch = 256},
46 {.offset = 12288, .pitch = 256},
47 {.offset = 14336, .pitch = 256},
48 {.offset = 15360, .pitch = 256},
49 {.offset = 15872, .pitch = 256},
67 {.offset = 0, .pitch = 4096},
68 {.offset = 65536, .pitch = 2048},
69 {.offset = 98304, .pitch = 1024},
70 {.offset = 114688, .pitch = 512},
[all …]
Dfd5_layout_test.c47 {.offset = 0, .pitch = 256},
48 {.offset = 8192, .pitch = 256},
49 {.offset = 12288, .pitch = 256},
50 {.offset = 14336, .pitch = 256},
51 {.offset = 15360, .pitch = 256},
52 {.offset = 15872, .pitch = 256},
72 {.offset = 0, .pitch = 256},
73 {.offset = 135168, .pitch = 256},
74 {.offset = 176128, .pitch = 256},
75 {.offset = 192512, .pitch = 256},
[all …]
/third_party/gstreamer/gstplugins_bad/ext/soundtouch/
Dgstpitch.cc108 static gboolean gst_pitch_setcaps (GstPitch * pitch, GstCaps * caps);
123 GST_ELEMENT_REGISTER_DEFINE (pitch, "pitch", GST_RANK_NONE,
177 gst_pitch_init (GstPitch * pitch) in gst_pitch_init() argument
179 pitch->priv = (GstPitchPrivate *) gst_pitch_get_instance_private (pitch); in gst_pitch_init()
181 pitch->sinkpad = in gst_pitch_init()
183 gst_pad_set_chain_function (pitch->sinkpad, in gst_pitch_init()
185 gst_pad_set_event_function (pitch->sinkpad, in gst_pitch_init()
187 GST_PAD_SET_PROXY_CAPS (pitch->sinkpad); in gst_pitch_init()
188 gst_element_add_pad (GST_ELEMENT (pitch), pitch->sinkpad); in gst_pitch_init()
190 pitch->srcpad = in gst_pitch_init()
[all …]
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/
DMusicKeyboardView.java136 int pitch = mLowestPitch + i; in onSizeChanged() local
137 if (!isPitchBlack(pitch)) { in onSizeChanged()
157 int pitch = mLowestPitch + i; in makeBlackRectangles() local
158 int note = pitch % NOTES_PER_OCTAVE; in makeBlackRectangles()
182 int pitch = mLowestPitch + i; in onDraw() local
183 int note = pitch % NOTES_PER_OCTAVE; in onDraw()
186 Paint paint = mNotesOnByPitch[pitch] ? mWhiteOnKeyPaint in onDraw()
196 int pitch = mLowestPitch + i; in onDraw() local
197 int note = pitch % NOTES_PER_OCTAVE; in onDraw()
200 Paint paint = mNotesOnByPitch[pitch] ? mBlackOnKeyPaint in onDraw()
[all …]
/third_party/ffmpeg/libavcodec/
Divi_dsp.h67 void ff_ivi_inverse_haar_8x8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
69 void ff_ivi_inverse_haar_8x1(const int32_t *in, int16_t *out, uint32_t pitch,
71 void ff_ivi_inverse_haar_1x8(const int32_t *in, int16_t *out, uint32_t pitch,
84 void ff_ivi_row_haar8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
97 void ff_ivi_col_haar8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
110 void ff_ivi_inverse_haar_4x4(const int32_t *in, int16_t *out, ptrdiff_t pitch,
123 void ff_ivi_row_haar4(const int32_t *in, int16_t *out, ptrdiff_t pitch,
136 void ff_ivi_col_haar4(const int32_t *in, int16_t *out, ptrdiff_t pitch,
149 void ff_ivi_dc_haar_2d(const int32_t *in, int16_t *out, ptrdiff_t pitch,
162 void ff_ivi_inverse_slant_8x8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
[all …]
Divi_dsp.c40 ptrdiff_t pitch, back_pitch; in ff_ivi_recompose53() local
45 pitch = plane->bands[0].pitch; in ff_ivi_recompose53()
59 pitch= 0; in ff_ivi_recompose53()
63 b0_2 = b0_ptr[pitch]; in ff_ivi_recompose53()
69 b1_3 = b1_1 - b1_2*6 + b1_ptr[pitch]; in ff_ivi_recompose53()
75 b2_5 = b2_ptr[pitch]; // b2[x ,y+1] in ff_ivi_recompose53()
84 b3_8 = b3_2 - b3_5*6 + b3_ptr[pitch]; in ff_ivi_recompose53()
116 b0_2 = b0_ptr[pitch+indx+1]; in ff_ivi_recompose53()
133 b1_3 = b1_1 - b1_2*6 + b1_ptr[pitch+indx+1]; in ff_ivi_recompose53()
144 b2_6 = b2_ptr[pitch+indx+1]; in ff_ivi_recompose53()
[all …]
/third_party/freetype/src/base/
Dftbitmap.c70 FT_Int pitch; in FT_Bitmap_Copy() local
85 source_pitch_sign = source->pitch < 0 ? -1 : 1; in FT_Bitmap_Copy()
86 target_pitch_sign = target->pitch < 0 ? -1 : 1; in FT_Bitmap_Copy()
92 target->pitch = -target->pitch; in FT_Bitmap_Copy()
98 pitch = source->pitch; in FT_Bitmap_Copy()
100 if ( pitch < 0 ) in FT_Bitmap_Copy()
101 pitch = -pitch; in FT_Bitmap_Copy()
102 size = (FT_ULong)pitch * source->rows; in FT_Bitmap_Copy()
106 FT_Int target_pitch = target->pitch; in FT_Bitmap_Copy()
139 t += (FT_ULong)pitch * ( target->rows - 1 ); in FT_Bitmap_Copy()
[all …]
Dftlcdfil.c83 FT_Int pitch = bitmap->pitch; in ft_lcd_filter_fir() local
89 if ( pitch > 0 && height > 0 ) in ft_lcd_filter_fir()
90 origin += pitch * (FT_Int)( height - 1 ); in ft_lcd_filter_fir()
101 for ( ; height > 0; height--, line -= pitch ) in ft_lcd_filter_fir()
152 col -= pitch; in ft_lcd_filter_fir()
159 col -= pitch; in ft_lcd_filter_fir()
161 for ( yy = 2; yy < height; yy++, col -= pitch ) in ft_lcd_filter_fir()
170 col[pitch * 2] = FT_SHIFTCLAMP( fir[0] ); in ft_lcd_filter_fir()
173 col[pitch * 2] = FT_SHIFTCLAMP( fir[1] ); in ft_lcd_filter_fir()
174 col[pitch] = FT_SHIFTCLAMP( fir[2] ); in ft_lcd_filter_fir()
[all …]
/third_party/skia/third_party/externals/freetype/src/base/
Dftbitmap.c70 FT_Int pitch; in FT_Bitmap_Copy() local
85 source_pitch_sign = source->pitch < 0 ? -1 : 1; in FT_Bitmap_Copy()
86 target_pitch_sign = target->pitch < 0 ? -1 : 1; in FT_Bitmap_Copy()
92 target->pitch = -target->pitch; in FT_Bitmap_Copy()
98 pitch = source->pitch; in FT_Bitmap_Copy()
100 if ( pitch < 0 ) in FT_Bitmap_Copy()
101 pitch = -pitch; in FT_Bitmap_Copy()
102 size = (FT_ULong)pitch * source->rows; in FT_Bitmap_Copy()
106 FT_Int target_pitch = target->pitch; in FT_Bitmap_Copy()
139 t += (FT_ULong)pitch * ( target->rows - 1 ); in FT_Bitmap_Copy()
[all …]
Dftlcdfil.c83 FT_Int pitch = bitmap->pitch; in ft_lcd_filter_fir() local
89 if ( pitch > 0 && height > 0 ) in ft_lcd_filter_fir()
90 origin += pitch * (FT_Int)( height - 1 ); in ft_lcd_filter_fir()
101 for ( ; height > 0; height--, line -= pitch ) in ft_lcd_filter_fir()
152 col -= pitch; in ft_lcd_filter_fir()
159 col -= pitch; in ft_lcd_filter_fir()
161 for ( yy = 2; yy < height; yy++, col -= pitch ) in ft_lcd_filter_fir()
170 col[pitch * 2] = FT_SHIFTCLAMP( fir[0] ); in ft_lcd_filter_fir()
173 col[pitch * 2] = FT_SHIFTCLAMP( fir[1] ); in ft_lcd_filter_fir()
174 col[pitch] = FT_SHIFTCLAMP( fir[2] ); in ft_lcd_filter_fir()
[all …]
/third_party/flutter/skia/third_party/externals/freetype/src/base/
Dftbitmap.c71 FT_Int pitch; in FT_Bitmap_Copy() local
86 source_pitch_sign = source->pitch < 0 ? -1 : 1; in FT_Bitmap_Copy()
87 target_pitch_sign = target->pitch < 0 ? -1 : 1; in FT_Bitmap_Copy()
93 target->pitch = -target->pitch; in FT_Bitmap_Copy()
99 pitch = source->pitch; in FT_Bitmap_Copy()
101 if ( pitch < 0 ) in FT_Bitmap_Copy()
102 pitch = -pitch; in FT_Bitmap_Copy()
103 size = (FT_ULong)pitch * source->rows; in FT_Bitmap_Copy()
107 FT_Int target_pitch = target->pitch; in FT_Bitmap_Copy()
140 t += (FT_ULong)pitch * ( target->rows - 1 ); in FT_Bitmap_Copy()
[all …]
Dftlcdfil.c84 FT_Int pitch = bitmap->pitch; in ft_lcd_filter_fir() local
90 if ( pitch > 0 && height > 0 ) in ft_lcd_filter_fir()
91 origin += pitch * (FT_Int)( height - 1 ); in ft_lcd_filter_fir()
102 for ( ; height > 0; height--, line -= pitch ) in ft_lcd_filter_fir()
153 col -= pitch; in ft_lcd_filter_fir()
160 col -= pitch; in ft_lcd_filter_fir()
162 for ( yy = 2; yy < height; yy++, col -= pitch ) in ft_lcd_filter_fir()
171 col[pitch * 2] = FT_SHIFTCLAMP( fir[0] ); in ft_lcd_filter_fir()
174 col[pitch * 2] = FT_SHIFTCLAMP( fir[1] ); in ft_lcd_filter_fir()
175 col[pitch] = FT_SHIFTCLAMP( fir[2] ); in ft_lcd_filter_fir()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DSurface.cpp1188 …SurfaceImplementation(int width, int height, int depth, Format format, void *pixels, int pitch, in… in SurfaceImplementation() argument
1189 : Surface(width, height, depth, format, pixels, pitch, slice) {} in SurfaceImplementation()
1205 …Surface *Surface::create(int width, int height, int depth, Format format, void *pixels, int pitch,… in create() argument
1207 return new SurfaceImplementation(width, height, depth, format, pixels, pitch, slice); in create()
1215 …Surface::Surface(int width, int height, int depth, Format format, void *pixels, int pitch, int sli… in Surface() argument
1229 external.pitchB = pitch; in Surface()
1230 external.pitchP = external.bytes ? pitch / external.bytes : 0; in Surface()
3793 int pitch = internal.pitchB; in resolve() local
3834 source0 += pitch; in resolve()
3835 source1 += pitch; in resolve()
[all …]
DETC_Decoder.cpp92 …ces, unsigned char *dest, int nbChannels, int x, int y, int w, int h, int pitch, bool isSigned, bo… in DecodeBlock()
106 dest += pitch; in DecodeBlock()
123 sDst += pitch; in DecodeBlock()
137 dest += pitch; in DecodeBlock()
144 …void decodeBlock(unsigned char *dest, int x, int y, int w, int h, int pitch, unsigned char alphaVa… in decodeBlock()
157 decodeTBlock(dest, x, y, w, h, pitch, alphaValues, nonOpaquePunchThroughAlpha); in decodeBlock()
161 decodeHBlock(dest, x, y, w, h, pitch, alphaValues, nonOpaquePunchThroughAlpha); in decodeBlock()
165 decodePlanarBlock(dest, x, y, w, h, pitch, alphaValues); in decodeBlock()
169 decodeDifferentialBlock(dest, x, y, w, h, pitch, alphaValues, nonOpaquePunchThroughAlpha); in decodeBlock()
174 decodeIndividualBlock(dest, x, y, w, h, pitch, alphaValues, nonOpaquePunchThroughAlpha); in decodeBlock()
[all …]
/third_party/ffmpeg/libavcodec/mips/
Dvp8_lpf_msa.c297 void ff_vp8_v_loop_filter16_msa(uint8_t *src, ptrdiff_t pitch, int b_limit_in, in ff_vp8_v_loop_filter16_msa() argument
308 temp_src = src - (pitch << 2); in ff_vp8_v_loop_filter16_msa()
309 LD_UB8(temp_src, pitch, p3, p2, p1, p0, q0, q1, q2, q3); in ff_vp8_v_loop_filter16_msa()
314 temp_src = src - 3 * pitch; in ff_vp8_v_loop_filter16_msa()
315 ST_UB4(p2, p1, p0, q0, temp_src, pitch); in ff_vp8_v_loop_filter16_msa()
316 temp_src += (4 * pitch); in ff_vp8_v_loop_filter16_msa()
317 ST_UB2(q1, q2, temp_src, pitch); in ff_vp8_v_loop_filter16_msa()
321 ptrdiff_t pitch, int b_limit_in, int limit_in, in ff_vp8_v_loop_filter8uv_msa() argument
335 temp_src = src_u - (pitch << 2); in ff_vp8_v_loop_filter8uv_msa()
336 LD_UB8(temp_src, pitch, p3_u, p2_u, p1_u, p0_u, q0_u, q1_u, q2_u, q3_u); in ff_vp8_v_loop_filter8uv_msa()
[all …]
Dvp9_lpf_msa.c196 void ff_loop_filter_v_4_8_msa(uint8_t *src, ptrdiff_t pitch, in ff_loop_filter_v_4_8_msa() argument
206 LD_UB8((src - 4 * pitch), pitch, p3, p2, p1, p0, q0, q1, q2, q3); in ff_loop_filter_v_4_8_msa()
221 SD4(p1_d, p0_d, q0_d, q1_d, (src - 2 * pitch), pitch); in ff_loop_filter_v_4_8_msa()
225 void ff_loop_filter_v_44_16_msa(uint8_t *src, ptrdiff_t pitch, in ff_loop_filter_v_44_16_msa() argument
234 LD_UB8((src - 4 * pitch), pitch, p3, p2, p1, p0, q0, q1, q2, q3); in ff_loop_filter_v_44_16_msa()
252 ST_UB4(p1, p0, q0, q1, (src - 2 * pitch), pitch); in ff_loop_filter_v_44_16_msa()
255 void ff_loop_filter_v_8_8_msa(uint8_t *src, ptrdiff_t pitch, in ff_loop_filter_v_8_8_msa() argument
270 LD_UB8((src - 4 * pitch), pitch, p3, p2, p1, p0, q0, q1, q2, q3); in ff_loop_filter_v_8_8_msa()
290 SD4(p1_d, p0_d, q0_d, q1_d, (src - 2 * pitch), pitch); in ff_loop_filter_v_8_8_msa()
319 src -= 3 * pitch; in ff_loop_filter_v_8_8_msa()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_fillrect.c61 SDL_FillRect##bpp##SSE(Uint8 *pixels, int pitch, Uint32 color, int w, int h) \
92 pixels += pitch; \
99 SDL_FillRect1SSE(Uint8 *pixels, int pitch, Uint32 color, int w, int h) in SDL_FillRect1SSE() argument
121 pixels += pitch; in SDL_FillRect1SSE()
134 SDL_FillRect1(Uint8 * pixels, int pitch, Uint32 color, int w, int h) in SDL_FillRect1() argument
168 pixels += pitch; in SDL_FillRect1()
173 SDL_FillRect2(Uint8 * pixels, int pitch, Uint32 color, int w, int h) in SDL_FillRect2() argument
192 pixels += pitch; in SDL_FillRect2()
197 SDL_FillRect3(Uint8 * pixels, int pitch, Uint32 color, int w, int h) in SDL_FillRect3() argument
220 pixels += pitch; in SDL_FillRect3()
[all …]
/third_party/typescript/tests/baselines/reference/
Drecur1.types16 var cobalt = new cobalt.pitch();
18 >new cobalt.pitch() : any
19 >cobalt.pitch : any
21 >pitch : any
23 cobalt.pitch = function() {}
24 >cobalt.pitch = function() {} : () => void
25 >cobalt.pitch : any
27 >pitch : any
/third_party/mesa3d/src/mesa/drivers/dri/i915/
Dintel_blit.c270 if (src_mt->region->pitch > 32768 || in intel_miptree_blit()
271 dst_mt->region->pitch > 32768) { in intel_miptree_blit()
282 int src_pitch = src_mt->region->pitch; in intel_miptree_blit()
303 dst_mt->region->pitch, in intel_miptree_blit()
380 int pitch, cpp; in intelClearWithBlit() local
401 pitch = region->pitch; in intelClearWithBlit()
406 region->bo, pitch, in intelClearWithBlit()
424 BR13 |= pitch; in intelClearWithBlit()
582 GLuint pitch, height; in intel_emit_linear_blit() local
589 pitch = ROUND_DOWN_TO(MIN2(size, (1 << 15) - 1), 4); in intel_emit_linear_blit()
[all …]
Dintel_regions.c58 GLuint width, GLuint height, GLuint pitch, in intel_region_alloc_internal() argument
70 region->pitch = pitch; in intel_region_alloc_internal()
125 GLuint width, GLuint height, GLuint pitch, in intel_region_alloc_for_handle() argument
145 width, height, pitch, tiling, buffer); in intel_region_alloc_for_handle()
159 GLuint width, GLuint height, GLuint pitch, in intel_region_alloc_for_fd() argument
180 width, height, pitch, tiling, buffer); in intel_region_alloc_for_fd()
267 uint32_t pitch = region->pitch; in intel_region_get_aligned_offset() local
274 return y * pitch + x * cpp; in intel_region_get_aligned_offset()
278 return y * pitch + x / (512 / cpp) * 4096; in intel_region_get_aligned_offset()
282 return y * pitch + x / (128 / cpp) * 4096; in intel_region_get_aligned_offset()
/third_party/mesa3d/src/mesa/drivers/dri/nouveau/
Dnouveau_surface.c50 .pitch = _mesa_format_row_stride(format, width), in nouveau_surface_alloc()
54 s->pitch = align(s->pitch, 256); in nouveau_surface_alloc()
55 config.nv04.surf_pitch = s->pitch; in nouveau_surface_alloc()
66 s->pitch = align(s->pitch, 64); in nouveau_surface_alloc()
70 get_format_blocksy(format, height) * s->pitch, in nouveau_surface_alloc()
86 dst->pitch = src->pitch; in nouveau_surface_ref()
/third_party/freetype/src/cache/
Dftcsbits.c47 FT_Int pitch = bitmap->pitch; in ftc_sbit_copy_bitmap() local
51 if ( pitch < 0 ) in ftc_sbit_copy_bitmap()
52 pitch = -pitch; in ftc_sbit_copy_bitmap()
54 size = (FT_ULong)pitch * bitmap->rows; in ftc_sbit_copy_bitmap()
159 !CHECK_CHAR( bitmap->pitch ) || in ftc_snode_load()
172 sbit->pitch = (FT_Char)bitmap->pitch; in ftc_snode_load()
185 *asize = (FT_ULong)FT_ABS( sbit->pitch ) * sbit->height; in ftc_snode_load()
286 FT_Int pitch; in ftc_snode_weight() local
301 pitch = sbit->pitch; in ftc_snode_weight()
302 if ( pitch < 0 ) in ftc_snode_weight()
[all …]
/third_party/flutter/skia/third_party/externals/freetype/src/cache/
Dftcsbits.c48 FT_Int pitch = bitmap->pitch; in ftc_sbit_copy_bitmap() local
52 if ( pitch < 0 ) in ftc_sbit_copy_bitmap()
53 pitch = -pitch; in ftc_sbit_copy_bitmap()
55 size = (FT_ULong)pitch * bitmap->rows; in ftc_sbit_copy_bitmap()
160 !CHECK_CHAR( bitmap->pitch ) || in ftc_snode_load()
173 sbit->pitch = (FT_Char)bitmap->pitch; in ftc_snode_load()
186 *asize = (FT_ULong)FT_ABS( sbit->pitch ) * sbit->height; in ftc_snode_load()
287 FT_Int pitch; in ftc_snode_weight() local
302 pitch = sbit->pitch; in ftc_snode_weight()
303 if ( pitch < 0 ) in ftc_snode_weight()
[all …]
/third_party/skia/third_party/externals/freetype/src/cache/
Dftcsbits.c47 FT_Int pitch = bitmap->pitch; in ftc_sbit_copy_bitmap() local
51 if ( pitch < 0 ) in ftc_sbit_copy_bitmap()
52 pitch = -pitch; in ftc_sbit_copy_bitmap()
54 size = (FT_ULong)pitch * bitmap->rows; in ftc_sbit_copy_bitmap()
155 !CHECK_SHRT( bitmap->pitch ) || in ftc_snode_load()
168 sbit->pitch = (FT_Short)bitmap->pitch; in ftc_snode_load()
190 *asize = (FT_ULong)FT_ABS( sbit->pitch ) * sbit->height; in ftc_snode_load()
291 FT_Int pitch; in ftc_snode_weight() local
306 pitch = sbit->pitch; in ftc_snode_weight()
307 if ( pitch < 0 ) in ftc_snode_weight()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Device/
DETC_Decoder.cpp91 …ces, unsigned char *dest, int nbChannels, int x, int y, int w, int h, int pitch, bool isSigned, bo… in DecodeBlock()
105 dest += pitch; in DecodeBlock()
122 sDst += pitch; in DecodeBlock()
136 dest += pitch; in DecodeBlock()
143 …void decodeBlock(unsigned char *dest, int x, int y, int w, int h, int pitch, unsigned char alphaVa… in decodeBlock()
156 decodeTBlock(dest, x, y, w, h, pitch, alphaValues, nonOpaquePunchThroughAlpha); in decodeBlock()
160 decodeHBlock(dest, x, y, w, h, pitch, alphaValues, nonOpaquePunchThroughAlpha); in decodeBlock()
164 decodePlanarBlock(dest, x, y, w, h, pitch, alphaValues); in decodeBlock()
168 decodeDifferentialBlock(dest, x, y, w, h, pitch, alphaValues, nonOpaquePunchThroughAlpha); in decodeBlock()
173 decodeIndividualBlock(dest, x, y, w, h, pitch, alphaValues, nonOpaquePunchThroughAlpha); in decodeBlock()
[all …]

12345678910>>...24