HomeSort by relevance Sort by last modified time
    Searched defs:pitch (Results 51 - 75 of 230) sorted by null

1 23 4 5 6 7 8 910

  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_yuv.c 212 int pitch; local
215 ret = surface->Lock (surface, DSLF_READ | DSLF_WRITE, &data, &pitch);
222 /* Find the pitch and offset values for the overlay */
223 overlay->pitches[0] = (Uint16) pitch;
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbmatrox.c 124 int pitch, w, h; local
133 if ( dst->pitch != SDL_VideoSurface->pitch ) {
156 pitch = dst->pitch/dst->format->BytesPerPixel;
170 stop = start = (srcY * pitch) + srcX;
177 skip = -pitch;
179 skip = pitch;
  /external/qemu-pc-bios/vgabios/
vbetables-gen.c 94 int pages, pitch; local
105 pitch = (pm->width + 7) / 8;
107 pitch = pm->width * ((pm->depth + 7) / 8);
108 pages = vram_size / (pm->height * pitch);
143 printf("/*Bit16u BytesPerScanLine*/ %d,\n", pitch);
157 (pm->height * pitch + 65535) / 65536);
250 printf("/*Bit16u LinBytesPerScanLine*/ %d,\n", pitch);
  /external/sonivox/arm-fm-22k/lib_src/
eas_fmsynth.h 53 EAS_I16 pitch; /* operator pitch in cents */ member in struct:s_operator_tag
eas_fmengine.h 100 EAS_I16 pitch[4]; /* new pitch value */ member in struct:__anon28053
eas_fmsynth.c 511 * - the given channel's static gain and static pitch are updated
531 /* calculate pitch bend */
544 /* save static pitch */
731 EAS_I32 pitch; local
739 /* base pitch in cents */
740 pitch = pVoice->note * 100;
745 /* multiply by LFO output to get final pitch modulation */
768 temp += pitch;
769 pFMVoice->oper[operIndex].pitch = (EAS_I16) temp;
891 vFrame.pitch[oper] = pFMVoice->oper[oper].pitch
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_fmsynth.h 53 EAS_I16 pitch; /* operator pitch in cents */ member in struct:s_operator_tag
eas_fmengine.h 100 EAS_I16 pitch[4]; /* new pitch value */ member in struct:__anon28103
eas_fmsynth.c 511 * - the given channel's static gain and static pitch are updated
531 /* calculate pitch bend */
544 /* save static pitch */
731 EAS_I32 pitch; local
739 /* base pitch in cents */
740 pitch = pVoice->note * 100;
745 /* multiply by LFO output to get final pitch modulation */
768 temp += pitch;
769 pFMVoice->oper[operIndex].pitch = (EAS_I16) temp;
891 vFrame.pitch[oper] = pFMVoice->oper[oper].pitch
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
vad1.h 115 /* Note that each of the following three variables (vadreg, pitch and tone)
119 Word16 pitch; /* flags for pitch detection */ member in struct:__anon31423
124 Word16 oldlag_count, oldlag; /* variables for pitch detection */
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PlatformSpeechSynthesisUtterance.h 65 float pitch() const { return m_pitch; } function in class:WebCore::PlatformSpeechSynthesisUtterance
66 void setPitch(float pitch) { m_pitch = std::max(std::min(2.0f, pitch), 0.0f); }
  /external/chromium_org/third_party/freetype/src/smooth/
ftsmooth.c 108 FT_UInt width, height, pitch; local
182 pitch = width;
186 pitch = FT_PAD_CEIL( width, 4 );
208 pitch = FT_PAD_CEIL( width, 4 );
224 /* Required check is ( pitch * height < FT_ULONG_MAX ), */
225 /* but we care realistic cases only. Always pitch <= width. */
239 bitmap->pitch = pitch;
244 if ( FT_ALLOC( bitmap->buffer, (FT_ULong)pitch * height ) )
306 for ( hh = height_org; hh > 0; hh--, line += pitch )
    [all...]
  /external/chromium_org/third_party/libva/va/x11/
va_dricommon.h 54 unsigned int pitch; member in struct:dri_buffer::__anon13971
  /external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
platform_drm.c 185 int i, name, pitch; local
208 dri2_dpy->image->queryImage(bo->image, __DRI_IMAGE_ATTRIB_STRIDE, &pitch);
212 buffer->pitch = pitch;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_regions.c 170 GLuint width, GLuint height, GLuint pitch,
182 region->pitch = pitch;
241 GLuint width, GLuint height, GLuint pitch,
253 region->cpp != cpp || region->pitch != pitch) {
275 width, height, pitch, tiling, buffer);
380 uint32_t src_pitch = src->pitch;
395 dst->pitch, dst->bo, dst_offset, dst->tiling,
443 uint32_t pitch = region->pitch * cpp local
    [all...]
intel_regions.h 56 * - Buffer dimensions - pitch and height.
66 GLuint pitch; /**< in pixels */ member in struct:intel_region
89 GLuint width, GLuint height, GLuint pitch,
  /external/freetype/include/freetype/
ftcache.h 896 FT_Short pitch; member in struct:FTC_SBitRec_
    [all...]
  /external/freetype/src/cache/
ftcsbits.c 48 FT_Int pitch = bitmap->pitch; local
52 if ( pitch < 0 )
53 pitch = -pitch;
55 size = (FT_ULong)( pitch * bitmap->rows );
158 !CHECK_CHAR( bitmap->pitch ) ||
171 sbit->pitch = (FT_Char)bitmap->pitch;
184 *asize = FT_ABS( sbit->pitch ) * sbit->height
285 FT_Int pitch; local
    [all...]
  /external/freetype/src/smooth/
ftsmooth.c 108 FT_Pos width, height, pitch; local
193 pitch = width;
197 pitch = FT_PAD_CEIL( width, 4 );
219 pitch = FT_PAD_CEIL( width, 4 );
235 /* Required check is (pitch * height < FT_ULONG_MAX), */
236 /* but we care realistic cases only. Always pitch <= width. */
251 bitmap->pitch = pitch;
257 if ( FT_ALLOC( bitmap->buffer, (FT_ULong)pitch * height ) )
326 for ( hh = height_org; hh > 0; hh--, line += pitch )
    [all...]
  /external/mesa3d/src/egl/drivers/dri2/
platform_drm.c 185 int i, name, pitch; local
208 dri2_dpy->image->queryImage(bo->image, __DRI_IMAGE_ATTRIB_STRIDE, &pitch);
212 buffer->pitch = pitch;
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_regions.c 170 GLuint width, GLuint height, GLuint pitch,
182 region->pitch = pitch;
241 GLuint width, GLuint height, GLuint pitch,
253 region->cpp != cpp || region->pitch != pitch) {
275 width, height, pitch, tiling, buffer);
380 uint32_t src_pitch = src->pitch;
395 dst->pitch, dst->bo, dst_offset, dst->tiling,
443 uint32_t pitch = region->pitch * cpp local
    [all...]
intel_regions.h 56 * - Buffer dimensions - pitch and height.
66 GLuint pitch; /**< in pixels */ member in struct:intel_region
89 GLuint width, GLuint height, GLuint pitch,
  /external/qemu/android/
framebuffer.c 82 int pitch, bytes_per_pixel, bits_per_pixel; local
89 pitch = _get_pitch( width, format );
90 if (pitch < 0)
107 qfbuff->pixels = calloc( pitch, height );
108 if (qfbuff->pixels == NULL && (height > 0 && pitch > 0)) {
115 qfbuff->pitch = pitch;
203 qfbuff->pitch = _get_pitch( qfbuff->width, qfbuff->format );
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
me_utils.cpp 222 Int pitch, width, height; local
227 pitch = refVop->pitch;
239 dst = src - (pitch << 4);
258 M4VENC_MEMCPY(dst + pitch, dst, pitch);
259 dst += pitch;
263 dst += (pitch + 16);
285 src += pitch;
294 M4VENC_MEMCPY(dst, dst - pitch, pitch)
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
ImageUtils.h 146 unsigned short pitch; member in struct:__anon35161

Completed in 699 milliseconds

1 23 4 5 6 7 8 910