Searched refs:lt (Results 1 - 5 of 5) sorted by relevance

/frameworks/native/include/ui/
H A DRect.h52 inline Rect(const Point& lt, const Point& rb) { argument
53 left = lt.x;
54 top = lt.y;
89 void setLeftTop(const Point& lt) { argument
90 left = lt.x;
91 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...]
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp206 vec2 lt( bounds.left, bounds.top );
211 lt = transform(lt);
216 r.left = floorf(min(lt[0], rt[0], lb[0], rb[0]) + 0.5f);
217 r.top = floorf(min(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
218 r.right = floorf(max(lt[0], rt[0], lb[0], rb[0]) + 0.5f);
219 r.bottom = floorf(max(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
/frameworks/base/media/jni/
H A Dandroid_media_ImageReader.cpp732 Point lt = buffer->crop.leftTop(); local
733 if (lt.x != 0 || lt.y != 0) {
735 "crop left top corner [%d, %d] need to be at origin", lt.x, lt.y);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarView.java327 LayoutTransition lt = navButtons == null ? null : navButtons.getLayoutTransition();
328 if (lt != null) {
329 lt.disableTransitionType(

Completed in 1172 milliseconds