Searched refs:oy (Results 1 - 25 of 52) sorted by relevance

123

/external/tremolo/Tremolo/
H A Dframing.c580 void ogg_sync_init(ogg_sync_state *oy){ argument
581 memset(oy,0,sizeof(*oy));
582 oy->bufferpool=ogg_buffer_create();
586 ogg_sync_state *oy=_ogg_calloc(1,sizeof(*oy)); local
587 memset(oy,0,sizeof(*oy));
588 oy->bufferpool=ogg_buffer_create();
589 return oy;
592 ogg_sync_clear(ogg_sync_state *oy) argument
601 ogg_sync_destroy(ogg_sync_state *oy) argument
611 ogg_sync_bufferin(ogg_sync_state *oy, long bytes) argument
655 ogg_sync_wrote(ogg_sync_state *oy, long bytes) argument
694 ogg_sync_pageseek(ogg_sync_state *oy,ogg_page *og) argument
810 ogg_sync_pageout(ogg_sync_state *oy, ogg_page *og) argument
839 ogg_sync_reset(ogg_sync_state *oy) argument
[all...]
H A Dogg.h185 extern void ogg_sync_init(ogg_sync_state *oy);
187 extern int ogg_sync_clear(ogg_sync_state *oy);
188 extern int ogg_sync_destroy(ogg_sync_state *oy);
189 extern int ogg_sync_reset(ogg_sync_state *oy);
191 extern unsigned char *ogg_sync_bufferin(ogg_sync_state *oy, long size);
192 extern int ogg_sync_wrote(ogg_sync_state *oy, long bytes);
193 extern long ogg_sync_pageseek(ogg_sync_state *oy,ogg_page *og);
194 extern int ogg_sync_pageout(ogg_sync_state *oy, ogg_page *og);
/external/libogg/src/
H A Dframing.c557 int ogg_sync_init(ogg_sync_state *oy){ argument
558 if(oy){
559 oy->storage = -1; /* used as a readiness flag */
560 memset(oy,0,sizeof(*oy));
566 int ogg_sync_clear(ogg_sync_state *oy){ argument
567 if(oy){
568 if(oy->data)_ogg_free(oy->data);
569 memset(oy,
574 ogg_sync_destroy(ogg_sync_state *oy) argument
582 ogg_sync_check(ogg_sync_state *oy) argument
587 ogg_sync_buffer(ogg_sync_state *oy, long size) argument
619 ogg_sync_wrote(ogg_sync_state *oy, long bytes) argument
636 ogg_sync_pageseek(ogg_sync_state *oy,ogg_page *og) argument
734 ogg_sync_pageout(ogg_sync_state *oy, ogg_page *og) argument
896 ogg_sync_reset(ogg_sync_state *oy) argument
1008 ogg_sync_state oy; variable
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMMatrix.cpp68 DOMMatrix* DOMMatrix::scaleSelf(double scale, double ox, double oy) argument
70 return scaleNonUniformSelf(scale, scale, 1, ox, oy);
73 DOMMatrix* DOMMatrix::scale3dSelf(double scale, double ox, double oy, double oz) argument
75 return scaleNonUniformSelf(scale, scale, scale, ox, oy, oz);
79 double ox, double oy, double oz)
87 bool hasTranslation = (ox || oy || oz);
90 translateSelf(ox, oy, oz);
98 translateSelf(-ox, -oy, -oz);
78 scaleNonUniformSelf(double sx, double sy, double sz, double ox, double oy, double oz) argument
H A DDOMMatrixReadOnly.cpp30 DOMMatrix* DOMMatrixReadOnly::scale(double scale, double ox, double oy) argument
32 return DOMMatrix::create(this)->scaleSelf(scale, ox, oy);
35 DOMMatrix* DOMMatrixReadOnly::scale3d(double scale, double ox, double oy, double oz) argument
37 return DOMMatrix::create(this)->scale3dSelf(scale, ox, oy, oz);
41 double ox, double oy, double oz)
43 return DOMMatrix::create(this)->scaleNonUniformSelf(sx, sy, sz, ox, oy, oz);
40 scaleNonUniform(double sx, double sy, double sz, double ox, double oy, double oz) argument
H A DDOMMatrixReadOnly.h49 DOMMatrix* scale(double scale, double ox = 0, double oy = 0);
50 DOMMatrix* scale3d(double scale, double ox = 0, double oy = 0, double oz = 0);
52 double ox = 0, double oy = 0, double oz = 0);
H A DDOMMatrix.h44 DOMMatrix* scaleSelf(double scale, double ox = 0, double oy = 0);
45 DOMMatrix* scale3dSelf(double scale, double ox = 0, double oy = 0, double oz = 0);
47 double ox = 0, double oy = 0, double oz = 0);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_resize.h32 uint8_t *oy,
46 uint8_t *oy,
60 uint8_t *oy,
H A Dvp9_resize.c537 uint8_t *oy, int oy_stride,
541 oy, oheight, owidth, oy_stride);
552 uint8_t *oy, int oy_stride,
556 oy, oheight, owidth, oy_stride);
567 uint8_t *oy, int oy_stride,
571 oy, oheight, owidth, oy_stride);
532 vp9_resize_frame420(const uint8_t *const y, int y_stride, const uint8_t *const u, const uint8_t *const v, int uv_stride, int height, int width, uint8_t *oy, int oy_stride, uint8_t *ou, uint8_t *ov, int ouv_stride, int oheight, int owidth) argument
548 vp9_resize_frame422(const uint8_t *const y, int y_stride, const uint8_t *const u, const uint8_t *const v, int uv_stride, int height, int width, uint8_t *oy, int oy_stride, uint8_t *ou, uint8_t *ov, int ouv_stride, int oheight, int owidth) argument
563 vp9_resize_frame444(const uint8_t *const y, int y_stride, const uint8_t *const u, const uint8_t *const v, int uv_stride, int height, int width, uint8_t *oy, int oy_stride, uint8_t *ou, uint8_t *ov, int ouv_stride, int oheight, int owidth) argument
/external/libvorbis/examples/
H A Ddecoder_example.c44 ogg_sync_state oy; /* sync and verify incoming physical bitstream */ local
77 ogg_sync_init(&oy); /* Now we can read pages */
89 buffer=ogg_sync_buffer(&oy,4096);
91 ogg_sync_wrote(&oy,bytes);
94 if(ogg_sync_pageout(&oy,&og)!=1){
149 int result=ogg_sync_pageout(&oy,&og);
176 buffer=ogg_sync_buffer(&oy,4096);
182 ogg_sync_wrote(&oy,bytes);
211 int result=ogg_sync_pageout(&oy,&og);
285 buffer=ogg_sync_buffer(&oy,409
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_resize.h32 uint8_t *oy,
46 uint8_t *oy,
60 uint8_t *oy,
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dpath.c277 static INLINE void map_if_relative(VGfloat ox, VGfloat oy, argument
285 *y += oy;
291 VGfloat ox, VGfloat oy,
295 !floatsEqual(sy, oy)) {
364 VGfloat sx, sy, px, py, ox, oy; local
388 sx = sy = px = py = ox = oy = 0.f;
400 close_polygon(current, sx, sy, ox, oy, matrix);
402 oy = sy;
407 close_polygon(current, sx, sy, ox, oy, matrix);
414 map_if_relative(ox, oy, relativ
289 close_polygon(struct polygon *current, VGfloat sx, VGfloat sy, VGfloat ox, VGfloat oy, struct matrix *matrix) argument
952 VGfloat px, py, ox, oy, sx, sy; member in struct:path_iter_data
1233 VGfloat sx, sy, px, py, ox, oy; local
1719 VGfloat ox, oy; local
1802 VGfloat ox, oy; local
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpath.c277 static INLINE void map_if_relative(VGfloat ox, VGfloat oy, argument
285 *y += oy;
291 VGfloat ox, VGfloat oy,
295 !floatsEqual(sy, oy)) {
364 VGfloat sx, sy, px, py, ox, oy; local
388 sx = sy = px = py = ox = oy = 0.f;
400 close_polygon(current, sx, sy, ox, oy, matrix);
402 oy = sy;
407 close_polygon(current, sx, sy, ox, oy, matrix);
414 map_if_relative(ox, oy, relativ
289 close_polygon(struct polygon *current, VGfloat sx, VGfloat sy, VGfloat ox, VGfloat oy, struct matrix *matrix) argument
952 VGfloat px, py, ox, oy, sx, sy; member in struct:path_iter_data
1233 VGfloat sx, sy, px, py, ox, oy; local
1719 VGfloat ox, oy; local
1802 VGfloat ox, oy; local
[all...]
/external/libogg/include/ogg/
H A Dogg.h166 extern int ogg_sync_init(ogg_sync_state *oy);
167 extern int ogg_sync_clear(ogg_sync_state *oy);
168 extern int ogg_sync_reset(ogg_sync_state *oy);
169 extern int ogg_sync_destroy(ogg_sync_state *oy);
170 extern int ogg_sync_check(ogg_sync_state *oy);
172 extern char *ogg_sync_buffer(ogg_sync_state *oy, long size);
173 extern int ogg_sync_wrote(ogg_sync_state *oy, long bytes);
174 extern long ogg_sync_pageseek(ogg_sync_state *oy,ogg_page *og);
175 extern int ogg_sync_pageout(ogg_sync_state *oy, ogg_page *og);
/external/libvorbis/test/
H A Dwrite_read.c135 ogg_sync_state oy; local
157 ogg_sync_init (&oy);
162 buffer = ogg_sync_buffer (&oy,8192);
164 ogg_sync_wrote (&oy,bytes);
166 if(ogg_sync_pageout (&oy,&og) != 1) {
200 int result = ogg_sync_pageout (&oy,&og);
219 buffer = ogg_sync_buffer (&oy,4096);
226 ogg_sync_wrote (&oy,bytes);
239 int result = ogg_sync_pageout (&oy,&og);
277 buffer = ogg_sync_buffer (&oy,409
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_xform_tmp.h254 const GLfloat ox = from[0], oy = from[1]; local
255 to[i][0] = m0 * ox + m4 * oy + m12;
256 to[i][1] = m1 * ox + m5 * oy + m13;
257 to[i][2] = m2 * ox + m6 * oy + m14;
258 to[i][3] = m3 * ox + m7 * oy + m15;
299 const GLfloat ox = from[0], oy = from[1]; local
300 to[i][0] = m0 * ox + m4 * oy + m12;
301 to[i][1] = m1 * ox + m5 * oy + m13;
320 const GLfloat ox = from[0], oy = from[1]; local
322 to[i][1] = m5 * oy
342 const GLfloat ox = from[0], oy = from[1]; local
369 const GLfloat ox = from[0], oy = from[1]; local
397 const GLfloat ox = from[0], oy = from[1]; local
425 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
471 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
493 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
517 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
542 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
565 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
593 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
640 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
663 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
688 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
712 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
736 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
[all...]
/external/mesa3d/src/mesa/math/
H A Dm_xform_tmp.h254 const GLfloat ox = from[0], oy = from[1]; local
255 to[i][0] = m0 * ox + m4 * oy + m12;
256 to[i][1] = m1 * ox + m5 * oy + m13;
257 to[i][2] = m2 * ox + m6 * oy + m14;
258 to[i][3] = m3 * ox + m7 * oy + m15;
299 const GLfloat ox = from[0], oy = from[1]; local
300 to[i][0] = m0 * ox + m4 * oy + m12;
301 to[i][1] = m1 * ox + m5 * oy + m13;
320 const GLfloat ox = from[0], oy = from[1]; local
322 to[i][1] = m5 * oy
342 const GLfloat ox = from[0], oy = from[1]; local
369 const GLfloat ox = from[0], oy = from[1]; local
397 const GLfloat ox = from[0], oy = from[1]; local
425 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
471 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
493 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
517 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
542 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
565 const GLfloat ox = from[0], oy = from[1], oz = from[2]; local
593 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
640 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
663 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
688 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
712 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
736 const GLfloat ox = from[0], oy = from[1], oz = from[2], ow = from[3]; local
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dor.stdout.exp49 oy 0000000000000000 | 0000000000000000 = 0000000000000000 (cc=0)
50 oy 0000000000000001 | 0000000000000000 = 0000000000000001 (cc=1)
51 oy 000000000000FFFF | 0000000000000000 = 000000000000FFFF (cc=1)
52 oy 0000000000007FFF | 0000000000000000 = 0000000000007FFF (cc=1)
53 oy 0000000000008000 | 0000000000000000 = 0000000000008000 (cc=1)
54 oy 00000000FFFFFFFF | 0000000000000000 = 00000000FFFFFFFF (cc=1)
55 oy 0000000080000000 | 0000000000000000 = 0000000080000000 (cc=1)
56 oy 000000007FFFFFFF | 0000000000000000 = 000000007FFFFFFF (cc=1)
57 oy AAAAAAAAAAAAAAAA | 0000000000000000 = AAAAAAAAAAAAAAAA (cc=1)
58 oy 800000000000000
[all...]
/external/chromium_org/third_party/polymer/components-chromium/core-iconset/
H A Dcore-iconset-extracted.js84 var oy = this.offsetY;
89 offsetY: oy
95 oy += this.iconSize;
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffobjs.h108 FT_F26Dot6 ox, oy; /* offsets */ member in struct:CFF_Transform_
/external/freetype/src/cff/
H A Dcffobjs.h108 FT_F26Dot6 ox, oy; /* offsets */ member in struct:CFF_Transform_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcffobjs.h108 FT_F26Dot6 ox, oy; /* offsets */ member in struct:CFF_Transform_
/external/deqp/modules/egl/
H A DteglPreservingSwapTests.cpp254 const int oy = height/2; local
260 const int y1i = (int)((py/2.0f) * y1 + oy);
263 const int y2i = (int)((py/2.0f) * y2 + oy);
301 const int oy = target->getHeight()/2; local
307 const int y1i = (int)((py/2.0) * y1 + oy);
310 const int y2i = (int)((py/2.0) * y2 + oy);
521 const int oy = height/2; local
527 const int y1i = (int)((py/2.0f) * postSwapY1 + oy);
530 const int y2i = (int)((py/2.0f) * postSwapY2 + oy);
/external/chromium_org/third_party/skia/include/gpu/
H A DGrTexture.h205 void setOffset(int ox, int oy) { fOffset.set(ox, oy); } argument
/external/skia/include/gpu/
H A DGrTexture.h207 void setOffset(int ox, int oy) { fOffset.set(ox, oy); } argument

Completed in 856 milliseconds

123