/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/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/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/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/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/ |
D | TexturePacker.java | 169 int ih = image.getHeight(); in writeImages() local 179 plot(canvas, rectX + ih - 1 + j, rectY + iw - 1 + i, image.getRGB(0, ih - 1)); in writeImages() 181 plot(canvas, rectX + ih - 1 + j, rectY - i, image.getRGB(iw - 1, ih - 1)); in writeImages() 188 plot(canvas, rectX + ih - 1 + i, rectY + iw - 1 - j, image.getRGB(j, ih - 1)); in writeImages() 192 for (int j = 0; j < ih; j++) { in writeImages() 202 plot(canvas, rectX - i, rectY + ih - 1 + j, image.getRGB(0, ih - 1)); in writeImages() 204 plot(canvas, rectX + iw - 1 + i, rectY + ih - 1 + j, image.getRGB(iw - 1, ih - 1)); in writeImages() 210 copy(image, 0, ih - 1, iw, 1, canvas, rectX, rectY + ih - 1 + i, rect.rotated); in writeImages() 213 copy(image, 0, 0, 1, ih, canvas, rectX - i, rectY, rect.rotated); in writeImages() 214 copy(image, iw - 1, 0, 1, ih, canvas, rectX + iw - 1 + i, rectY, rect.rotated); in writeImages() [all …]
|
/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/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/Shapes/ |
D | b2PolygonShape.cpp | 181 int32 ih = i0; in Set() local 185 hull[m] = ih; in Set() 190 if (ie == ih) in Set() 212 ih = ie; in Set()
|
/external/v8/src/base/ |
D | ieee754.cc | 525 int32_t jz, jx, jv, jp, jk, carry, n, iq[20], i, j, k, m, q0, ih; in __kernel_rem_pio2() local 565 ih = 0; in __kernel_rem_pio2() 570 ih = iq[jz - 1] >> (23 - q0); in __kernel_rem_pio2() 572 ih = iq[jz - 1] >> 23; in __kernel_rem_pio2() 574 ih = 2; in __kernel_rem_pio2() 577 if (ih > 0) { /* q > 0.5 */ in __kernel_rem_pio2() 601 if (ih == 2) { in __kernel_rem_pio2() 665 y[0] = (ih == 0) ? fw : -fw; in __kernel_rem_pio2() 671 y[0] = (ih == 0) ? fw : -fw; in __kernel_rem_pio2() 674 y[1] = (ih == 0) ? fw : -fw; in __kernel_rem_pio2() [all …]
|
/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()
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/ |
D | PolygonShape.java | 178 int ih = i0; in set() local 181 hull[m] = ih; in set() 185 if (ie == ih) { in set() 204 ih = ie; in set()
|
/external/ImageMagick/MagickCore/ |
D | accelerate-kernels-private.h | 1081 int ih = (int)h; 1082 setRed(&rgb, (ih == 1)?clamped_q: 1083 (ih == 2 || ih == 3)?clamped_p: 1084 (ih == 4)?clamped_t: 1087 setGreen(&rgb, (ih == 1 || ih == 2)?clampedBrightness: 1088 (ih == 3)?clamped_q: 1089 (ih == 4 || ih == 5)?clamped_p: 1092 setBlue(&rgb, (ih == 2)?clamped_t: 1093 (ih == 3 || ih == 4)?clampedBrightness: 1094 (ih == 5)?clamped_q:
|
/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��…
|