HomeSort by relevance Sort by last modified time
    Searched refs:iw (Results 1 - 25 of 132) sorted by null

1 2 3 4 5 6

  /external/e2fsprogs/debugfs/
ncheck.c 45 struct inode_walk_struct *iw = (struct inode_walk_struct *) private; local
51 iw->position++;
52 if (iw->position <= 2)
54 for (i=0; i < iw->num_inodes; i++) {
55 if (iw->iarray[i] == dirent->inode) {
56 if (!iw->parent && !iw->get_pathname_failed) {
58 iw->dir,
59 0, &iw->parent);
62 "while calling ext2fs_get_pathname for inode #%u", iw->dir)
94 struct inode_walk_struct iw; local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_camera.cpp 31 double iw,ih,av_size,field_fact; local
36 iw=(double)im_width;
38 av_size=(iw+ih)/2.0;
41 K[2]=iw/2.0;
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifFrame.java 7 int ix, iy, iw, ih; field in class:GifFrame
  /external/iw/
Android.mk 6 iw.c genl.c event.c info.c phy.c \
26 LOCAL_MODULE := iw
33 $(hide) echo '#include "iw.h"' >$@
Makefile 15 OBJS = iw.o genl.o event.o info.o phy.o \
26 ALL = iw
95 version.c: version.sh $(patsubst %.o,%.c,$(VERSION_OBJS)) nl80211.h iw.h Makefile \
100 %.o: %.c iw.h nl80211.h
105 iw: $(OBJS)
106 @$(NQ) ' CC ' iw
107 $(Q)$(CC) $(LDFLAGS) $(OBJS) $(LIBS) -o iw
117 install: iw iw.8.gz
118 @$(NQ) ' INST iw'
    [all...]
  /packages/apps/Gallery2/jni/filters/
redEyeMath.c 35 void findPossible(unsigned char *src, unsigned char *mask, int iw, int ih,
41 int sy = (recY + y) * iw;
56 void findReds(unsigned char *src, unsigned char *mask, int iw, int ih,
62 int sy = (recY + y) * iw;
73 void dialateMaskIfRed(unsigned char *src, int iw, int ih, unsigned char *mask,
80 int sy = (recY + y) * iw;
112 void filterRedEye(unsigned char *src, unsigned char *dest, int iw, int ih, short *rect) {
121 rect[2] = MIN(rect[2]+rect[0],iw)-rect[0];
124 findReds(src, mask2, iw, ih, rect);
129 findPossible(src, mask2, iw, ih, rect)
    [all...]
filters.h 51 extern void filterRedEye(unsigned char *src, unsigned char *dest, int iw, int ih, short *rect);
wbalance.c 103 void estmateWhiteBox(unsigned char *src, int iw, int ih, int x,int y, int *wr, int *wb, int *wg){
112 if (x>=(iw-bounds)) x = (iw-bounds-1);
121 int i = 4*(xp+yp*iw);
  /external/webrtc/talk/session/media/
yuvscaler_unittest.cc 98 bool TestScale(int iw, int ih, int ow, int oh, int offset, bool usefile,
102 size_t isize = I420_SIZE(iw, ih);
116 if (!LoadPlanarYuvTestImage("faces", iw, ih, ibuf) ||
149 EXPECT_EQ(0, libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh,
193 const int iw = 640, ih = 360; local
195 ALIGN16(uint8_t ibuf[I420_SIZE(iw, ih)]);
199 ASSERT_TRUE(LoadPlanarYuvTestImage("faces", iw, ih, ibuf));
201 libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh, 0, false);
209 const int iw = 640, ih = 360; local
212 scoped_ptr<uint8_t[]> ibuffer(new uint8_t[I420_SIZE(iw, ih) + kAlignment])
    [all...]
  /external/libmtp/src/
playlist-spl.c 338 char* iw = w; local
368 IF_DEBUG() printf("read buff= {%dB new, %dB old/left-over}%s\n",(int)rdcnt, (int)(iw-w), eof?", EOF":"");
375 *iw = '\0';
377 *iw = *it;
380 iw++;
383 if( (iw-w) >= 2 && // we must have at least two bytes
384 *(iw-1) == '\0' && *(iw-2) == '\0' && // 0x0000 is end-of-string
387 !((iw-w)%2) ) {
392 iw = w
674 char* iw = w + M; \/\/ iterator on w local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
IconFactory.java 96 float iw = iconWidth * s; local
99 float borderW = (sourceWidth - iw) / 2.0f;
101 RectF rec = new RectF(borderW, borderH, borderW + iw, borderH + ih);
  /device/google/contexthub/firmware/lib/libm/
ef_asin.c 77 __int32_t iw; local
79 GET_FLOAT_WORD(iw,w);
80 SET_FLOAT_WORD(w,iw&0xfffff000);
  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 287 IndentingWriter iw = new IndentingWriter(sw, w2, separator); local
289 iw.write(s2);
291 iw.write('\n');
293 iw.flush();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageTinyPlanet.java 156 float iw = bitmap.getWidth(); local
161 if (sw * ih > sh * iw) {
162 nsw = sh * iw / ih;
164 nsh = sw * ih / iw;
  /external/autotest/server/cros/network/
connection_worker.py 54 iw = iw_runner.IwRunner(remote_host=work_client_host)
55 phys = iw.list_phys()
56 devs = iw.list_interfaces(desired_if_type='managed')
60 iw.remove_interface(devs[i].if_name)
63 iw.add_interface('phy1', 'work0', 'managed')
64 logging.debug('Interfaces in work client %s', iw.list_interfaces())
  /libcore/ojluni/src/main/java/sun/security/util/
ObjectIdentifier.java 490 * @param iw NUB for input
494 private static byte[] pack(byte[] in, int ioffset, int ilength, int iw, int ow) {
495 assert (iw > 0 && iw <= 8): "input NUB must be between 1 and 8";
498 if (iw == ow) {
502 int bits = ilength * iw; // number of all used bits
512 int count = iw - ipos%iw; // unpacked bits in current input byte
518 (((in[ioffset+ipos/iw]+256) // locate the byte (+256 so that it's never negative)
519 >> (iw-ipos%iw-count)) // move to the end of a byt
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsnList.java 225 IndentingWriter iw = new IndentingWriter(out, 0, prefix); local
240 iw.write(s);
244 iw.flush();
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsnList.java 239 IndentingWriter iw = new IndentingWriter(out, 0, prefix); local
254 iw.write(s);
258 iw.flush();
  /external/autotest/server/site_tests/brillo_WifiInterfaceTest/
brillo_WifiInterfaceTest.py 69 iw = iw_runner.IwRunner(remote_host=host)
73 for iface_tuple in iw.list_interfaces()]
77 'Interface %s not listed by iw' % wifi_iface)
83 iface_ssid = iw.get_link_value(iface, 'SSID')
88 raise error.TestFail('Failed to run iw')
  /external/autotest/client/site_tests/network_WlanRegulatory/
network_WlanRegulatory.py 17 the kernel from the "iw" userspace utility to change the system
37 logging.info('Using iw to set regulatory domain to %s', regdomain)
42 # "iw" utility, we must wait a while.
47 raise error.TestFail('Expected iw to set regdomain %s but got %s' %
  /external/ltp/testcases/commands/ade/ld/
ld01 71 #diff -iw $TCtmp/errmsg.out $TCtmp/errmsg.exp
102 diff -iw $TCtmp/errmsg.out $TCtmp/errmsg.exp
106 diff -iw $TCtmp/errmsg.out $TCtmp/errmsg.exp2
129 #diff -iw $TCtmp/errmsg.out $TCtmp/errmsg.exp
157 diff -iw $TCtmp/errmsg.out $TCtmp/errmsg.exp
161 diff -iw $TCtmp/errmsg.out $TCtmp/errmsg.exp2
  /external/libyuv/files/util/
ssim.cc 80 static double FinalizeSSIM(double iw,
86 const double iwx = xm * iw;
87 const double iwy = ym * iw;
88 double sxx = xxm * iw - iwx * iwx;
89 double syy = yym * iw - iwy * iwy;
96 const double sxy = xym * iw - iwx * iwy;
  /frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
MainActivity.java 97 int iw = mImgView.getDrawable().getIntrinsicWidth();
126 float scale = mZoom * Math.min(sw / (float) iw, sh / (float) ih);
127 mXOffset = mDownXOffset + 2 * (dx / (sw - scale * iw));
198 int iw = mImgView.getDrawable().getIntrinsicWidth(); local
203 float scale = mZoom * Math.min(sw / (float) iw, sh / (float) ih);
204 mMatrix.postTranslate((1 + mXOffset) * (sw - iw * scale) / 2,
  /frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
MainActivity.java 97 int iw = mImgView.getDrawable().getIntrinsicWidth();
126 float scale = mZoom * Math.min(sw / (float) iw, sh / (float) ih);
127 mXOffset = mDownXOffset + 2 * (dx / (sw - scale * iw));
198 int iw = mImgView.getDrawable().getIntrinsicWidth(); local
203 float scale = mZoom * Math.min(sw / (float) iw, sh / (float) ih);
204 mMatrix.postTranslate((1 + mXOffset) * (sw - iw * scale) / 2,
  /external/libvorbis/lib/
smallft.c 576 int ip,iw,ido,idl1,ix2,ix3; local
581 iw=n;
589 iw-=(ip-1)*ido;
594 ix2=iw+ido;
597 dradf4(ido,l1,ch,c,wa+iw-1,wa+ix2-1,wa+ix3-1);
599 dradf4(ido,l1,c,ch,wa+iw-1,wa+ix2-1,wa+ix3-1);
606 dradf2(ido,l1,c,ch,wa+iw-1);
610 dradf2(ido,l1,ch,c,wa+iw-1);
617 dradfg(ido,ip,l1,idl1,c,c,c,ch,ch,wa+iw-1);
622 dradfg(ido,ip,l1,idl1,ch,ch,ch,c,c,wa+iw-1)
1157 int nf,ip,iw,ix2,ix3,ido,idl1; local
    [all...]

Completed in 1967 milliseconds

1 2 3 4 5 6