Home
last modified time | relevance | path

Searched refs:ih (Results 1 – 25 of 48) sorted by relevance

12

/external/libyuv/files/unit_test/
Drotate_test.cc29 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/algorithms/alg.modifying.operations/alg.unique/
Dunique.pass.cpp71 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 …]
Dunique_pred.pass.cpp93 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 …]
Dunique_copy.pass.cpp76 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()
Dunique_copy_pred.pass.cpp99 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/
Dcoda.h322 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/
Dk_rem_pio2.c170 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/chromium_org/third_party/libjingle/source/talk/session/media/
Dyuvscaler_unittest.cc98 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()
113 if (!LoadPlanarYuvTestImage("faces", iw, ih, ibuf) || in TestScale()
146 EXPECT_EQ(0, libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh, in TestScale()
190 const int iw = 640, ih = 360; in TEST_F() local
192 ALIGN16(uint8 ibuf[I420_SIZE(iw, ih)]); in TEST_F()
196 ASSERT_TRUE(LoadPlanarYuvTestImage("faces", iw, ih, ibuf)); in TEST_F()
198 libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh, 0, false); in TEST_F()
206 const int iw = 640, ih = 360; in TEST_F() local
209 scoped_ptr<uint8[]> ibuffer(new uint8[I420_SIZE(iw, ih) + kAlignment]); in TEST_F()
[all …]
/external/chromium_org/v8/third_party/fdlibm/
Dfdlibm.cc153 int32_t ih = 0; in __kernel_rem_pio2() local
158 ih = iq[jz - 1] >> (23 - q0); in __kernel_rem_pio2()
160 ih = iq[jz - 1] >> 23; in __kernel_rem_pio2()
162 ih = 2; in __kernel_rem_pio2()
165 if (ih > 0) { in __kernel_rem_pio2()
184 if (ih == 2) { in __kernel_rem_pio2()
241 y[0] = (ih == 0) ? fw : -fw; in __kernel_rem_pio2()
244 y[1] = (ih == 0) ? fw : -fw; in __kernel_rem_pio2()
/external/libcxx/test/algorithms/alg.nonmodifying/alg.search/
Dsearch.pass.cpp50 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()
Dsearch_pred.pass.cpp93 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/qemu/hw/android/goldfish/
Devents_device.c310 int il, ih; in events_set_bits() local
312 ih = bith / 8; in events_set_bits()
313 if (ih >= s->ev_bits[type].len) { in events_set_bits()
314 bits = g_malloc0(ih + 1); in events_set_bits()
320 s->ev_bits[type].len = ih + 1; in events_set_bits()
326 if (il >= ih) in events_set_bits()
330 while (++il < ih) in events_set_bits()
333 bits[ih] |= maskh; in events_set_bits()
/external/tcpdump/
Dprint-juniper.c515 const struct juniper_ipsec_header *ih; in juniper_es_print() local
522 ih = (struct juniper_ipsec_header *)p; in juniper_es_print()
524 switch (ih->type) { in juniper_es_print()
537 ih->type, in juniper_es_print()
548 EXTRACT_16BITS(&ih->sa_index), in juniper_es_print()
549 ih->ttl, in juniper_es_print()
550 tok2str(juniper_ipsec_type_values,"Unknown",ih->type), in juniper_es_print()
551 ih->type, in juniper_es_print()
552 EXTRACT_32BITS(&ih->spi), in juniper_es_print()
553 ipaddr_string(&ih->src_ip), in juniper_es_print()
[all …]
/external/chromium-trace/trace-viewer/src/ui/
Dquad_view.js184 var ih = quad.canvas.height;
190 0, 0, iw, 0, 0, ih);
196 iw, 0, iw, ih, 0, ih);
/external/javassist/src/main/javassist/bytecode/annotation/
DAnnotationImpl.java239 InvocationHandler ih = Proxy.getInvocationHandler(obj); in checkEquals() local
240 if (ih instanceof AnnotationImpl) { in checkEquals()
241 AnnotationImpl other = (AnnotationImpl) ih; in checkEquals()
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/voronoi/
Dvoronoi.cc329 int ih = kStartRecurseSize; in wRenderRect() local
333 if (iy + ih > ps_context_->height) in wRenderRect()
334 ih = ps_context_->height - iy; in wRenderRect()
335 if (iw <= 0 || ih <= 0) in wRenderRect()
338 wSubdivide(ix, iy, iw, ih); in wRenderRect()
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
DGifFrame.java7 public int ix, iy, iw, ih; field in GifFrame
DGifDecoder.java353 for (int i = 0; i < previousFrame.ih; i++) { in setPixels()
378 for (int i = 0; i < currentFrame.ih; i++) { in setPixels()
381 if (iline >= currentFrame.ih) { in setPixels()
439 int npix = (frame == null) ? header.width * header.height : frame.iw * frame.ih; in decodeBitmapData()
/external/srec/config/en.us/models/
Dgeneric.pht14 54 ih 6 2
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
Dvp8_multi_resolution_encoder.c157 unsigned int ih = cfg[i - 1].g_h * dsf[i - 1].den + dsf[i - 1].num - 1; in main() local
159 cfg[i].g_h = ih / dsf[i - 1].num; in main()
/external/libvpx/libvpx/examples/
Dvp8_multi_resolution_encoder.c302 unsigned int ih = cfg[i-1].g_h*dsf[i-1].den + dsf[i-1].num - 1; in main() local
304 cfg[i].g_h = ih/dsf[i-1].num; in main()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/
Des-ES_zl0_kdt_mgc4.pkb48 �ð�@�B'p��GDJ1����_5��V��e4�ð�����i�^�����>��-�E���:;�h�ö����v٥��cA�C��ihÂf��…
/external/chromium_org/third_party/icu/source/common/
Dputil.cpp1655 Intl1Hndl ih; in uprv_getDefaultLocaleID()
1657 ih = (Intl1Hndl) GetIntlResource(1); in uprv_getDefaultLocaleID()
1658 if (ih) in uprv_getDefaultLocaleID()
1659 date_region = ((uint16_t)(*ih)->intl1Vers) >> 8; in uprv_getDefaultLocaleID()
/external/icu/icu4c/source/common/
Dputil.cpp1655 Intl1Hndl ih; in uprv_getDefaultLocaleID()
1657 ih = (Intl1Hndl) GetIntlResource(1); in uprv_getDefaultLocaleID()
1658 if (ih) in uprv_getDefaultLocaleID()
1659 date_region = ((uint16_t)(*ih)->intl1Vers) >> 8; in uprv_getDefaultLocaleID()
/external/mesa3d/src/gallium/state_trackers/vega/
Drenderer.c1230 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()

12