HomeSort by relevance Sort by last modified time
    Searched defs:right (Results 151 - 175 of 1192) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/skia/tests/
PathOpsLineIntersectionTest.cpp 122 double right = SkTMax(line1[0].fX, line1[1].fX); local
124 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
129 double right = SkTMax(line2[0].fX, line2[1].fX); local
131 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left);
165 double right = SkTMax(line1[0].fX, line1[1].fX); local
167 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
174 double right = SkTMax(line2[0].fX, line2[1].fX); local
176 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left);
  /external/v8/src/arm/
interface-descriptors-arm.cc 36 const Register InstanceofDescriptor::right() { return r1; } function in class:v8::internal::InstanceofDescriptor
  /external/v8/src/arm64/
interface-descriptors-arm64.cc 41 const Register InstanceofDescriptor::right() { function in class:v8::internal::InstanceofDescriptor
246 // x0: right operand
257 // x0: right operand
266 // x0: right operand
  /external/webrtc/src/common_audio/resampler/
resampler.cc 447 WebRtc_Word16* right = (WebRtc_Word16*)malloc(lengthIn * sizeof(WebRtc_Word16) / 2); local
455 right[i >> 1] = samplesIn[i + 1];
463 // Do resampling for right channel
465 res |= slave_right_->Push(right, lengthIn, out_right, maxLen / 2, actualOutLen_right);
469 free(right);
484 free(right);
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
h264bsdFillRow7.s 31 right RN 4 label
61 LDR right, [sp,#0x10]
169 CMP right,#0
175 SUBS right, right, #1
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
h264bsdFillRow7.S 31 #define right r4 define
45 i32 right);
52 LDR right, [sp,#0x10]
130 CMP right,#0
136 SUBS right, right, #1
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableRect.java 55 int right = left + width; local
58 return new Rect(left, top, right, bottom);
  /frameworks/base/core/java/android/text/method/
ScrollingMovementMethod.java 34 protected boolean right(TextView widget, Spannable buffer) { method in class:ScrollingMovementMethod
  /frameworks/base/core/java/android/transition/
SidePropagation.java 45 * {@link Gravity#LEFT}, {@link Gravity#TOP}, {@link Gravity#RIGHT},
94 int right = left + sceneRoot.getWidth(); local
103 epicenterX = (left + right) / 2;
108 left, top, right, bottom);
121 int left, int top, int right, int bottom) {
125 side = isRtl ? Gravity.RIGHT : Gravity.LEFT;
128 side = isRtl ? Gravity.LEFT : Gravity.RIGHT;
135 distance = right - viewX + Math.abs(epicenterY - viewY);
140 case Gravity.RIGHT:
153 case Gravity.RIGHT
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeBase.h 23 NodeBase* right; member in class:mcld::NodeBase
26 NodeBase() : left(NULL), right(NULL) {}
57 bool isRoot() const { return (m_pNode->right == m_pNode); }
60 return ((m_pNode->right) != (m_pNode->right->right));
64 return ((m_pNode->left) != (m_pNode->left->right));
83 this->m_pNode = this->m_pNode->right;
95 this->m_pNode->right = pOther;
  /hardware/libhardware/tests/hwc/
test-arrows.c 79 int right = (w / 4) * 3; local
86 vtx[4] = right;
89 vtx[6] = right;
91 vtx[8] = right;
  /packages/apps/Calendar/src/com/android/calendar/
DayOfMonthCursor.java 28 * <li>Provides methods to move the cursor up / down / left / right.</li>
163 * Move right one box, potentially flipping to the next month.
167 public boolean right() { method in class:DayOfMonthCursor
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Delaunay.h 124 #define right(a) orig(rot(a)) macro
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Delaunay.h 124 #define right(a) orig(rot(a)) macro
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
EmojiCategoryPageIndicatorView.java 66 final float right = left + unitWidth; local
68 canvas.drawRect(left, top, right, bottom, mPaint);
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Operation.java 40 /** The right operand expression.
80 * Set the left and right operand expressions for this operation.
84 * @param r The right expression operand.
110 XObject right = m_right.execute(xctxt, true); local
112 XObject result = operate(left, right);
114 right.detach();
123 * @param right non-null reference to the evaluated right operand.
129 public XObject operate(XObject left, XObject right)
141 /** @return the right operand of binary operation, as an Expression
    [all...]
  /frameworks/base/core/java/android/text/
AutoText.java 56 private static final int RIGHT = 9300; // Size of 'right' 13 Aug 2007
164 StringBuilder right = new StringBuilder(RIGHT); local
190 off = (char) right.length();
191 right.append((char) dest.length());
192 right.append(dest);
209 mText = right.toString();
226 // end, so fill in the right hand side fields.
  /art/runtime/gc/space/
region_space-inl.h 286 size_t right = left; local
287 DCHECK_LT(right, left + num_regs)
289 while (right < left + num_regs) {
290 if (regions_[right].IsFree()) {
291 ++right;
298 // right points to the one region past the last free region.
299 DCHECK_EQ(left + num_regs, right);
305 for (size_t p = left + 1; p < right; ++p) {
318 // right points to the non-free region. Start with the one after it.
319 left = right + 1
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/net/
res_random.c 137 u_int left, right, tmp; local
143 right = in & 0xff;
146 * Each round swaps the width of left and right. Even rounds have
152 tmp = ru_prf->prf8[(i << (8 - 1)) | right] & 0x7f;
154 tmp = ru_prf->prf7[((i - 1) << (7 - 1)) | right];
156 left = right;
157 right = tmp;
160 return (right << 8) | left;
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
splay.js 58 right: GeneratePayloadTree(depth - 1, tag)
97 // Verify that the splay tree has the right size.
174 node.right = this.root_.right;
175 this.root_.right = null;
177 node.right = this.root_;
203 this.root_ = this.root_.right;
205 var right = this.root_.right;
207 // Splay to make sure that the new root has an empty right child
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/primitive/fullpipeline/
FullPipelineRenderer.cpp 136 float right = ratio; local
142 mProjectionMatrix = Matrix::newFrustum(left, right, bottom, top, near, far);
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/glowing/
GlowingScene.cpp 105 float right = ratio; local
111 return Matrix::newFrustum(left, right, bottom, top, near, far);
  /cts/suite/cts/deviceTests/opengl/test/
MatrixTest.cpp 170 float right = ratio; local
176 Matrix* m = Matrix::newFrustum(left, right, bottom, top, near, far);
  /cts/tests/tests/graphics/src/android/graphics/cts/
EmbossMaskFilterTest.java 62 Rect right = new Rect(CENTER_X, 0, BITMAP_WIDTH, BITMAP_HEIGHT); local
65 assertTrue(brightness(bitmap, left) > brightness(bitmap, right));
72 left.right = START_X;
74 right.left = END_X;
75 assertEquals(0, brightness(bitmap, right));
85 for (int x = rect.left; x < rect.right; x++) {
  /cts/tests/tests/view/src/android/view/cts/
TouchDelegateTest.java 73 int right = mButton.getRight(); local
75 mXInside = (mButton.getLeft() + right) / 3;

Completed in 694 milliseconds

1 2 3 4 5 67 8 91011>>