Home
last modified time | relevance | path

Searched refs:sptr (Results 1 – 3 of 3) sorted by relevance

/packages/modules/StatsD/lib/libkll/encoding/
Dvarint.cpp20 char* Varint::Encode32(char* sptr, uint32_t v) { in Encode32() argument
21 return Encode32Inline(sptr, v); in Encode32()
24 char* Varint::Encode64(char* sptr, uint64_t v) { in Encode64() argument
26 return Varint::Encode32(sptr, v); in Encode64()
29 unsigned char* ptr = reinterpret_cast<unsigned char*>(sptr); in Encode64()
Dvarint.h50 inline char* Varint::Encode32Inline(char* sptr, uint32_t v) { in Encode32Inline() argument
52 uint8_t* ptr = reinterpret_cast<uint8_t*>(sptr); in Encode32Inline()
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
DBlend.cpp877 PyramidShort *sptr = m_pFrameYPyr; in ProcessPyramidForThisFrame() local
887 … for (int n = m_wb.nlevs; n--; dscale++, dptr++, sptr++, dvptr++, duptr++, svptr++, suptr++, nC--) in ProcessPyramidForThisFrame()
986 if(inSegment(x1, sptr->width, BORDER-1) && in ProcessPyramidForThisFrame()
987 inSegment(y1, sptr->height, BORDER-1)) in ProcessPyramidForThisFrame()
992 wt1 * ciCalc(sptr, x1, y1, xfrac, yfrac)); in ProcessPyramidForThisFrame()
1002 if(inSegment(x1, sptr->width, BORDER) && inSegment(y1, sptr->height, BORDER)) in ProcessPyramidForThisFrame()
1008 double y1val = sptr->ptr[y1][x1] + in ProcessPyramidForThisFrame()
1009 (sptr->ptr[y1][x2] - sptr->ptr[y1][x1]) * xfrac; in ProcessPyramidForThisFrame()
1010 double y2val = sptr->ptr[y2][x1] + in ProcessPyramidForThisFrame()
1011 (sptr->ptr[y2][x2] - sptr->ptr[y2][x1]) * xfrac; in ProcessPyramidForThisFrame()
[all …]