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

1 2 3 4 5 67 8 91011>>

  /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/pdfium/public/
fpdf_transformpage.h 24 * @param[in] right - The right of the rectangle.
28 DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, float left, float bottom, float right, float top);
35 * @param[in] right - The right of the rectangle.
39 DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page, float left, float bottom, float right, float top);
46 * @param[in] right - Pointer to a double value receiving the right of the rectangle.
50 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetMediaBox(FPDF_PAGE page, float* left, float* bottom, float* right, float* top);
56 * @param[in] right - Pointer to a double value receiving the right of the rectangle
    [all...]
  /frameworks/base/docs/html/ndk/reference/
dir_035c76f7235f5f563d38e3ab90cb9716.jd 18 <tr class="memitem:asset__manager_8h"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="asset__manager_8h.html">asset_manager.h</a></td></tr>
20 <tr class="memitem:asset__manager__jni_8h"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="asset__manager__jni_8h.html">asset_manager_jni.h</a></td></tr>
22 <tr class="memitem:bitmap_8h"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="bitmap_8h.html">bitmap.h</a></td></tr>
24 <tr class="memitem:configuration_8h"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="configuration_8h.html">configuration.h</a></td></tr>
26 <tr class="memitem:input_8h"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="input_8h.html">input.h</a></td></tr>
28 <tr class="memitem:keycodes_8h"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="keycodes_8h.html">keycodes.h</a></td></tr>
30 <tr class="memitem:looper_8h"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="looper_8h.html">looper.h</a></td></tr>
32 <tr class="memitem:native__activity_8h"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="native__activity_8h.html">native_activity.h</a></td></tr>
34 <tr class="memitem:native__window_8h"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="native__window_8h.html">native_window.h</a></td></tr>
36 <tr class="memitem:native__window__jni_8h"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="native_ (…)
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
RecursiveAction.java 77 * right-hand-sides of repeated divisions by two, and keeping track of
96 * Applyer next; // keeps track of right-hand-side tasks
112 * Applyer right = null;
115 * right = new Applyer(array, mid, h, right);
116 * right.fork();
120 * while (right != null) {
121 * if (right.tryUnfork()) // directly calculate if not stolen
122 * sum += right.atLeaf(right.lo, right.hi)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
test_tools.hpp 71 // R - right argument
533 template <class Left, class Right>
534 predicate_result equal_impl( Left const& left, Right const& right )
536 return left == right;
541 predicate_result BOOST_TEST_DECL equal_impl( char const* left, char const* right );
542 inline predicate_result equal_impl( char* left, char const* right ) { return equal_impl( static_cast<char const*>(left), static_cast<char const*>(right) ); }
543 inline predicate_result equal_impl( char const* left, char* right ) { return equal_impl( static_cast<char const*>(left), static_cast<char const*>(right) ); }
    [all...]
  /external/tinyxml/docs/
doxygen.css 41 margin-right: 15px;
92 margin-right: 8px;
94 padding-right: 6px;
117 margin-right: 20px;
123 padding-right : 10px;
128 margin-right : 0px;
136 padding-right : 10px;
141 margin-right : 0px;
172 border-right: 1px none #E0E0E0;
183 border-right: 1px none #E0E0E0
    [all...]
  /frameworks/base/core/java/android/app/usage/
UsageStats.java 156 * Add the statistics from the right {@link UsageStats} to the left. The package name for
158 * @param right The {@link UsageStats} object to merge into this one.
162 public void add(UsageStats right) {
163 if (!mPackageName.equals(right.mPackageName)) {
165 mPackageName + "' with UsageStats for package '" + right.mPackageName + "'.");
168 if (right.mEndTimeStamp > mEndTimeStamp) {
169 mLastEvent = right.mLastEvent;
170 mEndTimeStamp = right.mEndTimeStamp;
171 mLastTimeUsed = right.mLastTimeUsed;
172 mBeginIdleTime = right.mBeginIdleTime
    [all...]
  /frameworks/native/include/ui/
Rect.h 40 left = right = top = bottom = 0;
45 right = w;
61 right = w;
68 right = r;
75 right = rb.x;
82 left = top = right = bottom = 0;
97 return right - left;
106 return Rect(right - left, bottom - top);
115 right = rb.x;
124 return Point(right, bottom)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
RecentsResizeTaskDialog.java 135 mBounds[0].right = mBounds[0].centerX();
136 mBounds[1].left = mBounds[0].right;
140 mBounds[1].right = mBounds[1].centerX();
141 mBounds[0].left = mBounds[1].right;
155 mBounds[0].right = mBounds[0].centerX();
157 mBounds[1].left = mBounds[0].right;
159 mBounds[2].right = mBounds[0].right;
161 mBounds[3].left = mBounds[0].right;
168 mBounds[1].right = mBounds[0].left
    [all...]
  /development/samples/ApiDemos/res/layout/
table_layout_11.xml 29 android:gravity="right"
41 android:gravity="right"
56 android:gravity="right"
77 <!-- Aligns the content of the cell to the bottom right -->
81 android:layout_gravity="right|bottom"
86 android:gravity="right"
  /device/asus/fugu/libaudio/
alsa_utils.h 80 kSA_FLFR = (1 << 0), // Front Left/Right
83 kSA_RLRR = (1 << 3), // Rear Left/Right
85 kSA_FLCFRC = (1 << 5), // Front Left/Right Center
86 kSA_RLCRRC = (1 << 6), // Rear Left/Right Center
87 kSA_FLWFRW = (1 << 7), // Front Left/Right Wide
88 kSA_FLHFRH = (1 << 8), // Front Left/Right High
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Bool.java 38 * @param right non-null reference to the evaluated right operand.
44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException
47 if (XObject.CLASS_BOOLEAN == right.getType())
48 return right;
50 return right.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
Number.java 38 * @param right non-null reference to the evaluated right operand.
44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException
47 if (XObject.CLASS_NUMBER == right.getType())
48 return right;
50 return new XNumber(right.num());
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/extras/tcmalloc/
tcmalloc_snapshot_view.css 40 /* Allocation size in MB, right-aligned for easier comparison of columns. */
43 padding-right: 10px;
44 text-align: right;
51 padding-right: 10px;
52 text-align: right;
56 /* Trace name, inline so it appears to the right of the byte count. */
  /frameworks/base/core/tests/coretests/res/layout/
table_layout_horizontal_gravity.xml 34 android:gravity="right"
49 android:gravity="right"
57 <!-- Aligns the content of the cell to the bottom right -->
61 android:layout_gravity="right|bottom"
66 android:gravity="right"
79 android:gravity="right"
  /packages/apps/Gallery2/res/layout-land/
camera_controls.xml 27 android:layout_gravity="right" />
34 android:layout_gravity="top|right"/>
40 android:layout_gravity="right|top"
46 android:layout_gravity="right|bottom"
54 android:layout_gravity="right|center_vertical"
68 android:layout_gravity="top|right" />
  /packages/apps/Launcher3/src/com/android/launcher3/
BorderCropDrawable.java 47 mBoundsShift.right = mPadding.right;
48 mPadding.right = 0;
61 bounds.right + mBoundsShift.right,
68 return (padding.left | padding.top | padding.right | padding.bottom) != 0;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
ver4_patricia_trie_writing_helper.h 111 bool operator()(const DictProbability &left, const DictProbability &right) {
112 if (left.getProbability() != right.getProbability()) {
113 return left.getProbability() > right.getProbability();
115 if (left.getTimestamp() != right.getTimestamp()) {
116 return left.getTimestamp() < right.getTimestamp();
118 return left.getDictPos() > right.getDictPos();
  /external/linux-tools-perf/src/tools/perf/util/
sort.c 58 sort__thread_cmp(struct hist_entry *left, struct hist_entry *right)
60 return right->thread->tid - left->thread->tid;
80 sort__comm_cmp(struct hist_entry *left, struct hist_entry *right)
82 return right->thread->tid - left->thread->tid;
86 sort__comm_collapse(struct hist_entry *left, struct hist_entry *right)
89 char *comm_r = right->thread->comm;
134 sort__dso_cmp(struct hist_entry *left, struct hist_entry *right)
136 return _sort__dso_cmp(left->ms.map, right->ms.map);
183 sort__sym_cmp(struct hist_entry *left, struct hist_entry *right)
185 if (!left->ms.sym && !right->ms.sym
    [all...]
  /external/v8/src/
splay-tree-inl.h 120 // the right subtree.
193 // No left child, so the new tree is just the right child.
197 Node* right = root_->right_; local
200 // Splay to make sure that the new root has an empty right child.
202 // Insert the original right child as the right child of the new
204 root_->right_ = right;
215 // counter-intuitive: The right child of the dummy node will hold
218 // and right will always be nodes and we avoid special cases.
221 Node* right = dummy local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropDrawingUtils.java 44 canvas.drawLine(bounds.left, y, bounds.right, y, p);
71 r.set(bounds.right,bounds.top,w,bounds.bottom);
91 drawIndicator(canvas, cropIndicator, indicatorSize, bounds.right, bounds.top);
97 drawIndicator(canvas, cropIndicator, indicatorSize, bounds.right, bounds.bottom);
110 drawIndicator(canvas, cropIndicator, indicatorSize, bounds.right, bounds.centerY());
134 path.lineTo(r1.right, r1.top);
138 path.lineTo(r1.right, r1.bottom);
139 path.moveTo(r1.right, r1.top);
140 path.lineTo(r1.right, r1.bottom);
142 path.lineTo(r2.right, r2.top)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Outline.java 143 public void setRect(int left, int top, int right, int bottom) {
144 setRoundRect(left, top, right, bottom, 0.0f);
151 setRect(rect.left, rect.top, rect.right, rect.bottom);
159 public void setRoundRect(int left, int top, int right, int bottom, float radius) {
160 if (left >= right || top >= bottom) {
166 mRect.set(left, top, right, bottom);
175 setRoundRect(rect.left, rect.top, rect.right, rect.bottom, radius);
181 public void setOval(int left, int top, int right, int bottom) {
182 if (left >= right || top >= bottom) {
187 if ((bottom - top) == (right - left))
    [all...]
  /frameworks/base/media/tests/CameraBrowser/res/layout/
object_info.xml 26 android:layout_gravity="right"
36 android:layout_gravity="right"
46 android:layout_gravity="right"
56 android:layout_gravity="right"
66 android:layout_gravity="right"
76 android:layout_gravity="right"
86 android:layout_gravity="right"
96 android:layout_gravity="right"
106 android:layout_gravity="right"
116 android:layout_gravity="right"
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
FaceSquareFilterTest.java 77 // ensure the output image has the rectangle in the right place
90 int right = (faceRect.right+WIDTH_OFFSET)*bitmap.getWidth()/FACE_X_RANGE; local
107 if (right > bitmap.getWidth()) {
108 right = bitmap.getWidth();
109 } else if (right < 0) {
110 right = 0;
124 // Right edge
125 if (right > 0 && top > 0) {
126 pixels[ImageConstants.PIX_CHANNELS * (bitmap.getWidth() * (top + j) + right)
    [all...]
  /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...]

Completed in 347 milliseconds

1 2 3 4 5 67 8 91011>>