/external/libogg/src/ |
D | framing.c | 557 int ogg_sync_init(ogg_sync_state *oy){ in ogg_sync_init() argument 558 if(oy){ in ogg_sync_init() 559 oy->storage = -1; /* used as a readiness flag */ in ogg_sync_init() 560 memset(oy,0,sizeof(*oy)); in ogg_sync_init() 566 int ogg_sync_clear(ogg_sync_state *oy){ in ogg_sync_clear() argument 567 if(oy){ in ogg_sync_clear() 568 if(oy->data)_ogg_free(oy->data); in ogg_sync_clear() 569 memset(oy,0,sizeof(*oy)); in ogg_sync_clear() 574 int ogg_sync_destroy(ogg_sync_state *oy){ in ogg_sync_destroy() argument 575 if(oy){ in ogg_sync_destroy() [all …]
|
/external/tremolo/Tremolo/ |
D | framing.c | 580 void ogg_sync_init(ogg_sync_state *oy){ in ogg_sync_init() argument 581 memset(oy,0,sizeof(*oy)); in ogg_sync_init() 582 oy->bufferpool=ogg_buffer_create(); in ogg_sync_init() 586 ogg_sync_state *oy=_ogg_calloc(1,sizeof(*oy)); in ogg_sync_create() local 587 memset(oy,0,sizeof(*oy)); in ogg_sync_create() 588 oy->bufferpool=ogg_buffer_create(); in ogg_sync_create() 589 return oy; in ogg_sync_create() 592 int ogg_sync_clear(ogg_sync_state *oy){ in ogg_sync_clear() argument 593 if(oy){ in ogg_sync_clear() 594 ogg_sync_reset(oy); in ogg_sync_clear() [all …]
|
D | 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);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
D | path.c | 277 static INLINE void map_if_relative(VGfloat ox, VGfloat oy, in map_if_relative() argument 285 *y += oy; in map_if_relative() 291 VGfloat ox, VGfloat oy, in close_polygon() argument 295 !floatsEqual(sy, oy)) { in close_polygon() 364 VGfloat sx, sy, px, py, ox, oy; in path_get_fill_polygons() local 388 sx = sy = px = py = ox = oy = 0.f; in path_get_fill_polygons() 400 close_polygon(current, sx, sy, ox, oy, matrix); in path_get_fill_polygons() 402 oy = sy; in path_get_fill_polygons() 407 close_polygon(current, sx, sy, ox, oy, matrix); in path_get_fill_polygons() 414 map_if_relative(ox, oy, relative, &x0, &y0); in path_get_fill_polygons() [all …]
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | path.c | 277 static INLINE void map_if_relative(VGfloat ox, VGfloat oy, in map_if_relative() argument 285 *y += oy; in map_if_relative() 291 VGfloat ox, VGfloat oy, in close_polygon() argument 295 !floatsEqual(sy, oy)) { in close_polygon() 364 VGfloat sx, sy, px, py, ox, oy; in path_get_fill_polygons() local 388 sx = sy = px = py = ox = oy = 0.f; in path_get_fill_polygons() 400 close_polygon(current, sx, sy, ox, oy, matrix); in path_get_fill_polygons() 402 oy = sy; in path_get_fill_polygons() 407 close_polygon(current, sx, sy, ox, oy, matrix); in path_get_fill_polygons() 414 map_if_relative(ox, oy, relative, &x0, &y0); in path_get_fill_polygons() [all …]
|
/external/valgrind/main/none/tests/s390x/ |
D | 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/libvorbis/examples/ |
D | decoder_example.c | 44 ogg_sync_state oy; /* sync and verify incoming physical bitstream */ in main() local 77 ogg_sync_init(&oy); /* Now we can read pages */ in main() 89 buffer=ogg_sync_buffer(&oy,4096); in main() 91 ogg_sync_wrote(&oy,bytes); in main() 94 if(ogg_sync_pageout(&oy,&og)!=1){ in main() 149 int result=ogg_sync_pageout(&oy,&og); in main() 176 buffer=ogg_sync_buffer(&oy,4096); in main() 182 ogg_sync_wrote(&oy,bytes); in main() 211 int result=ogg_sync_pageout(&oy,&og); in main() 285 buffer=ogg_sync_buffer(&oy,4096); in main() [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/math/ |
D | m_xform_tmp.h | 254 const GLfloat ox = from[0], oy = from[1]; in TAG() local 255 to[i][0] = m0 * ox + m4 * oy + m12; in TAG() 256 to[i][1] = m1 * ox + m5 * oy + m13; in TAG() 257 to[i][2] = m2 * ox + m6 * oy + m14; in TAG() 258 to[i][3] = m3 * ox + m7 * oy + m15; in TAG() 299 const GLfloat ox = from[0], oy = from[1]; in TAG() local 300 to[i][0] = m0 * ox + m4 * oy + m12; in TAG() 301 to[i][1] = m1 * ox + m5 * oy + m13; in TAG() 320 const GLfloat ox = from[0], oy = from[1]; in TAG() local 322 to[i][1] = m5 * oy + m13; in TAG() [all …]
|
/external/mesa3d/src/mesa/math/ |
D | m_xform_tmp.h | 254 const GLfloat ox = from[0], oy = from[1]; in TAG() local 255 to[i][0] = m0 * ox + m4 * oy + m12; in TAG() 256 to[i][1] = m1 * ox + m5 * oy + m13; in TAG() 257 to[i][2] = m2 * ox + m6 * oy + m14; in TAG() 258 to[i][3] = m3 * ox + m7 * oy + m15; in TAG() 299 const GLfloat ox = from[0], oy = from[1]; in TAG() local 300 to[i][0] = m0 * ox + m4 * oy + m12; in TAG() 301 to[i][1] = m1 * ox + m5 * oy + m13; in TAG() 320 const GLfloat ox = from[0], oy = from[1]; in TAG() local 322 to[i][1] = m5 * oy + m13; in TAG() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | DOMMatrix.cpp | 68 DOMMatrix* DOMMatrix::scaleSelf(double scale, double ox, double oy) in scaleSelf() argument 70 return scaleNonUniformSelf(scale, scale, 1, ox, oy); in scaleSelf() 73 DOMMatrix* DOMMatrix::scale3dSelf(double scale, double ox, double oy, double oz) in scale3dSelf() argument 75 return scaleNonUniformSelf(scale, scale, scale, ox, oy, oz); in scale3dSelf() 79 double ox, double oy, double oz) in scaleNonUniformSelf() argument 87 bool hasTranslation = (ox || oy || oz); in scaleNonUniformSelf() 90 translateSelf(ox, oy, oz); in scaleNonUniformSelf() 98 translateSelf(-ox, -oy, -oz); in scaleNonUniformSelf()
|
D | DOMMatrixReadOnly.cpp | 30 DOMMatrix* DOMMatrixReadOnly::scale(double scale, double ox, double oy) in scale() argument 32 return DOMMatrix::create(this)->scaleSelf(scale, ox, oy); in scale() 35 DOMMatrix* DOMMatrixReadOnly::scale3d(double scale, double ox, double oy, double oz) in scale3d() argument 37 return DOMMatrix::create(this)->scale3dSelf(scale, ox, oy, oz); in scale3d() 41 double ox, double oy, double oz) in scaleNonUniform() argument 43 return DOMMatrix::create(this)->scaleNonUniformSelf(sx, sy, sz, ox, oy, oz); in scaleNonUniform()
|
D | DOMMatrixReadOnly.h | 49 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);
|
D | DOMMatrix.h | 44 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);
|
D | DOMMatrix.idl | 45 optional unrestricted double oy = 0); 48 optional unrestricted double oy = 0, 54 optional unrestricted double oy = 0,
|
D | DOMMatrixReadOnly.idl | 46 optional unrestricted double oy = 0); 49 optional unrestricted double oy = 0, 55 optional unrestricted double oy = 0,
|
/external/libvorbis/test/ |
D | write_read.c | 135 ogg_sync_state oy; in read_vorbis_data_or_die() local 157 ogg_sync_init (&oy); in read_vorbis_data_or_die() 162 buffer = ogg_sync_buffer (&oy,8192); in read_vorbis_data_or_die() 164 ogg_sync_wrote (&oy,bytes); in read_vorbis_data_or_die() 166 if(ogg_sync_pageout (&oy,&og) != 1) { in read_vorbis_data_or_die() 200 int result = ogg_sync_pageout (&oy,&og); in read_vorbis_data_or_die() 219 buffer = ogg_sync_buffer (&oy,4096); in read_vorbis_data_or_die() 226 ogg_sync_wrote (&oy,bytes); in read_vorbis_data_or_die() 239 int result = ogg_sync_pageout (&oy,&og); in read_vorbis_data_or_die() 277 buffer = ogg_sync_buffer (&oy,4096); in read_vorbis_data_or_die() [all …]
|
/external/libogg/include/ogg/ |
D | 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/libvpx/libvpx/vp9/encoder/ |
D | vp9_resize.h | 32 uint8_t *oy, 46 uint8_t *oy, 60 uint8_t *oy,
|
D | vp9_resize.c | 537 uint8_t *oy, int oy_stride, in vp9_resize_frame420() argument 541 oy, oheight, owidth, oy_stride); in vp9_resize_frame420() 552 uint8_t *oy, int oy_stride, in vp9_resize_frame422() argument 556 oy, oheight, owidth, oy_stride); in vp9_resize_frame422() 567 uint8_t *oy, int oy_stride, in vp9_resize_frame444() argument 571 oy, oheight, owidth, oy_stride); in vp9_resize_frame444()
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
D | vp9_resize.h | 32 uint8_t *oy, 46 uint8_t *oy, 60 uint8_t *oy,
|
D | vp9_resize.c | 537 uint8_t *oy, int oy_stride, in vp9_resize_frame420() argument 541 oy, oheight, owidth, oy_stride); in vp9_resize_frame420() 552 uint8_t *oy, int oy_stride, in vp9_resize_frame422() argument 556 oy, oheight, owidth, oy_stride); in vp9_resize_frame422() 567 uint8_t *oy, int oy_stride, in vp9_resize_frame444() argument 571 oy, oheight, owidth, oy_stride); in vp9_resize_frame444()
|
/external/chromium_org/third_party/polymer/components-chromium/core-iconset/ |
D | core-iconset-extracted.js | 84 var oy = this.offsetY; 89 offsetY: oy 95 oy += this.iconSize;
|
/external/deqp/modules/egl/ |
D | teglPreservingSwapTests.cpp | 254 const int oy = height/2; in render() local 260 const int y1i = (int)((py/2.0f) * y1 + oy); in render() 263 const int y2i = (int)((py/2.0f) * y2 + oy); in render() 301 const int oy = target->getHeight()/2; in render() local 307 const int y1i = (int)((py/2.0) * y1 + oy); in render() 310 const int y2i = (int)((py/2.0) * y2 + oy); in render() 521 const int oy = height/2; in iterate() local 527 const int y1i = (int)((py/2.0f) * postSwapY1 + oy); in iterate() 530 const int y2i = (int)((py/2.0f) * postSwapY2 + oy); in iterate()
|
/external/llvm/test/CodeGen/SystemZ/ |
D | or-01.ll | 41 ; CHECK: oy %r2, 4096(%r3) 52 ; CHECK: oy %r2, 524284(%r3) 76 ; CHECK: oy %r2, -4(%r3) 87 ; CHECK: oy %r2, -524288(%r3) 124 ; CHECK: oy %r2, 4096({{%r4,%r3|%r3,%r4}})
|
/external/icu/icu4c/source/data/locales/ |
D | uz.txt | 760 "-1"{"oʻtgan oy"} 761 "0"{"bu oy"} 762 "1"{"keyingi oy"} 770 one{"{0} oy avval"} 771 other{"{0} oy avval"} 962 one{"{0} oy"} 963 other{"{0} oy"} 1173 one{"{0} oy"} 1174 other{"{0} oy"} 1384 one{"{0} oy"} [all …]
|