/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/ |
cons-2.s | 2 # that we get the right output with this test.
|
/external/e2fsprogs/e2fsck/ |
dict.c | 52 #define right dict_right macro 78 * its right child C are rearranged so that the P instead becomes the left 79 * child of C. The left subtree of C is inherited as the new right subtree 87 lower = upper->right; 88 upper->right = lowleft = lower->left; 99 assert (upper == upparent->right); 100 upparent->right = lower; 109 * the same procedure, but with left and right interchanged. 117 upper->left = lowright = lower->right; 122 if (upper == upparent->right) { 877 dnode_t *nil = dict_nil(dict), *root = dict_root(dict), *right; local 921 dnode_t *nil = dict_nil(dict), *parent, *right; local [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
shadow-handler.js | 53 function mergeShadow(left, right) { 54 while (left.lengths.length < Math.max(left.lengths.length, right.lengths.length)) 56 while (right.lengths.length < Math.max(left.lengths.length, right.lengths.length)) 57 right.lengths.push({px: 0}); 59 if (left.inset != right.inset || !!left.color != !!right.color) { 67 var mergedDimensions = scope.mergeDimensions(left.lengths[i], right.lengths[i], i == 2); 72 if (left.color && right.color) { 73 var mergedColor = scope.mergeColors(left.color, right.color) [all...] |
/external/webrtc/webrtc/modules/video_render/external/ |
video_render_external_impl.cc | 46 const float right, 65 float& right, 73 right = 0; 137 const float right, 149 const float right, 171 const float right, 183 const float right,
|
/frameworks/base/core/java/com/android/internal/policy/ |
DockedDividerUtils.java | 39 outRect.right = position; 59 * at the bottom/right. This is used to determine in which direction to extend 65 // left/top to make it more offscreen. If they are on the bottom or right, push them off the 66 // screen by moving it even more to the bottom/right. 68 if (bounds.left >= bounds.right) { 69 bounds.left = bounds.right - 1; 75 if (bounds.right <= bounds.left) { 76 bounds.right = bounds.left + 1; 87 return bounds.right; 104 : displayWidth - insets.right; [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Path.java | 453 arcTo(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, forceMoveTo); 468 arcTo(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, false); 483 public void arcTo(float left, float top, float right, float bottom, float startAngle, 486 native_arcTo(mNativePath, left, top, right, bottom, startAngle, sweepAngle, forceMoveTo); 514 private void detectSimplePath(float left, float top, float right, float bottom, Direction dir) { 522 rects.op((int) left, (int) top, (int) right, (int) bottom, Region.Op.UNION); 533 addRect(rect.left, rect.top, rect.right, rect.bottom, dir); 541 * @param right The right side of a rectangle to add to the path 545 public void addRect(float left, float top, float right, float bottom, Direction dir) [all...] |
Region.java | 71 nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom); 76 public Region(int left, int top, int right, int bottom) { 78 nativeSetRect(mNativeRegion, left, top, right, bottom); 97 return nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom); 102 public boolean set(int left, int top, int right, int bottom) { 103 return nativeSetRect(mNativeRegion, left, top, right, bottom); 182 return quickContains(r.left, r.top, r.right, r.bottom); 191 public native boolean quickContains(int left, int top, int right, 200 return quickReject(r.left, r.top, r.right, r.bottom); 208 public native boolean quickReject(int left, int top, int right, int bottom) [all...] |
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/ |
StyledCornersBitmapDrawable.java | 251 float right = bounds.right - mBorderWidth / 2; local 263 flapCornerRectF.offsetTo(right - mCornerFlapSide, top); 268 flapCornerRectF.offsetTo(right - mCornerFlapSide, bottom - mCornerFlapSide); 306 float right = bounds.right; local 322 fakeCornerRectF.offsetTo(right - fakeCornerRectF.width(), top); 324 mCompatibilityModePath.moveTo(right, top); 325 mCompatibilityModePath.lineTo(right, top + mCornerRoundRadius); 332 .offsetTo(right - fakeCornerRectF.width(), bottom - fakeCornerRectF.height()) 403 float right = bounds.right - mBorderWidth \/ 2; local [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
EventGeometry.java | 102 event.right = event.left + colWidth; 110 if (event.left < selection.right && event.right >= selection.left 122 float right = event.right; local 127 if (x <= right) { 140 // x > right 141 float dx = x - right; 143 // the upper right corner 148 // the lower right corne [all...] |
/external/chromium-trace/catapult/dashboard/dashboard/ |
find_change_points.py | 130 left, right = y_values[:split_index], y_values[split_index:] 131 left_median, right_median = math_utils.Median(left), math_utils.Median(right) 132 ttest_results = ttest.WelchsTTest(left, right) 138 size_after=len(right), 154 right sides by the median of the left and right sides respectively). 167 left, right = values[:index], values[index:] 168 return math_utils.StandardDeviation(_ZeroMedian(left) + _ZeroMedian(right)) 195 left, right = values[:split_index], values[split_index:] 196 left_median, right_median = math_utils.Median(left), math_utils.Median(right) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
ExpandableOutlineView.java | 83 setOutlineRect(rect.left, rect.top, rect.right, rect.bottom); 114 protected void setOutlineRect(float left, float top, float right, float bottom) { 118 mOutlineRect.set((int) left, (int) top, (int) right, (int) bottom); 122 mOutlineRect.right = (int) Math.max(left, mOutlineRect.right);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
DESEngine.java | 408 int work, right, left; local 415 right = (in[inOff + 4] & 0xff) << 24; 416 right |= (in[inOff + 5] & 0xff) << 16; 417 right |= (in[inOff + 6] & 0xff) << 8; 418 right |= (in[inOff + 7] & 0xff); 420 work = ((left >>> 4) ^ right) & 0x0f0f0f0f; 421 right ^= work; 423 work = ((left >>> 16) ^ right) & 0x0000ffff; 424 right ^= work; 426 work = ((right >>> 2) ^ left) & 0x33333333 [all...] |
/external/v8/benchmarks/spinning-balls/ |
splay-tree.js | 79 node.right = this.root_.right; 80 this.root_.right = null; 82 node.right = this.root_; 108 this.root_ = this.root_.right; 110 var right = this.root_.right; 112 // Splay to make sure that the new root has an empty right child. 114 // Insert the original right child as the right child of the ne [all...] |
/external/v8/src/compiler/arm64/ |
instruction-selector-arm64.cc | 187 if (mright.right().Is(0xff) || mright.right().Is(0xffff)) { 188 int32_t mask = mright.right().Value(); 200 if ((mright.right().Is(16) && mleft_of_right.right().Is(16)) || 201 (mright.right().Is(24) && mleft_of_right.right().Is(24))) { 202 int32_t shift = mright.right().Value(); 238 Node* right_node = m.right().node(); 261 inputs[input_count++] = g.UseImmediate(m_shift.right().node()) 1648 Node* right = node->InputAt(1); local 2144 Node* right = node->InputAt(1); local 2162 Node* right = node->InputAt(1); local [all...] |
/external/v8/tools/ |
splaytree.js | 81 node.right = this.root_.right; 82 this.root_.right = null; 84 node.right = this.root_; 110 this.root_ = this.root_.right; 112 var right = this.root_.right; 114 // Splay to make sure that the new root has an empty right child. 116 // Insert the original right child as the right child of the ne [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
RectFTest.java | 62 assertEquals(5.0f, mRectF.right); 68 assertEquals(10.0f, mRectF.right); 79 assertEquals(3.0f, mRectF.right); 91 assertEquals(3.0f, mRectF.right); 103 assertEquals(3.0f, mRectF.right); 114 assertEquals(10.0f, mRectF.right); 121 assertEquals(10.0f, mRectF.right); 147 assertEquals(10.0f, mRectF.right); 154 assertEquals(10.0f, mRectF.right); 168 assertEquals(10.0f, mRectF.right); [all...] |
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++) {
|
/art/compiler/optimizing/ |
instruction_simplifier_shared.cc | 166 // right inputs perform the same operation. 174 HInstruction* right = mul->GetRight(); local 175 if ((right->IsAdd() || right->IsSub()) && 176 TrySimpleMultiplyAccumulatePatterns(mul, right->AsBinaryOperation(), left)) { 180 TrySimpleMultiplyAccumulatePatterns(mul, left->AsBinaryOperation(), right)) { 190 HInstruction* right = op->GetRight(); local 194 if (left->IsNot() ^ right->IsNot()) { 195 HInstruction* hnot = (left->IsNot() ? left : right); 196 HInstruction* hother = (left->IsNot() ? right : left) [all...] |
/external/v8/src/compiler/ |
node-matchers.h | 207 // right hand sides of a binary operation and can put constants on the right 209 template <typename Left, typename Right> 221 typedef Right RightMatcher; 224 const Right& right() const { return right_; } function in struct:v8::internal::compiler::BinopMatcher 226 bool IsFoldable() const { return left().HasValue() && right().HasValue(); } 227 bool LeftEqualsRight() const { return left().node() == right().node(); } 233 node()->ReplaceInput(1, right().node()); 238 if (left().HasValue() && !right().HasValue()) 436 Node* right = m.right().node(); local [all...] |
/prebuilts/go/darwin-x86/test/bench/shootout/ |
binary-tree-freelist.go | 48 left, right *Node 61 if n.right != nil { 62 n.right.free() 68 func (a *Arena) New(item int, left, right *Node) *Node { 80 n.right = right 95 return n.item + n.left.itemCheck() - n.right.itemCheck()
|
/prebuilts/go/linux-x86/test/bench/shootout/ |
binary-tree-freelist.go | 48 left, right *Node 61 if n.right != nil { 62 n.right.free() 68 func (a *Arena) New(item int, left, right *Node) *Node { 80 n.right = right 95 return n.item + n.left.itemCheck() - n.right.itemCheck()
|
/toolchain/binutils/binutils-2.25/bfd/ |
mep-relocs.pl | 104 my ($bits, $left, $right, $ci, $c, $cv); 107 $right = 32; 115 $right = $cv unless $right < $cv; 123 return ($bits, $left, $right, $mask, $rmask); 134 ($bits, $left, $right, $mask) = mask2shifts ($mask); 143 $c, $bytesize, $bits, $left, $right, $pcrel, $overflow, $mask); 177 ($bits, $left, $right, $mask, $rmask) = mask2shifts ($mask); 178 if ($left > $right) { $left -= $right; $right = 0; [all...] |
/external/webrtc/webrtc/modules/video_render/mac/ |
video_render_mac_cocoa_impl.mm | 95 const float right, 108 nsOpenGLChannel = _ptrCocoaRender->CreateNSGLChannel(streamId, zOrder, left, top, right, bottom); 130 float& right, 133 return _ptrCocoaRender->GetChannelProperties(streamId, zOrder, left, top, right, bottom); 200 const float right, 210 const float right, 229 const float right, 232 return _ptrCocoaRender->SetText(textId, text, textLength, textColorRef, backgroundColorRef, left, top, right, bottom); 240 const float right,
|
/cts/tests/tests/transition/src/android/transition/cts/ |
ChangeClipBoundsTest.java | 61 assertTrue(midClip.right < redSquare.getRight() && midClip.right > newClip.right); 94 assertTrue(midClip.right < redSquare.getRight() && midClip.right > newClip.right);
|
/external/avahi/avahi-core/ |
prioq-test.c | 53 if (n->right) 54 assert(n->right->parent == n); 57 assert(n->parent->left == n || n->parent->right == n); 60 assert(n->next == n->parent->right); 67 assert(n->parent->right == NULL); 80 rec(n->right);
|