HomeSort by relevance Sort by last modified time
    Searched refs:pitch (Results 76 - 100 of 315) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/wilhelm/src/itf/
I3DMacroscopic.c 70 SLmillidegree heading, SLmillidegree pitch, SLmillidegree roll)
75 (-90000 <= pitch) && (pitch <= 90000) &&
82 thiz->mOrientationAngles.mPitch = pitch;
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
ImageUtils.h 146 unsigned short pitch; member in struct:__anon22218
Pyramid.h 38 real pitch; // Pitch. Used for moving through image efficiently. member in class:PyramidShort
  /packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic/
ImageUtils.h 146 unsigned short pitch; member in struct:__anon22225
Pyramid.h 38 real pitch; // Pitch. Used for moving through image efficiently. member in class:PyramidShort
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
ImageUtils.h 146 unsigned short pitch; member in struct:__anon22232
Pyramid.h 38 real pitch; // Pitch. Used for moving through image efficiently. member in class:PyramidShort
  /external/libvpx/armv7a/
vpx_rtcd.h 71 void vp8_short_idct4x4llm_c(short *input, unsigned char *pred, int pitch, unsigned char *dst, int dst_stride);
72 void vp8_short_idct4x4llm_v6_dual(short *input, unsigned char *pred, int pitch, unsigned char *dst, int dst_stride);
260 void vp8_short_fdct4x4_c(short *input, short *output, int pitch);
261 void vp8_short_fdct4x4_armv6(short *input, short *output, int pitch);
264 void vp8_short_fdct8x4_c(short *input, short *output, int pitch);
265 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch);
268 void vp8_short_walsh4x4_c(short *input, short *output, int pitch);
269 void vp8_short_walsh4x4_armv6(short *input, short *output, int pitch);
303 void vp8_subtract_b_c(struct block *be, struct blockd *bd, int pitch);
304 void vp8_subtract_b_armv6(struct block *be, struct blockd *bd, int pitch);
    [all...]
  /external/libvpx/armv7a-neon/
vpx_rtcd.h 83 void vp8_short_idct4x4llm_c(short *input, unsigned char *pred, int pitch, unsigned char *dst, int dst_stride);
84 void vp8_short_idct4x4llm_v6_dual(short *input, unsigned char *pred, int pitch, unsigned char *dst, int dst_stride);
85 void vp8_short_idct4x4llm_neon(short *input, unsigned char *pred, int pitch, unsigned char *dst, int dst_stride);
302 void vp8_short_fdct4x4_c(short *input, short *output, int pitch);
303 void vp8_short_fdct4x4_armv6(short *input, short *output, int pitch);
304 void vp8_short_fdct4x4_neon(short *input, short *output, int pitch);
307 void vp8_short_fdct8x4_c(short *input, short *output, int pitch);
308 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch);
309 void vp8_short_fdct8x4_neon(short *input, short *output, int pitch);
312 void vp8_short_walsh4x4_c(short *input, short *output, int pitch);
    [all...]
  /external/quake/quake/src/QW/client/
view.c 179 Moves the client pitch angle towards cl.idealpitch sent by the server.
181 If the user is adjusting pitch manually, either with lookup/lookdown,
182 mlook and mouse, or klook and keyboard, pitch drifting is constantly stopped.
214 delta = 0 - cl.viewangles[PITCH];
234 cl.viewangles[PITCH] += move;
243 cl.viewangles[PITCH] -= move;
724 float yaw, pitch, move; local
729 pitch = -r_refdef.viewangles[PITCH];
736 pitch = angledelta(-pitch - r_refdef.viewangles[PITCH]) * 0.4
    [all...]
  /external/quake/quake/src/WinQuake/
view.cpp 173 Moves the client pitch angle towards cl.idealpitch sent by the server.
175 If the user is adjusting pitch manually, either with lookup/lookdown,
176 mlook and mouse, or klook and keyboard, pitch drifting is constantly stopped.
208 delta = cl.idealpitch - cl.viewangles[PITCH];
228 cl.viewangles[PITCH] += move;
237 cl.viewangles[PITCH] -= move;
707 float yaw, pitch, move;
712 pitch = -r_refdef.viewangles[PITCH];
719 pitch = angledelta(-pitch - r_refdef.viewangles[PITCH]) * 0.4
    [all...]
  /external/libvpx/libvpx/vp8/common/
postproc.c 126 extern void vp8_blit_text(const char *msg, unsigned char *address, const int pitch);
127 extern void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch);
221 void vp8_mbpost_proc_across_ip_c(unsigned char *src, int pitch, int rows, int cols, int flimit)
267 s += pitch;
272 void vp8_mbpost_proc_down_c(unsigned char *dst, int pitch, int rows, int cols, int flimit)
286 s[i*pitch]=s[0];
292 s[i*pitch]=s[(rows-1)*pitch];
296 sumsq += s[i*pitch] * s[i*pitch];
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_pixels.c 293 Uint16 pitch; local
296 pitch = surface->w*surface->format->BytesPerPixel;
299 pitch = (pitch+7)/8;
302 pitch = (pitch+1)/2;
307 pitch = (pitch + 3) & ~3; /* 4-byte aligning */
308 return(pitch);
SDL_blit.c 79 (Uint16)srcrect->y*src->pitch +
83 info.s_skip=src->pitch-info.s_width*src->format->BytesPerPixel;
85 (Uint16)dstrect->y*dst->pitch +
89 info.d_skip=dst->pitch-info.d_width*dst->format->BytesPerPixel;
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_phyuv.c 212 overlay->hwdata->YStride = overlay->hwdata->channel->yplane1->pitch;
214 overlay->hwdata->UStride = overlay->hwdata->channel->vplane1->pitch;
216 overlay->hwdata->VStride = overlay->hwdata->channel->uplane1->pitch;
245 /* Find the pitch and offset values for the overlay */
258 overlay->pitches[0] = overlay->hwdata->channel->yplane1->pitch;
263 overlay->pitches[1] = overlay->hwdata->channel->vplane1->pitch;
268 overlay->pitches[2] = overlay->hwdata->channel->uplane1->pitch;
309 overlay->pitches[0] = overlay->hwdata->channel->yplane1->pitch;
314 overlay->pitches[1] = overlay->hwdata->channel->uplane1->pitch;
319 overlay->pitches[2] = overlay->hwdata->channel->vplane1->pitch;
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_fmengine.c 139 * Transform pitch cents to linear phase increment
279 EAS_I16 pitch,
302 phaseInc = (EAS_U32) FM_PhaseInc(pitch);
597 pFrame->pitch[2],
637 pFrame->pitch[3],
677 pFrame->pitch[0],
711 pFrame->pitch[1],
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_fmengine.c 139 * Transform pitch cents to linear phase increment
279 EAS_I16 pitch,
302 phaseInc = (EAS_U32) FM_PhaseInc(pitch);
597 pFrame->pitch[2],
637 pFrame->pitch[3],
677 pFrame->pitch[0],
711 pFrame->pitch[1],
  /external/svox/pico/tts/
svox_ssml_parser.cpp 322 else if (strcmp(element, "prosody") == 0) /* only pitch, rate and volume attributes are supported */
326 if (strcmp(attributes[i], "pitch") == 0)
344 char* pitch = new char[17 + strlen(svoxpitch)]; local
345 if (!pitch)
350 sprintf(pitch, "<pitch level='%s'>", svoxpitch);
351 if (strlen(m_data) + strlen(pitch) + 1 > (size_t)m_datasize)
359 strcat(m_data, pitch);
365 strcat(m_appendix, "</pitch>");
367 delete [] pitch;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_mouse.c 100 *y -= SDL_VideoSurface->offset/SDL_VideoSurface->pitch;
101 *x -= (SDL_VideoSurface->offset%SDL_VideoSurface->pitch)/
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fb3dfx.c 70 format = dst->pitch | ((bpp+((bpp==8) ? 0 : 8)) << 13);
117 src_format = src->pitch | ((bpp+((bpp==8) ? 0 : 8)) << 13);
SDL_fbriva.c 121 if ( dst->pitch != SDL_VideoSurface->pitch ) {
SDL_fbvideo.h 192 *x = (long)((char *)dst->pixels - mapped_mem)%this->screen->pitch;
193 *y = (long)((char *)dst->pixels - mapped_mem)/this->screen->pitch;
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemvideo.h 61 Uint16 pitch; /* Line length */ member in struct:SDL_PrivateVideoData
107 #define VDI_pitch (this->hidden->pitch)
  /hardware/ti/omap4xxx/camera/
SensorListener.cpp 51 float y = sen_events[i].vector.pitch;
57 CAMHAL_LOGVB(" azimuth = %f pitch = %f roll = %f",
59 sen_events[i].vector.pitch,
  /development/ndk/platforms/android-9/include/android/
sensor.h 101 float pitch; member in struct:ASensorVector::__anon1457::__anon1459

Completed in 1665 milliseconds

1 2 34 5 6 7 8 91011>>