/external/libyuv/files/unit_test/ |
D | rotate_test.cc | 29 int iw, ih, ow, oh; in TEST_F() local 33 for (ih = 8; ih < rotate_max_h_ && !err; ++ih) { in TEST_F() 35 ow = ih; in TEST_F() 38 align_buffer_16(input, iw * ih) in TEST_F() 40 align_buffer_16(output_2, iw * ih) in TEST_F() 42 for (i = 0; i < iw * ih; ++i) { in TEST_F() 46 TransposePlane(input, iw, output_1, ow, iw, ih); in TEST_F() 49 for (i = 0; i < iw * ih; ++i) { in TEST_F() 56 printf("input %dx%d \n", iw, ih); in TEST_F() 57 PrintArray(input, iw, ih); in TEST_F() [all …]
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/ |
D | unique.pass.cpp | 71 int ih[] = {0, 1, 1}; in test() local 72 const unsigned sh = sizeof(ih)/sizeof(ih[0]); in test() 73 r = std::unique(Iter(ih), Iter(ih+sh)); in test() 74 assert(base(r) == ih + 2); in test() 75 assert(ih[0] == 0); in test() 76 assert(ih[1] == 1); in test() 148 Ptr ih[3]; in test1() local 149 ih[1].reset(&one); in test1() 150 ih[2].reset(&one); in test1() 151 const unsigned sh = sizeof(ih)/sizeof(ih[0]); in test1() [all …]
|
D | unique_pred.pass.cpp | 93 int ih[] = {0, 1, 1}; in test() local 94 const unsigned sh = sizeof(ih)/sizeof(ih[0]); in test() 96 r = std::unique(Iter(ih), Iter(ih+sh), count_equal()); in test() 97 assert(base(r) == ih + 2); in test() 98 assert(ih[0] == 0); in test() 99 assert(ih[1] == 1); in test() 186 Ptr ih[3]; in test1() local 187 ih[1].reset(&one); in test1() 188 ih[2].reset(&one); in test1() 189 const unsigned sh = sizeof(ih)/sizeof(ih[0]); in test1() [all …]
|
D | unique_copy.pass.cpp | 76 const int ih[] = {0, 1, 1}; in test() local 77 const unsigned sh = sizeof(ih)/sizeof(ih[0]); in test() 79 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh)); in test()
|
D | unique_copy_pred.pass.cpp | 99 const int ih[] = {0, 1, 1}; in test() local 100 const unsigned sh = sizeof(ih)/sizeof(ih[0]); in test() 103 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh), count_equal()); in test()
|
/external/kernel-headers/original/uapi/linux/ |
D | coda.h | 322 struct coda_in_hdr ih; member 336 struct coda_in_hdr ih; member 347 struct coda_in_hdr ih; member 358 struct coda_in_hdr ih; member 369 struct coda_in_hdr ih; member 386 struct coda_in_hdr ih; member 398 struct coda_in_hdr ih; member 409 struct coda_in_hdr ih; member 425 struct coda_in_hdr ih; member 440 struct coda_in_hdr ih; member [all …]
|
/external/fdlibm/ |
D | k_rem_pio2.c | 170 int jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local 205 ih = 0; 209 ih = iq[jz-1]>>(23-q0); 211 else if(q0==0) ih = iq[jz-1]>>23; 212 else if(z>=0.5) ih=2; 214 if(ih>0) { /* q > 0.5 */ 232 if(ih==2) { 286 y[0] = (ih==0)? fw: -fw; 292 y[0] = (ih==0)? fw: -fw; 295 y[1] = (ih==0)? fw: -fw; [all …]
|
/external/webrtc/talk/session/media/ |
D | yuvscaler_unittest.cc | 98 bool TestScale(int iw, int ih, int ow, int oh, int offset, bool usefile, in TestScale() argument 102 size_t isize = I420_SIZE(iw, ih); in TestScale() 116 if (!LoadPlanarYuvTestImage("faces", iw, ih, ibuf) || in TestScale() 149 EXPECT_EQ(0, libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh, in TestScale() 193 const int iw = 640, ih = 360; in TEST_F() local 195 ALIGN16(uint8_t ibuf[I420_SIZE(iw, ih)]); in TEST_F() 199 ASSERT_TRUE(LoadPlanarYuvTestImage("faces", iw, ih, ibuf)); in TEST_F() 201 libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh, 0, false); in TEST_F() 209 const int iw = 640, ih = 360; in TEST_F() local 212 scoped_ptr<uint8_t[]> ibuffer(new uint8_t[I420_SIZE(iw, ih) + kAlignment]); in TEST_F() [all …]
|
/external/v8/src/third_party/fdlibm/ |
D | fdlibm.cc | 100 int32_t ih = 0; in INLINE() local 105 ih = iq[jz - 1] >> (23 - q0); in INLINE() 107 ih = iq[jz - 1] >> 23; in INLINE() 109 ih = 2; in INLINE() 112 if (ih > 0) { in INLINE() 131 if (ih == 2) { in INLINE() 188 y[0] = (ih == 0) ? fw : -fw; in INLINE() 191 y[1] = (ih == 0) ? fw : -fw; in INLINE()
|
/external/libcxx/test/std/experimental/func/func.searchers/func.searchers.default/func.searchers.default.creation/ |
D | make_default_searcher.pass.cpp | 60 int ih[] = {0, 1, 1, 1, 1, 2, 3, 0, 1, 2, 3, 4}; in test() local 61 const unsigned sh = sizeof(ih)/sizeof(ih[0]); in test() 63 do_search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), Iter1(ih+3)); in test()
|
D | make_default_searcher.pred.pass.cpp | 72 int ih[] = {0, 1, 1, 1, 1, 2, 3, 0, 1, 2, 3, 4}; in test() local 73 const unsigned sh = sizeof(ih)/sizeof(ih[0]); in test() 75 do_search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), Iter1(ih+3), sh*3); in test()
|
/external/libcxx/test/std/experimental/func/func.searchers/func.searchers.default/ |
D | default.pass.cpp | 74 int ih[] = {0, 1, 1, 1, 1, 2, 3, 0, 1, 2, 3, 4}; in test() local 75 const unsigned sh = sizeof(ih)/sizeof(ih[0]); in test() 77 do_search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), Iter1(ih+3)); in test()
|
D | default.pred.pass.cpp | 86 int ih[] = {0, 1, 1, 1, 1, 2, 3, 0, 1, 2, 3, 4}; in test() local 87 const unsigned sh = sizeof(ih)/sizeof(ih[0]); in test() 89 do_search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), Iter1(ih+3), sh*3); in test()
|
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/ |
D | search.pass.cpp | 50 int ih[] = {0, 1, 1, 1, 1, 2, 3, 0, 1, 2, 3, 4}; in test() local 51 const unsigned sh = sizeof(ih)/sizeof(ih[0]); in test() 53 assert(std::search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3)) == Iter1(ih+3)); in test()
|
D | search_pred.pass.cpp | 93 int ih[] = {0, 1, 1, 1, 1, 2, 3, 0, 1, 2, 3, 4}; in test() local 94 const unsigned sh = sizeof(ih)/sizeof(ih[0]); in test() 96 …assert(std::search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), count_equal()) == Iter1(ih+3)); in test()
|
/external/tcpdump/ |
D | print-juniper.c | 510 const struct juniper_ipsec_header *ih; in juniper_es_print() local 517 ih = (struct juniper_ipsec_header *)p; in juniper_es_print() 519 switch (ih->type) { in juniper_es_print() 533 ih->type, in juniper_es_print() 544 EXTRACT_16BITS(&ih->sa_index), in juniper_es_print() 545 ih->ttl, in juniper_es_print() 546 tok2str(juniper_ipsec_type_values,"Unknown",ih->type), in juniper_es_print() 547 ih->type, in juniper_es_print() 548 EXTRACT_32BITS(&ih->spi), in juniper_es_print() 549 ipaddr_string(ndo, &ih->src_ip), in juniper_es_print() [all …]
|
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/ |
D | SubstitutableLoggerTest.java | 51 LoggerInvocationHandler ih = new LoggerInvocationHandler(); in testDelegate() local 52 …r = (Logger) Proxy.newProxyInstance(getClass().getClassLoader(), new Class[] { Logger.class }, ih); in testDelegate() 58 expectedMethodSignatures.removeAll(ih.getInvokedMethodSignatures()); in testDelegate()
|
/external/dbus/bus/ |
D | driver.c | 1824 const InterfaceHandler *ih; in bus_driver_generate_introspect_string() local 1832 for (ih = interface_handlers; ih->name != NULL; ih++) in bus_driver_generate_introspect_string() 1835 ih->name)) in bus_driver_generate_introspect_string() 1838 for (mh = ih->message_handlers; mh->name != NULL; mh++) in bus_driver_generate_introspect_string() 1854 if (ih->extra_introspection != NULL && in bus_driver_generate_introspect_string() 1855 !_dbus_string_append (xml, ih->extra_introspection)) in bus_driver_generate_introspect_string() 1937 const InterfaceHandler *ih; in bus_driver_handle_message() local 1975 for (ih = interface_handlers; ih->name != NULL; ih++) in bus_driver_handle_message() 1977 if (interface != NULL && strcmp (interface, ih->name) != 0) in bus_driver_handle_message() 1982 for (mh = ih->message_handlers; mh->name != NULL; mh++) in bus_driver_handle_message()
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
D | AnnotationImpl.java | 239 InvocationHandler ih = Proxy.getInvocationHandler(obj); in checkEquals() local 240 if (ih instanceof AnnotationImpl) { in checkEquals() 241 AnnotationImpl other = (AnnotationImpl) ih; in checkEquals()
|
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/ |
D | GifFrame.java | 7 int ix, iy, iw, ih; field in GifFrame
|
D | GifDecoder.java | 456 for (int i = 0; i < currentFrame.ih; i++) { in setPixels() 459 if (iline >= currentFrame.ih) { in setPixels() 528 int npix = (frame == null) ? header.width * header.height : frame.iw * frame.ih; in decodeBitmapData()
|
D | GifHeaderParser.java | 180 header.currentFrame.ih = readShort(); in readBitmap()
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/ |
D | es-ES_zl0_kdt_mgc4.pkb | 48 �ð�@�B'p��GDJ1����_5��V��e4�ð�����i�^�����>��-�E���:;�h�ö����v٥��cA�C��ihÂf��…
|
/external/libvpx/libvpx/examples/ |
D | vp8_multi_resolution_encoder.c | 495 unsigned int ih = cfg[i-1].g_h*dsf[i-1].den + dsf[i-1].num - 1; in main() local 497 cfg[i].g_h = ih/dsf[i-1].num; in main()
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | renderer.c | 1230 VGint x0, y0, x1, y1, iw, ih; in update_clip_state() local 1248 ih = y1 - y0; in update_clip_state() 1249 if (iw > 0 && ih> 0 ) in update_clip_state() 1250 renderer_scissor(renderer, x0, y0, iw, ih); in update_clip_state()
|