Home
last modified time | relevance | path

Searched refs:hsize (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Connectivity/bpf_progs/
Dtest.c62 int hsize = sizeof(*eth); variable
64 struct iphdr *ip = data + hsize;
65 hsize += sizeof(struct iphdr);
67 if (data + hsize > data_end) return XDP_PASS;
Dtest@mainline.c62 int hsize = sizeof(*eth); variable
64 struct iphdr *ip = data + hsize;
65 hsize += sizeof(struct iphdr);
67 if (data + hsize > data_end) return XDP_PASS;
/packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
Ddbstabsmooth.cpp108 bool db_StabilizationSmoother::smoothMotionAdaptive(/*VP_BIMG *bimg,*/int hsize, int vsize, VP_MOTI… in smoothMotionAdaptive() argument
119 double border_x = border_factor * hsize; in smoothMotionAdaptive()
131 … VP_PAR delta = vp_motion_cornerdiff(&testMotion, &identityMotion, 0, 0,(int)hsize, (int)vsize); in smoothMotionAdaptive()
154 …(void) vp_zoom_motion2d(&tmpMotion, &testMotion, 1, hsize, vsize, (double)f_zoom); // needs to ret… in smoothMotionAdaptive()
157 VP_WARP_POINT_2D(hsize - 1, 0, testMotion, p2x, p2y); in smoothMotionAdaptive()
158 VP_WARP_POINT_2D(hsize - 1, vsize - 1, testMotion, p3x, p3y); in smoothMotionAdaptive()
161 …if (!is_point_in_rect((double)p1x,(double)p1y,-border_x,-border_y,(double)(hsize+2.0*border_x),(do… in smoothMotionAdaptive()
164 …if (!is_point_in_rect((double)p2x, (double)p2y,-border_x,-border_y,(double)(hsize+2.0*border_x),(d… in smoothMotionAdaptive()
167 …if (!is_point_in_rect((double)p3x,(double)p3y,-border_x,-border_y,(double)(hsize+2.0*border_x),(do… in smoothMotionAdaptive()
170 …if (!is_point_in_rect((double)p4x, (double)p4y,-border_x,-border_y,(double)(hsize+2.0*border_x),(d… in smoothMotionAdaptive()
Ddbstabsmooth.h75 …bool smoothMotionAdaptive(/*VP_BIMG *bimg,*/int hsize, int vsize, VP_MOTION *inmot, VP_MOTION *out…
129 inline void setSize(int hsize, int vsize) { f_hsize = hsize; f_vsize = vsize; } in setSize() argument