Searched refs:right (Results 201 - 225 of 2377) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DDESEngine.java408 int work, right, left;
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 >>>
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkRect.cpp12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
14 if (left >= right || top >= bottom) {
20 this->set(left, top, right, bottom);
24 if (right > fRight) fRight = right;
102 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, argument
104 if (left < right && top < bottom && !this->isEmpty() && // check for empties
105 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
109 if (fRight > right) fRight = right;
149 join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
[all...]
/external/skia/src/core/
H A DSkRect.cpp12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
14 if (left >= right || top >= bottom) {
20 this->set(left, top, right, bottom);
24 if (right > fRight) fRight = right;
102 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, argument
104 if (left < right && top < bottom && !this->isEmpty() && // check for empties
105 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
109 if (fRight > right) fRight = right;
152 join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODRedBlackTree.h286 Node* right() const { return m_right; } function in class:blink::PODRedBlackTree::Node
309 // given node based on the values in the left and right children. It
312 // in the left and right children. This method should return true if
339 current = current->right();
353 return treeSearchFullComparisons(current->right(), data);
357 // We may need to traverse both the left and right subtrees.
360 result = treeSearchFullComparisons(current->right(), data);
373 x = x->right();
390 if (x->right())
391 return treeMinimum(x->right());
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DBstNodeTest.java74 SimpleNode right = new SimpleNode('c', null, null);
75 SimpleNode node = new SimpleNode('b', left, right);
77 testChildIs(node, RIGHT, right);
96 for (SimpleNode right : GOOD_RIGHTS) {
98 new SimpleNode(MIDDLE_KEY, left, right).orderingInvariantHolds(Ordering.natural()));
105 for (SimpleNode right : ALL_RIGHTS) {
107 new SimpleNode(MIDDLE_KEY, left, right).orderingInvariantHolds(Ordering.natural()));
114 for (SimpleNode right : BAD_RIGHTS) {
116 new SimpleNode(MIDDLE_KEY, left, right).orderingInvariantHolds(Ordering.natural()));
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/css/
H A Doptions.css47 padding-right: 7px;
53 border-bottom-right-radius: 12px 12px;
57 border-top-right-radius: 12px 12px;
67 text-align: right;
73 padding-right: 20px;
76 float: right;
96 float: right;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPathTraversalState.cpp58 void split(QuadraticBezier& left, QuadraticBezier& right) const
61 right.control = midPoint(control, end);
63 FloatPoint leftControlToRightControl = midPoint(left.control, right.control);
65 right.start = leftControlToRightControl;
68 right.end = end;
70 left.splitDepth = right.splitDepth = splitDepth + 1;
100 void split(CubicBezier& left, CubicBezier& right) const
108 right.control2 = midPoint(control2, end);
109 right.control1 = midPoint(right
[all...]
/external/chromium_org/third_party/webrtc/modules/video_render/mac/
H A Dvideo_render_mac_cocoa_impl.mm110 const float right,
123 nsOpenGLChannel = _ptrCocoaRender->CreateNSGLChannel(streamId, zOrder, left, top, right, bottom);
145 float& right,
148 return _ptrCocoaRender->GetChannelProperties(streamId, zOrder, left, top, right, bottom);
215 const float right,
225 const float right,
244 const float right,
247 return _ptrCocoaRender->SetText(textId, text, textLength, textColorRef, backgroundColorRef, left, top, right, bottom);
255 const float right,
/external/chromium-trace/trace-viewer/src/ui/
H A Dfilter_control.css16 right: 0.5ex;
17 text-align: right;
31 margin-right: 0;
/external/chromium_org/cc/resources/
H A Dlayer_tiling_data.cc75 int* right,
85 *right = tiling_data_.TileXIndexFromSrcCoord(content_rect.right() - 1);
104 int left, top, right, bottom; local
106 gfx::Rect(tiling_size), &left, &top, &right, &bottom); local
109 if (it->first.first > right || it->first.second > bottom)
72 ContentRectToTileIndices(const gfx::Rect& content_rect, int* left, int* top, int* right, int* bottom) const argument
/external/chromium_org/chrome/browser/resources/chromeos/first_run/
H A Dstep_bubble.css20 margin-right: 20px;
27 margin-right: 20px;
37 margin-right: 18px;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dclosebrackets.js57 for (var i = 0; i < pairs.length; i += 2) (function(left, right) {
58 if (left != right) closingBrackets += right;
69 else if (left == right && next == right) {
74 } else if (left == right && cur.ch > 1 &&
78 else if (left == right && CodeMirror.isWordChar(next))
97 sels[i] = left + sels[i] + right;
100 cm.replaceSelection(left + right, null);
108 if (left != right) ma
[all...]
/external/chromium_org/third_party/polymer/components/core-header-panel/
H A Dcore-header-panel.css18 right: 0;
41 right: 0;
67 right: 0;
/external/chromium_org/third_party/polymer/components-chromium/core-header-panel/
H A Dcore-header-panel.css18 right: 0;
41 right: 0;
67 right: 0;
/external/chromium_org/third_party/webrtc/modules/video_render/android/
H A Dvideo_render_android_impl.h60 const float right, const float bottom);
69 float& right, float& bottom) const;
97 const float right, const float bottom);
104 const float right, const float bottom);
117 const float top, const float right,
127 const float right,
/external/chromium_org/third_party/webrtc/modules/video_render/include/
H A Dvideo_render.h96 * right - position of the stream in the window, [0.0f, 1.0f]
105 const float right, const float bottom) = 0;
133 * right - [out] position of the stream in the window, [0.0f, 1.0f]
140 float& right, float& bottom) const = 0;
230 const float right,
247 const float right,
258 const float right, const float bottom) = 0;
266 const float right, const float bottom) = 0;
/external/chromium_org/ui/login/account_picker/
H A Dscreen_account_picker.css21 right: -50%;
26 right: auto;
44 right: -50%;
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_region.cc19 DesktopRegion::RowSpan::RowSpan(int32_t left, int32_t right) argument
20 : left(left), right(right) {
131 AddSpanToRow(row->second, rect.left(), rect.right());
243 if (it1->right <= it2->left) {
249 int32_t right = std::min(it1->right, it2->right); local
250 assert(left < right);
252 output->push_back(RowSpan(left, right));
411 AddSpanToRow(Row* row, int left, int right) argument
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsort.c58 sort__thread_cmp(struct hist_entry *left, struct hist_entry *right) argument
60 return right->thread->tid - left->thread->tid;
80 sort__comm_cmp(struct hist_entry *left, struct hist_entry *right) argument
82 return right->thread->tid - left->thread->tid;
86 sort__comm_collapse(struct hist_entry *left, struct hist_entry *right) argument
89 char *comm_r = right->thread->comm;
134 sort__dso_cmp(struct hist_entry *left, struct hist_entry *right) argument
136 return _sort__dso_cmp(left->ms.map, right->ms.map);
183 sort__sym_cmp(struct hist_entry *left, struct hist_entry *right) argument
185 if (!left->ms.sym && !right
244 sort__srcline_cmp(struct hist_entry *left, struct hist_entry *right) argument
302 sort__parent_cmp(struct hist_entry *left, struct hist_entry *right) argument
330 sort__cpu_cmp(struct hist_entry *left, struct hist_entry *right) argument
351 sort__dso_from_cmp(struct hist_entry *left, struct hist_entry *right) argument
365 sort__dso_to_cmp(struct hist_entry *left, struct hist_entry *right) argument
379 sort__sym_from_cmp(struct hist_entry *left, struct hist_entry *right) argument
391 sort__sym_to_cmp(struct hist_entry *left, struct hist_entry *right) argument
449 sort__mispredict_cmp(struct hist_entry *left, struct hist_entry *right) argument
473 sort__daddr_cmp(struct hist_entry *left, struct hist_entry *right) argument
502 sort__dso_daddr_cmp(struct hist_entry *left, struct hist_entry *right) argument
527 sort__locked_cmp(struct hist_entry *left, struct hist_entry *right) argument
565 sort__tlb_cmp(struct hist_entry *left, struct hist_entry *right) argument
635 sort__lvl_cmp(struct hist_entry *left, struct hist_entry *right) argument
712 sort__snoop_cmp(struct hist_entry *left, struct hist_entry *right) argument
782 sort__local_weight_cmp(struct hist_entry *left, struct hist_entry *right) argument
801 sort__global_weight_cmp(struct hist_entry *left, struct hist_entry *right) argument
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DIntermediate.cpp47 TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &line)
85 if (left->getBasicType() != right->getBasicType())
92 // one and promote it to the right type.
98 node->setRight(right);
106 TIntermConstantUnion *rightTempConstant = right->getAsConstantUnion();
125 TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &line)
127 if (left->getType().getStruct() || right->getType().getStruct())
129 if (left->getType() != right->getType())
139 node->setRight(right);
148 // of an array or struct, and the right nod
46 addBinaryMath( TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &line) argument
124 addAssign( TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &line) argument
286 growAggregate( TIntermNode *left, TIntermNode *right, const TSourceLoc &line) argument
365 addComma( TIntermTyped *left, TIntermTyped *right, const TSourceLoc &line) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/video_render/windows/
H A Dvideo_render_windows_impl.cc100 const float right,
112 top, right, bottom);
138 float& right,
145 right = 0;
155 top, right, bottom);
248 const float right,
258 error = _ptrRendererWin->SetCropping(streamId, 0, left, top, right,
269 const float right,
280 top, right, bottom);
309 const float right,
96 AddIncomingRenderStream(const uint32_t streamId, const uint32_t zOrder, const float left, const float top, const float right, const float bottom) argument
133 GetIncomingRenderStreamProperties( const uint32_t streamId, uint32_t& zOrder, float& left, float& top, float& right, float& bottom) const argument
244 SetStreamCropping( const uint32_t streamId, const float left, const float top, const float right, const float bottom) argument
264 ConfigureRenderer( const uint32_t streamId, const unsigned int zOrder, const float left, const float top, const float right, const float bottom) argument
301 SetText( const uint8_t textId, const uint8_t* text, const int32_t textLength, const uint32_t textColorRef, const uint32_t backgroundColorRef, const float left, const float top, const float right, const float bottom) argument
326 SetBitmap(const void* bitMap, const uint8_t pictureId, const void* colorKey, const float left, const float top, const float right, const float bottom) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationcompare.cpp27 CollationCompare::compareUpToQuaternary(CollationIterator &left, CollationIterator &right, argument
73 int64_t ce = right.nextCE(errorCode);
81 right.setCurrentCE(ce & INT64_C(0xffffffff00000000));
83 ce = right.nextCE(errorCode);
86 right.setCurrentCE(0);
124 rightSecondary = ((uint32_t)right.getCE(rightIndex++)) >> 16;
148 while((rightLower32 = (uint32_t)right.getCE(rightLimit)) >
165 rightSecondary = ((uint32_t)right.getCE(--rightIndex)) >> 16;
177 U_ASSERT(left.getCE(leftLimit) == right.getCE(rightLimit));
207 ce = right
[all...]
/external/qemu/ui/
H A Dd3des.c324 register unsigned long fval, work, right, leftt; local
328 right = block[1];
329 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
330 right ^= work;
332 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
333 right ^= work;
335 work = ((right >> 2) ^ leftt) & 0x33333333L;
337 right ^= (work << 2);
338 work = ((right >> 8) ^ leftt) & 0x00ff00ffL;
340 right
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dgesture_config.css26 float: right;
35 text-align: right;
50 text-align: right;
69 text-align: right;
/external/chromium_org/chrome/browser/resources/print_preview/common/
H A Dsearch_box.css16 right: 8px;

Completed in 1147 milliseconds

1234567891011>>