HomeSort by relevance Sort by last modified time
    Searched refs:oy (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/tremolo/Tremolo/
framing.c 580 void ogg_sync_init(ogg_sync_state *oy){
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;
    [all...]
ogg.h 185 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);
ivorbisfile.h 71 ogg_sync_state *oy; member in struct:OggVorbis_File
  /external/libogg/src/
framing.c 557 int ogg_sync_init(ogg_sync_state *oy){
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){
567 if(oy){
568 if(oy->data)_ogg_free(oy->data);
569 memset(oy,0,sizeof(*oy))
1008 ogg_sync_state oy; variable
    [all...]
  /external/libvorbis/examples/
decoder_example.c 44 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,4096)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.h 26 int uv_stride, int height, int width, uint8_t *oy,
31 int uv_stride, int height, int width, uint8_t *oy,
36 int uv_stride, int height, int width, uint8_t *oy,
47 uint8_t *oy, int oy_stride, uint8_t *ou,
53 uint8_t *oy, int oy_stride, uint8_t *ou,
59 uint8_t *oy, int oy_stride, uint8_t *ou,
vp9_resize.c 744 int uv_stride, int height, int width, uint8_t *oy,
747 vp9_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride);
756 int uv_stride, int height, int width, uint8_t *oy,
759 vp9_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride);
768 int uv_stride, int height, int width, uint8_t *oy,
771 vp9_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride);
782 uint8_t *oy, int oy_stride, uint8_t *ou,
785 vp9_highbd_resize_plane(y, height, width, y_stride, oy, oheight, owidth,
796 uint8_t *oy, int oy_stride, uint8_t *ou,
799 vp9_highbd_resize_plane(y, height, width, y_stride, oy, oheight, owidth
    [all...]
  /external/libogg/include/ogg/
ogg.h 166 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/
write_read.c 135 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,4096)
    [all...]
  /external/mesa3d/src/mesa/math/
m_xform_tmp.h 254 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 + m13
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/none/tests/s390x/
or.stdout.exp 49 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 8000000000000000 | 0000000000000000 = 8000000000000000 (cc=0
    [all...]
  /external/freetype/src/cff/
cffobjs.h 108 FT_F26Dot6 ox, oy; /* offsets */ member in struct:CFF_Transform_
  /external/pdfium/third_party/freetype/src/cff/
cffobjs.h 108 FT_F26Dot6 ox, oy; /* offsets */ member in struct:CFF_Transform_
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorBrightnessView.java 104 float oy = mDotY; local
121 invalidate((int) (ox - mDotRadius), (int) (oy - mDotRadius), (int) (ox + mDotRadius),
122 (int) (oy + mDotRadius));
183 float oy = mDotY; local
ColorSaturationView.java 104 float oy = mDotY; local
121 invalidate((int) (ox - mDotRadius), (int) (oy - mDotRadius), (int) (ox + mDotRadius),
122 (int) (oy + mDotRadius));
182 float oy = mDotY; local
ColorValueView.java 87 float oy = mDotY; local
104 invalidate((int) (ox - dotRadus), (int) (oy - dotRadus), (int) (ox + dotRadus),
105 (int) (oy + dotRadus));
160 float oy = mDotY; local
ColorOpacityView.java 109 float oy = mDotY; local
126 invalidate((int) (ox - mDotRadius), (int) (oy - mDotRadius), (int) (ox + mDotRadius),
127 (int) (oy + mDotRadius));
  /external/deqp/modules/egl/
teglPreservingSwapTests.cpp 210 const int oy = height/2; local
216 const int y1i = (int)(((float)py/2.0f) * y1 + (float)oy);
219 const int y2i = (int)(((float)py/2.0f) * y2 + (float)oy);
257 const int oy = target->getHeight()/2; local
263 const int y1i = (int)((py/2.0) * y1 + oy);
266 const int y2i = (int)((py/2.0) * y2 + oy);
499 const int oy = height/2; local
505 const int y1i = (int)(((float)py/2.0f) * postSwapY1 + (float)oy);
508 const int y2i = (int)(((float)py/2.0f) * postSwapY2 + (float)oy);
  /external/ImageMagick/MagickCore/
vision.c 278 oy,
307 oy=offset+neighbor_offset;
308 status=GetMatrixElement(equivalences,oy,0,&object);
309 while (object != oy)
311 oy=object;
312 status=GetMatrixElement(equivalences,oy,0,&object);
314 if (ox < oy)
316 status=SetMatrixElement(equivalences,oy,0,&ox);
321 status=SetMatrixElement(equivalences,ox,0,&oy);
322 root=oy;
276 oy, local
    [all...]
  /external/skia/src/gpu/
GrXferProcessor.h 88 void setOffset(int ox, int oy) { fOffset.set(ox, oy); }
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
mathmodule.c 761 PyObject *ox, *oy; local
763 if (! PyArg_UnpackTuple(args, funcname, 2, 2, &ox, &oy))
766 y = PyFloat_AsDouble(oy);
1357 PyObject *ox, *oy; local
1391 PyObject *ox, *oy; local
1438 PyObject *ox, *oy; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
mathmodule.c 761 PyObject *ox, *oy; local
763 if (! PyArg_UnpackTuple(args, funcname, 2, 2, &ox, &oy))
766 y = PyFloat_AsDouble(oy);
1347 PyObject *ox, *oy; local
1381 PyObject *ox, *oy; local
1428 PyObject *ox, *oy; local
    [all...]
  /external/python/cpython2/Modules/
mathmodule.c 760 PyObject *ox, *oy; local
762 if (! PyArg_UnpackTuple(args, funcname, 2, 2, &ox, &oy))
765 y = PyFloat_AsDouble(oy);
1356 PyObject *ox, *oy; local
1390 PyObject *ox, *oy; local
1437 PyObject *ox, *oy; local
    [all...]
  /external/skia/tools/
colorspaceinfo.cpp 191 const float oy = gap + gammaHeight; local
204 oy - gammaHeight * table[i].fTable[ti - 1],
206 oy - gammaHeight * table[i].fTable[ti],
214 canvas->drawLine(ox + gammaWidth * (x - step), oy - gammaHeight * yPrev,
215 ox + gammaWidth * x, oy - gammaHeight * y,
223 canvas->drawRect({ ox, oy - gammaHeight, ox + gammaWidth, oy }, paint);
284 const float oy = clut.inputChannels() >= 4 ? (1 + row) * cutVertGap + row * cutSize local
296 canvas->drawRect(SkRect::MakeLTRB(ox + cutSize * x, oy + cutSize * y,
298 oy + cutSize * (y + yStep)), paint)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
LaunchClip.java 168 AllocationAdapter makeAdapter(Allocation base, int ax, int ay, int az, int ox, int oy, int oz) {
182 a.setY(oy);
189 mScript.set_biasY(oy);

Completed in 842 milliseconds

1 2 3