HomeSort by relevance Sort by last modified time
    Searched refs:Pitch (Results 1 - 16 of 16) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioParam.java 5 Pitch,
AudioNode.java 68 protected float pitch = 1; field in class:AudioNode
380 * @return The pitch of the audio, also the speed of playback.
385 return pitch;
389 * Set the pitch of the audio, also the speed of playback.
392 * @param pitch The pitch to set.
393 * @throws IllegalArgumentException If pitch is not between 0.5 and 2.0.
395 public void setPitch(float pitch) {
396 if (pitch < 0.5f || pitch > 2.0f)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
FontFallbackList.h 79 mutable Pitch m_pitch;
SimpleFontData.h 70 enum Pitch { UnknownPitch, FixedPitch, VariablePitch };
129 Pitch pitch() const { return m_treatAsFixedPitch ? FixedPitch : VariablePitch; } function in class:WebCore::SimpleFontData
  /external/freetype/include/freetype/
tttables.h 445 FT_UShort Pitch;
    [all...]
  /external/libvpx/libvpx/vp8/common/ppc/
systemdependent.c 18 void (*vp8_short_idct4x4)(short *input, short *output, int pitch);
19 void (*vp8_short_idct4x4_1)(short *input, short *output, int pitch);
20 void (*vp8_dc_only_idct)(short input_dc, short *output, int pitch);
32 extern void (*vp8_mbpost_proc_down)(unsigned char *dst, int pitch, int rows, int cols, int flimit);
33 extern void vp8_mbpost_proc_down_c(unsigned char *dst, int pitch, int rows, int cols, int flimit);
34 extern void (*vp8_mbpost_proc_across_ip)(unsigned char *src, int pitch, int rows, int cols, int flimit);
35 extern void vp8_mbpost_proc_across_ip_c(unsigned char *src, int pitch, int rows, int cols, int flimit);
47 void vp8_plane_add_noise_c(unsigned char *Start, unsigned int Width, unsigned int Height, int Pitch, int q, int a);
69 extern void short_idct4x4llm_ppc(short *input, short *output, int pitch);
89 extern void vp8_short_idct4x4llm_1_c(short *input, short *output, int pitch);
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
postproc_mmx.asm 18 ; int pitch, int rows, int cols,int flimit)
52 movsxd rax, dword ptr arg(1) ;pitch ;
69 neg rax ; rax = -pitch
83 lea rsi, [rsi + rax*8]; ; rdi = s[-pitch*8]
116 movd mm1, DWORD PTR [rsi] ; [s-pitch*8]
117 movd mm2, DWORD PTR [rdi] ; [s+pitch*7]
246 ; unsigned int Width, unsigned int Height, int Pitch)
291 movsxd rax, dword arg(7) ; Pitch
292 add arg(0), rax ; Start += Pitch
postproc_sse2.asm 234 ; int pitch, int rows, int cols,int flimit)
271 movsxd rax, dword ptr arg(1) ;pitch ;
288 neg rax ; rax = -pitch
303 lea rsi, [rsi + rax*8]; ; rdi = s[-pitch*8]
335 movq xmm1, QWORD PTR [rsi] ; [s-pitch*8]
336 movq xmm2, QWORD PTR [rdi] ; [s+pitch*7]
463 ; int pitch, int rows, int cols,int flimit)
633 ;s+=pitch;
659 ; unsigned int Width, unsigned int Height, int Pitch)
704 movsxd rax, dword arg(7) ; Pitch
    [all...]
subpixel_sse2.asm 53 movsxd rax, dword ptr arg(2) ;src_pixels_per_line ; Pitch for Source
173 movsxd rax, dword ptr arg(2) ;src_pixels_per_line ; Pitch for Source
554 movsxd rax, dword ptr arg(1) ;src_pixels_per_line ; Pitch for Source
667 movsxd rax, dword ptr arg(1) ;src_pixels_per_line ; Pitch for Source
921 movsxd rax, dword ptr arg(2) ;src_pixels_per_line ; Pitch for Source
925 movsxd r8, dword ptr arg(4) ;output_width ; Pitch for Source
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Texture.cpp 799 loadImageData(0, 0, width, height, format, type, unpackAlignment, pixels, locked.Pitch, locked.pBits, &description);
857 loadImageData(xoffset, yoffset, width, height, format, type, unpackAlignment, pixels, locked.Pitch, locked.pBits, &description);
905 memcpy((void*)((BYTE*)locked.pBits + i * locked.Pitch), (void*)((BYTE*)pixels + i * inputPitch), inputPitch);
    [all...]
Context.cpp     [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/audio/android/
AndroidAudioRenderer.java 187 case Pitch:
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
riva_mmio.h 325 U032 Pitch;
  /external/freetype/src/sfnt/
ttload.c     [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/jmonkeyengine/engine/src/lwjgl/com/jme3/audio/lwjgl/
LwjglAudioRenderer.java 443 case Pitch:
    [all...]

Completed in 1791 milliseconds