Home
last modified time | relevance | path

Searched refs:iw (Results 1 – 25 of 151) sorted by relevance

1234567

/external/e2fsprogs/debugfs/
Dncheck.c44 struct inode_walk_struct *iw = (struct inode_walk_struct *) private; in ncheck_proc() local
50 iw->position++; in ncheck_proc()
51 if (iw->position <= 2) in ncheck_proc()
53 for (i=0; i < iw->num_inodes; i++) { in ncheck_proc()
54 if (iw->iarray[i] == dirent->inode) { in ncheck_proc()
55 if (!iw->parent && !iw->get_pathname_failed) { in ncheck_proc()
57 iw->dir, in ncheck_proc()
58 0, &iw->parent); in ncheck_proc()
61 "while calling ext2fs_get_pathname for inode #%u", iw->dir); in ncheck_proc()
62 iw->get_pathname_failed = 1; in ncheck_proc()
[all …]
/external/libyuv/files/unit_test/
Drotate_test.cc29 int iw, ih, ow, oh; in TEST_F() local
32 for (iw = 8; iw < rotate_max_w_ && !err; ++iw) { in TEST_F()
36 oh = iw; 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/libmtp/src/
Dplaylist-spl.c338 char* iw = w; in read_into_spl_text_t() local
368 …IF_DEBUG() printf("read buff= {%dB new, %dB old/left-over}%s\n",(int)rdcnt, (int)(iw-w), eof?", EO… in read_into_spl_text_t()
375 *iw = '\0'; in read_into_spl_text_t()
377 *iw = *it; in read_into_spl_text_t()
380 iw++; in read_into_spl_text_t()
383 if( (iw-w) >= 2 && // we must have at least two bytes in read_into_spl_text_t()
384 *(iw-1) == '\0' && *(iw-2) == '\0' && // 0x0000 is end-of-string in read_into_spl_text_t()
387 !((iw-w)%2) ) { in read_into_spl_text_t()
392 iw = w; in read_into_spl_text_t()
408 iw = w; // start again in read_into_spl_text_t()
[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/speex/libspeex/
Dsmallft.c578 int ip,iw,ido,idl1,ix2,ix3; in drftf1() local
583 iw=n; in drftf1()
591 iw-=(ip-1)*ido; in drftf1()
596 ix2=iw+ido; in drftf1()
599 dradf4(ido,l1,ch,c,wa+iw-1,wa+ix2-1,wa+ix3-1); in drftf1()
601 dradf4(ido,l1,c,ch,wa+iw-1,wa+ix2-1,wa+ix3-1); in drftf1()
608 dradf2(ido,l1,c,ch,wa+iw-1); in drftf1()
612 dradf2(ido,l1,ch,c,wa+iw-1); in drftf1()
619 dradfg(ido,ip,l1,idl1,c,c,c,ch,ch,wa+iw-1); in drftf1()
624 dradfg(ido,ip,l1,idl1,ch,ch,ch,c,c,wa+iw-1); in drftf1()
[all …]
/external/libvorbis/lib/
Dsmallft.c576 int ip,iw,ido,idl1,ix2,ix3; in drftf1() local
581 iw=n; in drftf1()
589 iw-=(ip-1)*ido; in drftf1()
594 ix2=iw+ido; in drftf1()
597 dradf4(ido,l1,ch,c,wa+iw-1,wa+ix2-1,wa+ix3-1); in drftf1()
599 dradf4(ido,l1,c,ch,wa+iw-1,wa+ix2-1,wa+ix3-1); in drftf1()
606 dradf2(ido,l1,c,ch,wa+iw-1); in drftf1()
610 dradf2(ido,l1,ch,c,wa+iw-1); in drftf1()
617 dradfg(ido,ip,l1,idl1,c,c,c,ch,ch,wa+iw-1); in drftf1()
622 dradfg(ido,ip,l1,idl1,ch,ch,ch,c,c,wa+iw-1); in drftf1()
[all …]
/external/chromium_org/third_party/libyuv/util/
Dssim.cc75 static double FinalizeSSIM(double iw, double xm, double ym, in FinalizeSSIM() argument
77 const double iwx = xm * iw; in FinalizeSSIM()
78 const double iwy = ym * iw; in FinalizeSSIM()
79 double sxx = xxm * iw - iwx * iwx; in FinalizeSSIM()
80 double syy = yym * iw - iwy * iwy; in FinalizeSSIM()
85 const double sxy = xym * iw - iwx * iwy; in FinalizeSSIM()
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DDalvInsnList.java226 IndentingWriter iw = new IndentingWriter(out, 0, prefix); in debugPrint() local
241 iw.write(s); in debugPrint()
245 iw.flush(); in debugPrint()
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
Dvec3.js420 iw = -qx * x - qy * y - qz * z;
423 out[0] = ix * qw + iw * -qx + iy * -qz - iz * -qy;
424 out[1] = iy * qw + iw * -qy + iz * -qx - ix * -qz;
425 out[2] = iz * qw + iw * -qz + ix * -qy - iy * -qx;
Dvec4.js424 iw = -qx * x - qy * y - qz * z;
427 out[0] = ix * qw + iw * -qx + iy * -qz - iz * -qy;
428 out[1] = iy * qw + iw * -qy + iz * -qx - ix * -qz;
429 out[2] = iz * qw + iw * -qz + ix * -qy - iy * -qx;
/external/chromium-trace/trace-viewer/src/ui/
Dquad_view.js183 var iw = quad.canvas.width;
190 0, 0, iw, 0, 0, ih);
196 iw, 0, iw, ih, 0, ih);
/external/llvm/include/llvm/MC/
DMCSchedule.h221 MCSchedModel(unsigned iw, int mbs, int lmbs, unsigned ll, unsigned hl, in MCSchedModel() argument
225 IssueWidth(iw), MicroOpBufferSize(mbs), LoopMicroOpBufferSize(lmbs), in MCSchedModel()
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/voronoi/
Dvoronoi.cc328 int iw = kStartRecurseSize; in wRenderRect() local
331 if (ix + iw > ps_context_->width) in wRenderRect()
332 iw = ps_context_->width - ix; 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.java355 int n2 = n1 + previousFrame.iw; in setPixels()
406 int dlim = dx + currentFrame.iw; // end of dest line in setPixels()
410 int sx = i * currentFrame.iw; // start of line in source in setPixels()
439 int npix = (frame == null) ? header.width * header.height : frame.iw * frame.ih; in decodeBitmapData()
/external/chromium_org/third_party/icu/source/data/coll/
Diw.txt9 iw{
/external/icu/icu4c/source/data/lang/
Diw.txt9 iw{
/external/chromium_org/third_party/icu/source/data/lang/
Diw.txt9 iw{
/external/icu/icu4c/source/data/locales/
Diw.txt9 iw{
/external/icu/icu4c/source/data/region/
Diw.txt9 iw{
/external/icu/icu4c/source/data/curr/
Diw.txt9 iw{
/external/chromium_org/third_party/icu/source/data/curr/
Diw.txt9 iw{
/external/icu/icu4c/source/data/zone/
Diw.txt9 iw{
/external/chromium_org/third_party/icu/source/data/zone/
Diw.txt9 iw{
/external/chromium_org/third_party/icu/source/data/region/
Diw.txt9 iw{

1234567