HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 26 - 50 of 6883) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
SelectionRenderer.java 24 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom,
26 canvas.drawRect(left, top, right, top + stroke, paint);
27 canvas.drawRect(left, bottom - stroke, right, bottom, paint);
28 canvas.drawRect(left, top, left + stroke, bottom, paint);
32 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom,
34 canvas.drawRect(left, top, right, top + stroke, selectPaint);
35 canvas.drawRect(left, bottom - stroke, right, bottom, selectPaint);
36 canvas.drawRect(left, top, left + stroke, bottom, selectPaint)
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/des/
cipher.go 67 left, right := uint32(b>>32), uint32(b)
69 left = (left << 1) | (left >> 31)
73 left, right = feistel(left, right, c.cipher1.subkeys[2*i], c.cipher1.subkeys[2*i+1])
76 right, left = feistel(right, left, c.cipher2.subkeys[15-2*i], c.cipher2.subkeys[15-(2*i+1)])
79 left, right = feistel(left, right, c.cipher3.subkeys[2*i], c.cipher3.subkeys[2*i+1]
    [all...]
  /prebuilts/go/linux-x86/src/crypto/des/
cipher.go 67 left, right := uint32(b>>32), uint32(b)
69 left = (left << 1) | (left >> 31)
73 left, right = feistel(left, right, c.cipher1.subkeys[2*i], c.cipher1.subkeys[2*i+1])
76 right, left = feistel(right, left, c.cipher2.subkeys[15-2*i], c.cipher2.subkeys[15-(2*i+1)])
79 left, right = feistel(left, right, c.cipher3.subkeys[2*i], c.cipher3.subkeys[2*i+1]
    [all...]
  /frameworks/base/libs/hwui/
Rect.h 33 #define RECT_ARGS(r) (r).left, (r).top, (r).right, (r).bottom
34 #define SK_RECT_ARGS(r) (r).left(), (r).top(), (r).right(), (r).bottom()
42 float left; member in class:android::uirenderer::Rect
53 inline Rect() : left(0), top(0), right(0), bottom(0) {}
55 inline Rect(float left, float top, float right, float bottom)
56 : left(left), top(top), right(right), bottom(bottom) {}
58 inline Rect(float width, float height) : left(0.0f), top(0.0f), right(width), bottom(height) {}
62 left(rect.fLeft)
69 left(rect.fLeft
    [all...]
  /external/syslinux/com32/sysdump/
rbtree.c 37 * Simple implementation of a left-leaning red-black tree with 64-bit
43 * information about left-leaning red-black trees.
57 tree = tree->left;
74 h->right = x->left;
75 x->left = h;
76 x->red = x->left->red;
77 x->left->red = true;
83 struct rbtree *x = h->left;
84 h->left = x->right;
94 h->left->red = !h->left->red
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BitReaderBuffer.java 19 int left = 8 - position % 8;
21 if (i <= left) {
22 rc = (v << (position % 8) & 0xFF) >> ((position % 8) + (left - i));
25 int now = left;
26 int then = i - left;
40 int left = 8 - position % 8;
41 if (left == 8) {
42 left = 0;
44 readBits(left);
45 return left;
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-abi-multiple-nonvirtual-inheritance.cpp 3 struct Left {
4 virtual void left();
11 struct ChildNoOverride : Left, Right {
14 struct ChildOverride : Left, Right {
15 virtual void left();
25 child->left();
26 // Only need to cast 'this' to Left*.
27 // CHECK: %[[LEFT:.*]] = bitcast %struct.ChildNoOverride* %[[CHILD]] to %struct.Left*
28 // CHECK: %[[VFPTR:.*]] = bitcast %struct.Left* %[[LEFT]] to void (%struct.Left*)**
36 void ChildOverride::left() { function in class:ChildOverride
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
Pair.java 25 protected ASTree left, right; field in class:Pair
28 left = _left;
37 sbuf.append(left == null ? "<null>" : left.toString());
44 public ASTree getLeft() { return left; }
48 public void setLeft(ASTree _left) { left = _left; }
  /frameworks/base/core/java/android/animation/
RectEvaluator.java 59 * (left, top, right, and bottom).
73 int left = startValue.left + (int) ((endValue.left - startValue.left) * fraction); local
78 return new Rect(left, top, right, bottom);
80 mRect.set(left, top, right, bottom);
  /frameworks/support/transition/src/main/java/androidx/transition/
RectEvaluator.java 61 * (left, top, right, and bottom).
75 int left = startValue.left + (int) ((endValue.left - startValue.left) * fraction); local
80 return new Rect(left, top, right, bottom);
82 mRect.set(left, top, right, bottom);
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
Utilities.java 9 int left = x - w / 2; local
11 int right = left + w;
13 d.setBounds(left, top, right, bottom);
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
tsearch.c 19 struct node_t *left, *right; member in struct:node_t
39 &(*rootp)->left : /* T3: follow left branch */
46 q->left = q->right = (struct node_t *)0;
68 &(*rootp)->left : /* follow left branch */
74 if ((q = (*rootp)->left) == (struct node_t *)0) /* Left (struct node_t *)0? */
77 if (r->left == (struct node_t *)0) { /* D2: Find successor */
78 r->left = q
    [all...]
  /external/libbrillo/brillo/
unittest_utils.h 34 // The left and right sockets are bi-directional connected and
35 // indistinguishable file descriptor. We named them left/right for easier
37 int left{-1};
  /external/libmojo/ui/gfx/geometry/
insets_f.cc 13 return base::StringPrintf("%f,%f,%f,%f", top(), left(), bottom(), right());
  /external/libunwind/scripts/
kernel-diff.sh 6 left=$(eval echo $l)
8 # echo $left $right
9 diff -up $left $right
  /external/pdfium/core/fpdfdoc/
cpvt_floatrect.h 14 CPVT_FloatRect() { left = top = right = bottom = 0.0f; }
20 left = other_left;
27 left = rect.left;
  /external/python/cpython2/Demo/turtle/
tdemo_peace.py 31 left(90)
41 left(90)
44 left(180)
51 left(90)
tdemo_yinyang.py 22 left(180)
27 left(90)
33 left(90)
38 left(90)
  /external/python/cpython3/Lib/turtledemo/
peace.py 31 left(90)
41 left(90)
44 left(180)
51 left(90)
yinyang.py 22 left(180)
25 left(90)
34 left(90)
38 left(90)
  /external/skia/tests/
CanvasStateHelpers.h 22 void complex_layers_draw(SkCanvas* canvas, float left, float top,
32 float left, float top, float right, float bottom, int32_t spacer);
38 void complex_clips_draw(SkCanvas* canvas, int32_t left, int32_t top,
48 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp,
  /external/skqp/tests/
CanvasStateHelpers.h 22 void complex_layers_draw(SkCanvas* canvas, float left, float top,
32 float left, float top, float right, float bottom, int32_t spacer);
38 void complex_clips_draw(SkCanvas* canvas, int32_t left, int32_t top,
48 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp,
  /frameworks/native/libs/ui/
Rect.cpp 34 left = 0;
44 if (left < rhs.left) {
46 } else if (left == rhs.left) {
60 right -= left - x;
62 left = x;
68 left += x;
76 const Rect result(left + rhs.x, top + rhs.y, right + rhs.x, bottom + rhs.y);
81 const Rect result(left - rhs.x, top - rhs.y, right - rhs.x, bottom - rhs.y)
104 int left = height - result.bottom; local
    [all...]
  /hardware/qcom/display/msm8909/sdm/libs/utils/
rect.cpp 40 return ((rect.bottom > rect.top) && (rect.right > rect.left));
44 return ((rect1.left == rect2.left) &&
51 DLOGI_IF(debug_tag, "%s: left = %.0f, top = %.0f, right = %.0f, bottom = %.0f",
52 prefix, roi.left, roi.top, roi.right, roi.bottom);
56 DLOGV_IF(debug_tag, "%s: left = %.0f, top = %.0f, right = %.0f, bottom = %.0f",
57 prefix, roi.left, roi.top, roi.right, roi.bottom);
61 rect->left = ROUND_UP_ALIGN_UP(rect->left, align_x);
74 res.left = std::max(rect1.left, rect2.left)
    [all...]
  /hardware/qcom/display/msm8909w_3100/sdm/libs/utils/
rect.cpp 40 return ((rect.bottom > rect.top) && (rect.right > rect.left));
44 return ((rect1.left == rect2.left) &&
51 DLOGV_IF(debug_tag, "%s: left = %.0f, top = %.0f, right = %.0f, bottom = %.0f",
52 prefix, roi.left, roi.top, roi.right, roi.bottom);
56 rect->left = ROUND_UP_ALIGN_UP(rect->left, align_x);
69 res.left = std::max(rect1.left, rect2.left);
    [all...]

Completed in 1685 milliseconds

12 3 4 5 6 7 8 91011>>