Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/common/
Dvp8_skin_detection.c42 const int vsource = avg_2x2(v + 3 * strideuv + 3, strideuv); in vp8_compute_skin_block() local
43 return vpx_skin_pixel(ysource, usource, vsource, motion); in vp8_compute_skin_block()
52 const int vsource = avg_2x2(v + strideuv + 1, strideuv); in vp8_compute_skin_block() local
53 num_skin += vpx_skin_pixel(ysource, usource, vsource, motion); in vp8_compute_skin_block()
/external/python/cpython3/Lib/idlelib/
Ddebugger.py60 vstack = vsource = vlocals = vglobals = None
167 if not self.vsource:
168 self.__class__.vsource = BooleanVar(top)
170 text="Source", command=self.show_source, variable=self.vsource)
233 if self.vsource.get():
306 if self.vsource.get():
/external/python/cpython2/Lib/idlelib/
DDebugger.py55 vstack = vsource = vlocals = vglobals = None
162 if not self.vsource:
163 self.__class__.vsource = BooleanVar(top)
165 text="Source", command=self.show_source, variable=self.vsource)
228 if self.vsource.get():
301 if self.vsource.get():
/external/libvpx/libvpx/vp9/encoder/
Dvp9_skin_detection.c33 const uint8_t vsource = v[uv_height_shift * strideuv + uv_width_shift]; in vp9_compute_skin_block() local
36 return vpx_skin_pixel(ysource, usource, vsource, motion); in vp9_compute_skin_block()