Searched defs:lt (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/include/ui/
H A DRect.h44 inline Rect(const Point& lt, const Point& rb) { argument
45 left = lt.x; top = lt.y; right = rb.x; bottom = rb.y;
85 void setLeftTop(const Point& lt) { argument
86 left = lt.x;
87 top = lt.y;
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.c845 int32_t lt, rt, centerPlusRearContrib; // samples in Q19.12 format local
857 lt = (pSrc[0] << 12) + centerPlusRearContrib;
861 pDst[0] = clamp16(pDst[0] + (lt >> 13));
872 lt = (pSrc[0] << 12) + centerPlusRearContrib;
876 pDst[0] = clamp16(lt >> 13); // differs from when accumulate is true above
904 int32_t lt, rt, centerPlusLfeContrib; // samples in Q19.12 format local
919 lt = (pSrc[0] << 12) + centerPlusLfeContrib + (pSrc[4] << 12);
923 pDst[0] = clamp16(pDst[0] + (lt >> 13));
935 lt = (pSrc[0] << 12) + centerPlusLfeContrib + (pSrc[4] << 12);
939 pDst[0] = clamp16(lt >> 1
967 int32_t lt, rt, centerPlusLfeContrib; // samples in Q19.12 format local
1088 int32_t lt, rt, centersLfeContrib; // samples in Q19.12 format local
[all...]

Completed in 98 milliseconds