HomeSort by relevance Sort by last modified time
    Searched refs:ih (Results 51 - 75 of 85) sorted by null

1 23 4

  /packages/apps/Gallery2/jni/filters/
redEyeMath.c 33 void findPossible(unsigned char *src, unsigned char *mask, int iw, int ih,
54 void findReds(unsigned char *src, unsigned char *mask, int iw, int ih,
71 void dialateMaskIfRed(unsigned char *src, int iw, int ih, unsigned char *mask,
110 void filterRedEye(unsigned char *src, unsigned char *dest, int iw, int ih, short *rect) {
120 rect[3] = MIN(rect[3]+rect[1],ih)-rect[1];
122 findReds(src, mask2, iw, ih, rect);
127 findPossible(src, mask2, iw, ih, rect);
131 dialateMaskIfRed(src, iw, ih, mask1, mask2, rect);
132 dialateMaskIfRed(src, iw, ih, mask2, mask1, rect);
hsv.c 86 int H,X,ih,is,iv; local
106 ih=(int)ch;
110 H = (6*ih)/k2;
111 X = ((iv*is)/k2)*(k2- abs(6*ih- 2*(H>>1)*k2 - k2)) ;
filters.h 51 extern void filterRedEye(unsigned char *src, unsigned char *dest, int iw, int ih, short *rect);
wbalance.c 101 void estmateWhiteBox(unsigned char *src, int iw, int ih, int x,int y, int *wr, int *wb, int *wg){
111 if (y>=(ih-bounds)) y = (ih-bounds-1);
  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.modifying.operations/alg.unique/
unique_copy.pass.cpp 76 const int ih[] = {0, 1, 1}; local
77 const unsigned sh = sizeof(ih)/sizeof(ih[0]);
79 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh));
unique_copy_pred.pass.cpp 99 const int ih[] = {0, 1, 1}; local
100 const unsigned sh = sizeof(ih)/sizeof(ih[0]);
103 r = std::unique_copy(InIter(ih), InIter(ih+sh), OutIter(jh), count_equal());
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageTinyPlanet.java 157 float ih = bitmap.getHeight(); local
161 if (sw * ih > sh * iw) {
162 nsw = sh * iw / ih;
164 nsh = sw * ih / iw;
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
shadows.rs 103 int H,X,ih,is,iv;
123 ih=(int)ch;
127 H = (6*ih)/k2;
128 X = ((iv*is)/k2)*(k2- abs(6*ih- 2*(H>>1)*k2 - k2)) ;
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
shadows.rs 103 int H,X,ih,is,iv;
123 ih=(int)ch;
127 H = (6*ih)/k2;
128 X = ((iv*is)/k2)*(k2- abs(6*ih- 2*(H>>1)*k2 - k2)) ;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
shadows.rs 103 int H,X,ih,is,iv;
123 ih=(int)ch;
127 H = (6*ih)/k2;
128 X = ((iv*is)/k2)*(k2- abs(6*ih- 2*(H>>1)*k2 - k2)) ;
  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.nonmodifying/alg.search/
search_pred.pass.cpp 93 int ih[] = {0, 1, 1, 1, 1, 2, 3, 0, 1, 2, 3, 4}; local
94 const unsigned sh = sizeof(ih)/sizeof(ih[0]);
96 assert(std::search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), count_equal()) == Iter1(ih+3));
  /external/grub/stage2/
fsys_reiserfs.c 217 #define IH_KEY_OFFSET(ih) ((ih)->ih_version == ITEM_VERSION_1 \
218 ? (ih)->ih_key.u.v1.k_offset \
219 : (ih)->ih_key.u.v2.k_offset)
221 #define IH_KEY_ISTYPE(ih, type) ((ih)->ih_version == ITEM_VERSION_1 \
222 ? (ih)->ih_key.u.v1.k_uniqueness == V1_##type \
223 : (ih)->ih_key.u.v2.k_type == V2_##type)
731 struct item_head *ih = INFO->current_ih + 1; local
735 printf ("next_key:\n old ih: key %d:%d:%d:%d version:%d\n",
826 struct item_head *ih; local
    [all...]
  /external/qemu/hw/
goldfish_events_device.c 306 int il, ih; local
308 ih = bith / 8;
309 if (ih >= s->ev_bits[type].len) {
310 bits = qemu_mallocz(ih + 1);
316 s->ev_bits[type].len = ih + 1;
322 if (il >= ih)
326 while (++il < ih)
329 bits[ih] |= maskh;
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_rem_pio2.c 118 * ih integer. If >0 it indicates q[] is >= 0.5, hence
296 int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
331 ih = 0;
335 ih = iq[jz-1]>>(23-q0);
337 else if(q0==0) ih = iq[jz-1]>>23;
338 else if(z>=0.5) ih=2;
340 if(ih>0) { /* q > 0.5 */
358 if(ih==2) {
412 y[0] = (ih==0)? fw: -fw;
419 y[0] = (ih==0)? fw: -fw;
    [all...]
  /external/tcpdump/
print-juniper.c 221 const struct juniper_ipsec_header *ih; local
228 ih = (struct juniper_ipsec_header *)p;
230 switch (ih->type) {
243 ih->type,
254 EXTRACT_16BITS(&ih->sa_index),
255 ih->ttl,
256 tok2str(juniper_ipsec_type_values,"Unknown",ih->type),
257 ih->type,
258 EXTRACT_32BITS(&ih->spi),
259 ipaddr_string(EXTRACT_32BITS(&ih->src_ip))
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationImpl.java 239 InvocationHandler ih = Proxy.getInvocationHandler(obj); local
240 if (ih instanceof AnnotationImpl) {
241 AnnotationImpl other = (AnnotationImpl) ih;
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseGeneralTest.java 832 DatabaseUtils.InsertHelper ih = local
992 DatabaseUtils.InsertHelper ih = local
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
ClipDrawable.java 208 final int ih = 0; //mClipState.mDrawable.getIntrinsicHeight(); local
210 h -= (h - ih) * (10000 - level) / 10000;
ScaleDrawable.java 221 final int ih = min ? mScaleState.mDrawable.getIntrinsicHeight() : 0; local
222 h -= (int) ((h - ih) * (10000 - level) * mScaleState.mScaleHeight / 10000);
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/bcel/2.0.1/
bcel-2.0.1.jar 
  /external/libvpx/libvpx/
vp8_multi_resolution_encoder.c 316 unsigned int ih = cfg[i-1].g_h*dsf[i-1].den + dsf[i-1].num - 1; local
318 cfg[i].g_h = ih/dsf[i-1].num;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_halfpel.cpp 19 Int HalfPel1_SAD_MB(UChar *ref,UChar *blk,Int dmin,Int width,Int ih,Int jh)
21 Int HalfPel1_SAD_Blk(UChar *ref,UChar *blk,Int dmin,Int width,Int ih,Int jh)
64 Int HalfPel1_SAD_MB(UChar *ref, UChar *blk, Int dmin, Int width, Int ih, Int jh)
74 if (ih) p2 = ref + 1;
138 Int HalfPel1_SAD_Blk(UChar *ref, UChar *blk, Int dmin, Int width, Int ih, Int jh)
148 if (ih) p2 = ref + 1;
  /external/icu4c/common/
putil.cpp     [all...]
  /external/libppp/src/
ip.c 304 const struct icmp *ih; local
315 ih = (const struct icmp *)payload;
316 sport = ih->icmp_type;
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 1591 milliseconds

1 23 4