HomeSort by relevance Sort by last modified time
    Searched defs:pitch (Results 1 - 25 of 316) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glx/
dri2.h 43 unsigned int pitch; member in struct:__anon27662
  /hardware/intel/common/libva/va/x11/
va_dri2.h 44 unsigned int pitch; member in struct:__anon40543
  /frameworks/wilhelm/src/itf/
IPitch.cpp 17 /* Pitch implementation */
22 static SLresult IPitch_SetPitch(SLPitchItf self, SLpermille pitch)
28 if (!(thiz->mMinPitch <= pitch && pitch <= thiz->mMaxPitch)) {
32 thiz->mPitch = pitch;
50 SLpermille pitch = thiz->mPitch; local
52 *pPitch = pitch;
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Pyramid.h 38 real pitch; // Pitch. Used for moving through image efficiently. member in class:PyramidShort
  /bootable/recovery/minui/
graphics_adf.h 29 __u32 pitch; member in class:GRSurfaceAdf
  /external/freetype/src/raster/
ftrend1.c 108 FT_UInt width, height, pitch; local
190 pitch = ( ( width + 15 ) >> 4 ) << 1;
195 bitmap->pitch = (int)pitch;
197 if ( FT_ALLOC_MULT( bitmap->buffer, pitch, height ) )
  /external/libdrm/tests/planetest/
bo.h 21 uint32_t pitch; member in struct:sp_bo
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_transfer.h 11 uint32_t pitch; member in struct:nv50_m2mf_rect
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
x11_screen.h 47 unsigned int pitch; member in struct:x11_drawable_buffer
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex_subimage.c 56 unsigned long pitch; local
98 &pitch,
111 dstRowStride = pitch;
129 unsigned int dst_pitch = intelImage->mt->region->pitch *
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_surface.h 43 unsigned cpp, pitch; member in struct:nouveau_surface
nv20_state_fb.c 60 unsigned pitch = align(fb->Width, 128), local
62 size = pitch * height;
71 PUSH_DATA (push, pitch);
98 rt_pitch = s->pitch;
111 zeta_pitch = s->pitch;
  /external/pdfium/third_party/freetype/src/raster/
ftrend1.c 108 FT_UInt width, height, pitch; local
190 pitch = ( ( width + 15 ) >> 4 ) << 1;
195 bitmap->pitch = (int)pitch;
197 if ( FT_ALLOC_MULT( bitmap->buffer, pitch, height ) )
  /external/libdrm/libkms/
exynos.c 64 unsigned size, pitch; local
84 pitch = 64 * 4;
87 pitch = width * 4;
88 pitch = (pitch + 512 - 1) & ~(512 - 1);
89 size = pitch * ((height + 4 - 1) & ~(4 - 1));
104 bo->base.pitch = pitch;
intel.c 78 unsigned size, pitch; local
98 pitch = 64 * 4;
101 pitch = width * 4;
102 pitch = (pitch + 512 - 1) & ~(512 - 1);
103 size = pitch * ((height + 4 - 1) & ~(4 - 1));
119 bo->base.pitch = pitch;
122 if (type == KMS_BO_TYPE_SCANOUT_X8R8G8B8 && pitch > 512) {
128 tile.stride = bo->base.pitch;
    [all...]
internal.h 66 size_t pitch; member in struct:kms_bo
nouveau.c 79 unsigned size, pitch; local
99 pitch = 64 * 4;
102 pitch = width * 4;
103 pitch = (pitch + 512 - 1) & ~(512 - 1);
104 size = pitch * height;
125 bo->base.pitch = pitch;
radeon.c 81 unsigned size, pitch; local
98 pitch = 4 * 64;
102 pitch = width * 4;
103 pitch = (pitch + ALIGNMENT - 1) & ~(ALIGNMENT - 1);
104 size = pitch * height;
129 bo->base.pitch = pitch;
  /external/libdrm/tests/modetest/
buffers.c 53 size_t pitch; member in struct:bo
90 bo->pitch = arg.pitch;
245 pitches[0] = bo->pitch;
256 pitches[0] = bo->pitch;
269 pitches[0] = bo->pitch;
320 pitches[0] = bo->pitch;
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_resource.h 12 uint32_t pitch; member in struct:nv30_surface
26 uint32_t pitch; member in struct:nv30_miptree_level
nv30_transfer.h 8 unsigned pitch; member in struct:nv30_rect
  /external/drm_gralloc/
gralloc_drm_rockchip.c 43 int ret, cpp, pitch, aligned_width, aligned_height; local
64 pitch = ALIGN(aligned_width * cpp, 64);
65 size = aligned_height * pitch;
106 handle->height, pitch, cpp, size);
123 handle->stride = pitch;
  /external/freetype/src/base/
ftlcdfil.c 50 if ( bitmap->pitch < 0 )
51 line -= bitmap->pitch * (FT_Int)( bitmap->rows - 1 );
56 for ( ; height > 0; height--, line += bitmap->pitch )
110 FT_Int pitch = bitmap->pitch; local
114 if ( bitmap->pitch < 0 )
115 column -= bitmap->pitch * (FT_Int)( bitmap->rows - 1 );
129 col += pitch;
136 col += pitch;
152 col[-2 * pitch] = (FT_Byte)pix
183 FT_Int pitch = bitmap->pitch; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_fetch_shade_emit.c 56 unsigned pitch[PIPE_MAX_ATTRIBS]; member in struct:fetch_shade_emit
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_sampler.c 302 uint format, pitch; local
315 pitch = tex->stride;
318 assert(pitch);
338 ((((pitch / 4) - 1) << MS4_PITCH_SHIFT)

Completed in 1813 milliseconds

1 2 3 4 5 6 7 8 91011>>