/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/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/XNNPACK/test/ |
D | convolution-operator-tester.h | 562 for (size_t oy = 0; oy < output_height(); oy++) { in TestNHWCxQ8() local 566 …accumulators[(((i * output_height() + oy) * output_width() + ox) * groups() + g) * group_output_ch… in TestNHWCxQ8() 580 for (size_t oy = 0; oy < output_height(); oy++) { in TestNHWCxQ8() local 583 … const size_t iy = oy * subsampling_height() + ky * dilation_height() - padding_top(); in TestNHWCxQ8() 590 …accumulators[(((i * output_height() + oy) * output_width() + ox) * groups() + g) * group_output_ch… in TestNHWCxQ8() 604 for (size_t oy = 0; oy < output_height(); oy++) { in TestNHWCxQ8() local 607 … const size_t iy = oy * subsampling_height() + ky * dilation_height() - padding_top(); in TestNHWCxQ8() 615 …accumulators[(((i * output_height() + oy) * output_width() + ox) * groups() + g) * group_output_ch… in TestNHWCxQ8() 722 for (size_t oy = 0; oy < output_height(); oy++) { in TestNHWCxF32() local 726 …output_ref[(((i * output_height() + oy) * output_width() + ox) * groups() + g) * group_output_chan… in TestNHWCxF32() [all …]
|
D | average-pooling-operator-tester.h | 407 for (size_t oy = 0; oy < output_height(); oy++) { in TestQ8() local 412 const size_t iy = oy * stride_height() + py - padding_top(); in TestQ8() 420 …output_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c] = float(acc * scal… in TestQ8() 421 output_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c] = in TestQ8() 422 …std::min<float>(output_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c], f… in TestQ8() 423 output_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c] = in TestQ8() 424 …std::max<float>(output_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c], f… in TestQ8() 490 for (size_t oy = 0; oy < output_height(); oy++) { in TestF32() local 496 const size_t iy = oy * stride_height() + py - padding_top(); in TestF32() 505 … output_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c] = acc / float(n); in TestF32() [all …]
|
D | deconvolution-operator-tester.h | 456 for (size_t oy = 0; oy < output_height(); oy++) { in TestQ8() local 460 …accumulators[(((i * output_height() + oy) * output_width() + ox) * groups() + g) * group_output_ch… in TestQ8() 471 for (size_t oy = 0; oy < output_height(); oy++) { in TestQ8() local 474 const size_t y = oy + padding_top() - ky * dilation_height(); in TestQ8() 484 …accumulators[(((i * output_height() + oy) * output_width() + ox) * groups() + g) * group_output_ch… in TestQ8() 590 for (size_t oy = 0; oy < output_height(); oy++) { in TestF32() local 594 …output_ref[(((i * output_height() + oy) * output_width() + ox) * groups() + g) * group_output_chan… in TestF32() 605 for (size_t oy = 0; oy < output_height(); oy++) { in TestF32() local 608 const size_t y = oy + padding_top() - ky * dilation_height(); in TestF32() 618 …output_ref[(((i * output_height() + oy) * output_width() + ox) * groups() + g) * group_output_chan… in TestF32() [all …]
|
D | max-pooling-operator-tester.h | 409 for (size_t oy = 0; oy < output_height(); oy++) { in TestU8() local 414 const size_t iy = oy * stride_height() + py * dilation_height() - padding_top(); in TestU8() 425 … output_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c] = max_value; in TestU8() 490 for (size_t oy = 0; oy < output_height(); oy++) { in TestF32() local 495 const size_t iy = oy * stride_height() + py * dilation_height() - padding_top(); in TestF32() 504 … output_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c] = max_value; in TestF32() 591 for (size_t oy = 0; oy < output_height(); oy++) { in TestSetupU8() local 596 const size_t iy = oy * stride_height() + py * dilation_height() - padding_top(); in TestSetupU8() 607 … output_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c] = max_value; in TestSetupU8() 662 for (size_t oy = 0; oy < next_output_height(); oy++) { in TestSetupU8() local [all …]
|
D | argmax-pooling-operator-tester.h | 306 for (size_t oy = 0; oy < output_height(); oy++) { in TestF32() local 309 … const size_t iy_top_left = std::max<size_t>(oy * pooling_height(), padding_top()) - padding_top(); in TestF32() 315 const size_t iy = oy * pooling_height() + py - padding_top(); in TestF32() 327 … output_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c] = max_value; in TestF32() 328 … index_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c] = max_index; in TestF32() 422 for (size_t oy = 0; oy < output_height(); oy++) { in TestSetupF32() local 425 … const size_t iy_top_left = std::max<size_t>(oy * pooling_height(), padding_top()) - padding_top(); in TestSetupF32() 431 const size_t iy = oy * pooling_height() + py - padding_top(); in TestSetupF32() 443 … output_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c] = max_value; in TestSetupF32() 444 … index_ref[((i * output_height() + oy) * output_width() + ox) * channels() + c] = max_index; in TestSetupF32() [all …]
|
D | dwconv-spchw-microkernel-tester.h | 243 for (size_t oy = 0; oy < output_height(); oy++) { variable 247 const size_t iy = oy * subsampling() + ky; 257 output_ref[oy * output_width() + ox] = acc;
|
D | conv-hwc-microkernel-tester.h | 326 for (size_t oy = 0; oy < output_height(); oy++) { variable 331 const size_t iy = oy * subsampling_height() + ky - padding_top(); 345 … output_ref[((i * output_height() + oy) * output_width() + ox) * output_channels() + oc] = acc;
|
D | conv-hwc2spchw-microkernel-tester.h | 326 for (size_t oy = 0; oy < output_height(); oy++) { variable 331 const size_t iy = oy * subsampling_height() + ky - padding_top(); 345 … output_ref[((i * output_channels() + oc) * output_height() + oy) * output_width() + ox] = acc;
|
/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 | 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,
|
D | vp9_resize.c | 750 int uv_stride, int height, int width, uint8_t *oy, in vp9_resize_frame420() argument 753 vp9_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride); in vp9_resize_frame420() 762 int uv_stride, int height, int width, uint8_t *oy, in vp9_resize_frame422() argument 765 vp9_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride); in vp9_resize_frame422() 774 int uv_stride, int height, int width, uint8_t *oy, in vp9_resize_frame444() argument 777 vp9_resize_plane(y, height, width, y_stride, oy, oheight, owidth, oy_stride); in vp9_resize_frame444() 788 uint8_t *oy, int oy_stride, uint8_t *ou, in vp9_highbd_resize_frame420() argument 791 vp9_highbd_resize_plane(y, height, width, y_stride, oy, oheight, owidth, in vp9_highbd_resize_frame420() 802 uint8_t *oy, int oy_stride, uint8_t *ou, in vp9_highbd_resize_frame422() argument 805 vp9_highbd_resize_plane(y, height, width, y_stride, oy, oheight, owidth, in vp9_highbd_resize_frame422() [all …]
|
/external/libaom/libaom/av1/common/ |
D | resize.h | 31 int uv_stride, int height, int width, uint8_t *oy, 36 int uv_stride, int height, int width, uint8_t *oy, 41 int uv_stride, int height, int width, uint8_t *oy, 51 uint8_t *oy, int oy_stride, uint8_t *ou, 57 uint8_t *oy, int oy_stride, uint8_t *ou, 63 uint8_t *oy, int oy_stride, uint8_t *ou,
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | 7825950324ec716167ed742b544c04be.00000ced.honggfuzz.cov | 15 ����+����8ֹ���miHaG�I�s�9�ӱ��Wƫ����BPU*/*�z�Қ��L�=�d[�MD)gz:�.���NT����D�oy�ǓfHA… 26 ����+����8ֹ���miHaG�I�s�9�ӱ��Wƫ����BPU*/*�z�Қ��L�=�d[�MD)gz:�.���NT����D�oy�ǓfHA… 34 ����+����8ֹ���miHaG�I�s�9�ӱ��Wƫ����BPU*/*�z�Қ��L�=�d[�MD)gz:�.���NT����D�oy�ǓfHA… 42 ����+����8ֹ���miHaG�I�s�9�ӱ��Wƫ����BPU*/*�z�Қ��L�=�d[�MD)gz:�.���NT����D�oy�ǓfHA…
|
/external/ImageMagick/MagickCore/ |
D | vision.c | 275 oy, in ConnectedComponentsImage() local 308 oy=offset+neighbor_offset; in ConnectedComponentsImage() 309 status=GetMatrixElement(equivalences,oy,0,&obj); in ConnectedComponentsImage() 310 while (obj != oy) in ConnectedComponentsImage() 312 oy=obj; in ConnectedComponentsImage() 313 status=GetMatrixElement(equivalences,oy,0,&obj); in ConnectedComponentsImage() 315 if (ox < oy) in ConnectedComponentsImage() 317 status=SetMatrixElement(equivalences,oy,0,&ox); in ConnectedComponentsImage() 322 status=SetMatrixElement(equivalences,ox,0,&oy); in ConnectedComponentsImage() 323 root=oy; in ConnectedComponentsImage() [all …]
|
/external/deqp/modules/egl/ |
D | teglPreservingSwapTests.cpp | 210 const int oy = height/2; in render() local 216 const int y1i = (int)(((float)py/2.0f) * y1 + (float)oy); in render() 219 const int y2i = (int)(((float)py/2.0f) * y2 + (float)oy); in render() 257 const int oy = target->getHeight()/2; in render() local 263 const int y1i = (int)((py/2.0) * y1 + oy); in render() 266 const int y2i = (int)((py/2.0) * y2 + oy); in render() 499 const int oy = height/2; in iterate() local 505 const int y1i = (int)(((float)py/2.0f) * postSwapY1 + (float)oy); in iterate() 508 const int y2i = (int)(((float)py/2.0f) * postSwapY2 + (float)oy); in iterate()
|
/external/python/cpython2/Modules/ |
D | mathmodule.c | 760 PyObject *ox, *oy; in math_2() local 762 if (! PyArg_UnpackTuple(args, funcname, 2, 2, &ox, &oy)) in math_2() 765 y = PyFloat_AsDouble(oy); in math_2() 1356 PyObject *ox, *oy; in math_fmod() local 1358 if (! PyArg_UnpackTuple(args, "fmod", 2, 2, &ox, &oy)) in math_fmod() 1361 y = PyFloat_AsDouble(oy); in math_fmod() 1390 PyObject *ox, *oy; in math_hypot() local 1392 if (! PyArg_UnpackTuple(args, "hypot", 2, 2, &ox, &oy)) in math_hypot() 1395 y = PyFloat_AsDouble(oy); in math_hypot() 1437 PyObject *ox, *oy; in math_pow() local [all …]
|
/external/libvpx/libvpx/tools/3D-Reconstruction/MotionEST/ |
D | Exhaust.py | 182 oy = r * self.blk_sz + y 183 Ix = self.cur_yuv[oy, ox + 1, 0] - self.cur_yuv[oy, ox, 0] 184 Iy = self.cur_yuv[oy + 1, ox, 0] - self.cur_yuv[oy, ox, 0]
|
/external/swiftshader/third_party/llvm-7.0/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/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 | 1370 dn{"oy"} 1372 "-1"{"o‘tgan oy"} 1373 "0"{"shu oy"} 1374 "1"{"keyingi oy"} 1382 one{"{0} oy oldin"} 1383 other{"{0} oy oldin"} 1388 dn{"oy"} 1390 "-1"{"o‘tgan oy"} 1391 "0"{"bu oy"} 1392 "1"{"keyingi oy"} [all …]
|
/external/libvpx/libvpx/tools/3D-Reconstruction/sketch_3D_reconstruction/ |
D | MotionField.pde | 77 float oy = i * block_size + 0.5f * block_size; 79 line(ox, oy, ox + mv.x, oy + mv.y);
|