Searched defs:left (Results 101 - 125 of 262) sorted by relevance

1234567891011

/frameworks/base/libs/hwui/
H A DPathCache.h72 float left; member in struct:android::uirenderer::PathTexture
225 float& left, float& top, float& offset, uint32_t& width, uint32_t& height);
227 float& left, float& top, float& offset, uint32_t& width, uint32_t& height);
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java63 * @param lhs The float array that holds the left-hand-side matrix.
86 * @param lhsMat The float array that holds the left-hand-side matrix.
262 * @param left
270 float left, float right, float bottom, float top,
272 if (left == right) {
273 throw new IllegalArgumentException("left == right");
282 final float r_width = 1.0f / (right - left);
288 final float tx = -(right + left) * r_width;
316 * @param left
324 float left, floa
269 orthoM(float[] m, int mOffset, float left, float right, float bottom, float top, float near, float far) argument
323 frustumM(float[] m, int offset, float left, float right, float bottom, float top, float near, float far) argument
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintPreviewController.java217 public void setPadding(int left, int top , int right, int bottom) { argument
218 mRecyclerView.setPadding(left, top, right, bottom);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java520 protected void onLayout (boolean changed, int left, int top, int right, int bottom) { argument
521 final float w = right-left;
525 final int cx = (int) (left + w * 0.5f);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTileView.java291 private static void layout(View child, int left, int top) { argument
292 child.layout(left, top, left + child.getMeasuredWidth(), top + child.getMeasuredHeight());
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsHorizontalScrollView.java255 public void drawFadedEdges(Canvas canvas, int left, int right, int top, int bottom) { argument
259 left, right, top, bottom, getScrollX(), getScrollY(),
H A DRecentsVerticalScrollView.java264 public void drawFadedEdges(Canvas canvas, int left, int right, int top, int bottom) { argument
268 left, right, top + getFadeTop(offsetRequired), bottom, getScrollX(), getScrollY(),
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DRecentsView.java299 // Set the insets to be the top/left inset + search bounds
312 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
318 mSearchBar.layout(searchBarSpaceBounds.left, searchBarSpaceBounds.top,
328 child.layout(left, top, left + child.getMeasuredWidth(),
423 offsetX = transform.rect.left;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableView.java97 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
98 super.onLayout(changed, left, top, right, bottom);
295 outRect.left += getTranslationX();
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageView.java169 protected void onLayout(boolean changed, int left, int top, int right, argument
171 super.onLayout(changed, left, top, right, bottom);
265 cx += (mTempRectF.left / scale) - xoffset;
267 cx -= (mTempRectF.left / scale) - xoffset;
/frameworks/ex/framesequence/jni/
H A DFrameSequence_webp.cpp42 const int left = frame.x_offset; local
43 const int right = left + frame.width;
46 return x >= left && x < right && y >= top && y < bottom;
/frameworks/rs/
H A DrsScriptC_LibGL.cpp234 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
235 if (left) {
236 *left = metrics->left;
250 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
256 SetMetrics(&metrics, left, right, top, bottom);
261 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
265 SetMetrics(&metrics, left, right, top, bottom);
233 SetMetrics(Font::Rect *metrics, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
249 rsrMeasureTextAlloc(Context *rsc, Allocation *a, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
260 rsrMeasureText(Context *rsc, const char *text, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DDrawableWrapper.java50 public void setBounds(int left, int top, int right, int bottom) { argument
51 super.setBounds(left, top, right, bottom);
52 mDrawable.setBounds(left, top, right, bottom);
206 public void setHotspotBounds(int left, int top, int right, int bottom) { argument
207 DrawableCompat.setHotspotBounds(mDrawable, left, top, right, bottom);
/frameworks/wilhelm/tests/automated/
H A DBufferQueue_test.cpp38 short left; member in struct:__anon1663
142 stereoBuffer1[i].left = pcm;
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.c94 ALOGE("Unsupported channels (top or front left/right of center)");
132 const int indexBL = hasBacks ? indexLFE + 1 : indexLFE; // back left
135 const int indexSL = hasSides ? indexBC + 1 : indexBC; // side left
470 float left = (float)(*(uint32_t *)pCmdData) / (1 << 24); local
472 ALOGV("Downmix_Command EFFECT_CMD_SET_VOLUME: left %f, right %f ", left, right);
950 * - if using AUDIO_CHANNEL_OUT_SIDE*, it contains both left and right
951 * - if using AUDIO_CHANNEL_OUT_BACK*, it contains both left and right
974 ALOGE("Unsupported channels (top or front left/right of center)");
1012 const int indexBL = hasBacks ? indexLFE + 1 : indexLFE; // back left
[all...]
/frameworks/av/media/libstagefright/
H A DSampleTable.cpp541 uint32_t left = 0; local
543 while (left < right_plus_one) {
544 uint32_t center = left + (right_plus_one - left) / 2;
551 left = center + 1;
558 uint32_t closestIndex = left;
623 uint32_t left = 0; local
625 while (left < right_plus_one) {
626 uint32_t center = left + (right_plus_one - left) /
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_deblocking.c71 * Info 701: Shift left of signed quantity (int)
134 u32 left; member in struct:__anon596
232 Function to determine if there is a slice boundary on the left side
304 /* filterLeftMbEdgeFlag, left mb is MB_A */
389 Function to calculate boundary strength value bs for left- or
486 Function to calculate boundary strength value bs for left-
558 filtered macroblock, macroblock above and macroblock on the left of
563 mb pointer to macroblock data structure of the top-left
1172 /* left edges */
1177 bS[0].left
[all...]
H A Dh264bsd_intra_prediction.c162 static void Get4x4NeighbourPels(u8 *a, u8 *l, u8 *data, u8 *above, u8 *left,
165 static void Intra16x16HorizontalPrediction(u8 *data, u8 *left);
166 static void Intra16x16DcPrediction(u8 *data, u8 *above, u8 *left,
168 static void Intra16x16PlanePrediction(u8 *data, u8 *above, u8 *left);
169 static void IntraChromaDcPrediction(u8 *data, u8 *above, u8 *left,
171 static void IntraChromaHorizontalPrediction(u8 *data, u8 *left);
173 static void IntraChromaPlanePrediction(u8 *data, u8 *above, u8 *left);
176 static void Intra4x4HorizontalPrediction(u8 *data, u8 *left);
177 static void Intra4x4DcPrediction(u8 *data, u8 *above, u8 *left, u32 A, u32 B);
179 static void Intra4x4DiagonalDownRightPrediction(u8 *data, u8 *above, u8 *left);
540 h264bsdGetNeighbourPels(image_t *image, u8 *above, u8 *left, u32 mbNum) argument
622 h264bsdIntra16x16Prediction(mbStorage_t *pMb, u8 *data, i32 residual[][16], u8 *above, u8 *left, u32 constrainedIntraPred) argument
696 h264bsdIntra4x4Prediction(mbStorage_t *pMb, u8 *data, macroblockLayer_t *mbLayer, u8 *above, u8 *left, u32 constrainedIntraPred) argument
840 h264bsdIntraChromaPrediction(mbStorage_t *pMb, u8 *data, i32 residual[][16], u8 *above, u8 *left, u32 predMode, u32 constrainedIntraPred) argument
1026 Intra16x16HorizontalPrediction(u8 *data, u8 *left) argument
1057 Intra16x16DcPrediction(u8 *data, u8 *above, u8 *left, u32 availableA, u32 availableB) argument
1108 Intra16x16PlanePrediction(u8 *data, u8 *above, u8 *left) argument
1155 IntraChromaDcPrediction(u8 *data, u8 *above, u8 *left, u32 availableA, u32 availableB) argument
1253 IntraChromaHorizontalPrediction(u8 *data, u8 *left) argument
1323 IntraChromaPlanePrediction(u8 *data, u8 *above, u8 *left) argument
1383 Get4x4NeighbourPels(u8 *a, u8 *l, u8 *data, u8 *above, u8 *left, u32 blockNum) argument
1520 Intra4x4HorizontalPrediction(u8 *data, u8 *left) argument
1552 Intra4x4DcPrediction(u8 *data, u8 *above, u8 *left, u32 availableA, u32 availableB) argument
1645 Intra4x4DiagonalDownRightPrediction(u8 *data, u8 *above, u8 *left) argument
1683 Intra4x4VerticalRightPrediction(u8 *data, u8 *above, u8 *left) argument
1722 Intra4x4HorizontalDownPrediction(u8 *data, u8 *above, u8 *left) argument
1798 Intra4x4HorizontalUpPrediction(u8 *data, u8 *left) argument
[all...]
H A Dh264bsd_reconstruct.c56 * Info 701: Shift left of signed quantity (int)
97 pRef pointer to reference frame Cb top-left corner
2137 i32 left,
2141 UNUSED(left);
2159 (overfilling some pels on left and/or right edge).
2162 left amount of pixels to overfill on left-edge
2173 i32 left,
2182 if (left)
2185 for ( ; left; lef
2134 FillRow1( u8 *ref, u8 *fill, i32 left, i32 center, i32 right) argument
2170 h264bsdFillRow7( u8 *ref, u8 *fill, i32 left, i32 center, i32 right) argument
2239 i32 left, x, right; local
[all...]
/frameworks/av/services/audioflinger/
H A DAudioResamplerDyn.cpp194 void AudioResamplerDyn<TC, TI, TO>::setVolume(float left, float right) argument
196 AudioResampler::setVolume(left, right);
198 mVolumeSimd[0] = static_cast<TO>(left);
203 mVolumeSimd[0] = u4_28_from_float(clampFloatVol(left));
H A DAudioResamplerSinc.cpp394 int32_t mulRL(int left, int32_t in, uint32_t vRL) argument
398 if (left) {
411 int16_t v = left ? int16_t(vRL) : int16_t(vRL>>16);
432 int32_t mulAddRL(int left, uint32_t inRL, int32_t v, int32_t a) argument
436 if (left) {
449 int16_t s = left ? int16_t(inRL) : int16_t(inRL>>16);
504 void AudioResamplerSinc::setVolume(float left, float right) { argument
505 AudioResampler::setVolume(left, right);
508 mVolumeSIMD[0] = u4_28_from_float(clampFloatVol(left));
H A DFastMixer.cpp625 // assume same number of tail samples on each side, left and right
627 CentralTendencyStatistics left, right; local
629 left.sample(tail[i]);
633 " left tail: mean=%.2f min=%.2f max=%.2f stddev=%.2f\n"
635 left.mean()*1e-6, left.minimum()*1e-6, left.maximum()*1e-6, left.stddev()*1e-6,
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareImpl.java856 private boolean binderEquals(IInterface left, IInterface right) { argument
857 if (left == null) {
860 return right == null ? false : left.asBinder() == right.asBinder();
/frameworks/base/core/java/android/net/
H A DNetworkStats.java548 public static <C> NetworkStats subtract(NetworkStats left, NetworkStats right, argument
550 return subtract(left, right, observer, cookie, null);
565 public static <C> NetworkStats subtract(NetworkStats left, NetworkStats right, argument
567 long deltaRealtime = left.elapsedRealtime - right.elapsedRealtime;
570 observer.foundNonMonotonic(left, -1, right, -1, cookie);
578 if (recycle != null && recycle.capacity >= left.size) {
583 result = new NetworkStats(deltaRealtime, left.size);
585 for (int i = 0; i < left.size; i++) {
586 entry.iface = left.iface[i];
587 entry.uid = left
783 foundNonMonotonic( NetworkStats left, int leftIndex, NetworkStats right, int rightIndex, C cookie) argument
[all...]
/frameworks/base/core/java/android/view/
H A DSurfaceView.java298 protected boolean setFrame(int left, int top, int right, int bottom) { argument
299 boolean result = super.setFrame(left, top, right, bottom);
457 + " left=" + (mLeft != mLocation[0])
530 mSurfaceFrame.left = 0;

Completed in 769 milliseconds

1234567891011