Searched refs:left (Results 51 - 75 of 2877) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Daccess-binary-trees.js5 function TreeNode(left,right,item){
6 this.left = left;
12 if (this.left==null) return this.item;
13 else return this.item + this.left.itemCheck() - this.right.itemCheck();
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Daccess-binary-trees.js5 function TreeNode(left,right,item){
6 this.left = left;
12 if (this.left==null) return this.item;
13 else return this.item + this.left.itemCheck() - this.right.itemCheck();
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.cc18 return point.x() >= left() && point.x() < right() &&
23 return rect.left() >= left() && rect.right() <= right() &&
28 left_ = std::max(left(), rect.left());
/external/chromium_org/v8/src/compiler/
H A Dmachine-operator-reducer.cc52 if (m.right().Is(-1)) return Replace(m.left().node()); // x & -1 => x
54 return ReplaceInt32(m.left().Value() & m.right().Value());
56 if (m.LeftEqualsRight()) return Replace(m.left().node()); // x & x => x
61 if (m.right().Is(0)) return Replace(m.left().node()); // x | 0 => x
64 return ReplaceInt32(m.left().Value() | m.right().Value());
66 if (m.LeftEqualsRight()) return Replace(m.left().node()); // x | x => x
67 if (m.left().IsWord32Shl() && m.right().IsWord32Shr()) {
68 Int32BinopMatcher mleft(m.left().node());
70 if (mleft.left().node() == mright.left()
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DBitWriterBuffer.java20 int left = 8 - position % 8;
21 if (numBits <= left) {
24 current += i << (left - numBits);
28 int bitsSecondWrite = numBits - left;
29 writeBits(i >> bitsSecondWrite, left);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-ctr.c28 size_t j, len, left = data_len; local
38 while (left > 0) {
41 len = (left < AES_BLOCK_SIZE) ? left : AES_BLOCK_SIZE;
45 left -= len;
/external/wpa_supplicant_8/src/crypto/
H A Daes-ctr.c28 size_t j, len, left = data_len; local
38 while (left > 0) {
41 len = (left < AES_BLOCK_SIZE) ? left : AES_BLOCK_SIZE;
45 left -= len;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-ctr.c28 size_t j, len, left = data_len; local
38 while (left > 0) {
41 len = (left < AES_BLOCK_SIZE) ? left : AES_BLOCK_SIZE;
45 left -= len;
/external/chromium_org/chrome/browser/resources/chromeos/first_run/
H A Dbubble.css23 border-left-color: white;
24 left: 100%;
32 .bubble .arrow.points-left {
49 .bubble .arrow.left {
50 left: 12px;
/external/chromium_org/tools/gn/
H A Doperators.cc122 const Token& left,
125 const Value* old_value = scope->GetValue(left.value(), false);
136 *err = Err(op_node->left()->GetRange(), "Replacing nonempty list.",
146 left.value().as_string() + " = []\nbefore reassigning."));
153 if (right.type() == Value::LIST && left.value() == kSourcesName) {
157 Value* set_value = scope->SetValue(left.value(),
163 scope->SetValue(left.value(), right, op_node->right());
169 // left value. This is set to true when doing +, and false when doing +=.
181 Value* left,
185 switch (left
120 ExecuteEquals(Scope* scope, const BinaryOpNode* op_node, const Token& left, const Value& right, Err* err) argument
178 ValuePlusEquals(const Scope* scope, const BinaryOpNode* op_node, const Token& left_token, Value* left, const Value& right, bool allow_type_conversion, Err* err) argument
251 ExecutePlusEquals(Scope* scope, const BinaryOpNode* op_node, const Token& left, const Value& right, Err* err) argument
273 ValueMinusEquals(const BinaryOpNode* op_node, Value* left, const Value& right, bool allow_type_conversion, Err* err) argument
314 ExecuteMinusEquals(Scope* scope, const BinaryOpNode* op_node, const Token& left, const Value& right, Err* err) argument
334 ExecutePlus(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
345 ExecuteMinus(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
358 ExecuteEqualsEquals(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
368 ExecuteNotEquals(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
379 FillNeedsTwoIntegersError(const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
390 ExecuteLessEquals(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
400 ExecuteGreaterEquals(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
410 ExecuteGreater(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
420 ExecuteLess(Scope* scope, const BinaryOpNode* op_node, const Value& left, const Value& right, Err* err) argument
437 Value left = GetValueOrFillError(op_node, left_node, "left", scope, err); local
467 Value left = GetValueOrFillError(op_node, left_node, "left", scope, err); local
547 ExecuteBinaryOperator(Scope* scope, const BinaryOpNode* op_node, const ParseNode* left, const ParseNode* right, Err* err) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatBoxExtent.h47 FloatBoxExtent(float top, float right, float bottom, float left) argument
51 , m_left(left)
64 float left() const { return m_left; } function in class:blink::FloatBoxExtent
65 void setLeft(float left) { m_left = left; } argument
67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
74 rect.move(-left(), -top());
75 rect.expand(left() + right(), top() + bottom());
83 m_left = std::min(m_left, other.left());
106 && a.left()
[all...]
/external/chromium_org/chrome/browser/ui/tabs/
H A Dtab_resources.cc17 // Windows and Ash have shadows in the left, right and top parts of the tab.
35 SkScalar left = kTabInset; local
40 // Start in the lower-left corner.
41 path->moveTo(left, bottom);
44 path->lineTo(left + kTabBottomCurveWidth, bottom - kTabBottomCurveWidth);
45 path->lineTo(left + kTabCapWidth - kTabTopCurveWidth,
47 path->lineTo(left + kTabCapWidth, top);
51 path->lineTo(left + kTabCapWidth, 0);
65 path->lineTo(left, bottom);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2073.js41 this.left = null;
57 child.left = this.last;
75 if (parent.tail == this) parent.tail = this.left;
76 if (this.left) this.left.right = this.right;
77 if (this.right) this.right.left = this.left;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
H A DPair.java22 private final L left; field in class:Pair
30 public Pair(L left, R right) { argument
31 this.left = left;
66 return left;
78 public static <L, R> Pair<L, R> create(L left, R right) { argument
79 return new Pair<L, R>(left, right);
/external/replicaisland/src/com/replica/replicaisland/
H A DQuickSorter.java44 // quicksort a[left] to a[right]
45 public void quicksort(Type[] a, int left, int right, Comparator<Type> comparator) { argument
46 if (right <= left) return;
47 int i = partition(a, left, right, comparator);
48 quicksort(a, left, i - 1, comparator);
52 // partition a[left] to a[right], assumes left < right
53 private int partition(Type[] a, int left, int right, Comparator<Type> comparator) { argument
54 int i = left - 1;
57 while (comparator.compare(a[++i], a[right]) < 0) { // find item on left t
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/
H A Dvp9_intrapred4_dspr2.c18 const uint8_t *above, const uint8_t *left) {
22 "lb %[tmp1], (%[left]) \n\t"
23 "lb %[tmp2], 1(%[left]) \n\t"
24 "lb %[tmp3], 2(%[left]) \n\t"
25 "lb %[tmp4], 3(%[left]) \n\t"
40 : [left] "r" (left), [dst] "r" (dst), [stride] "r" (stride)
45 const uint8_t *above, const uint8_t *left) {
52 "lw %[left_c], (%[left]) \n\t"
81 : [above] "r" (above), [left] "
17 vp9_h_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
44 vp9_dc_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
86 vp9_tm_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
[all...]
/external/libvpx/libvpx/vp9/common/mips/dspr2/
H A Dvp9_intrapred4_dspr2.c18 const uint8_t *above, const uint8_t *left) {
22 "lb %[tmp1], (%[left]) \n\t"
23 "lb %[tmp2], 1(%[left]) \n\t"
24 "lb %[tmp3], 2(%[left]) \n\t"
25 "lb %[tmp4], 3(%[left]) \n\t"
40 : [left] "r" (left), [dst] "r" (dst), [stride] "r" (stride)
45 const uint8_t *above, const uint8_t *left) {
52 "lw %[left_c], (%[left]) \n\t"
81 : [above] "r" (above), [left] "
17 vp9_h_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
44 vp9_dc_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
86 vp9_tm_predictor_4x4_dspr2(uint8_t *dst, ptrdiff_t stride, const uint8_t *above, const uint8_t *left) argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkTSort.h121 template <typename T, typename C> static void SkTInsertionSort(T* left, T* right, C lessThan) { argument
122 for (T* next = left + 1; next <= right; ++next) {
125 while (left < hole && lessThan(insert, *(hole - 1))) {
136 static T* SkTQSort_Partition(T* left, T* right, T* pivot, C lessThan) { argument
139 T* newPivot = left;
140 while (left < right) {
141 if (lessThan(*left, pivotValue)) {
142 SkTSwap(*left, *newPivot);
145 left += 1;
154 * This implementation recurses on the left regio
163 SkTIntroSort(int depth, T* left, T* right, C lessThan) argument
191 SkTQSort(T* left, T* right, C lessThan) argument
201 SkTQSort(T* left, T* right) argument
206 SkTQSort(T** left, T** right) argument
[all...]
/external/clang/www/analyzer/
H A Dmenu.css4 clear: left;
25 text-align: left;
29 float: left;
38 left: 0;
41 border-left: 1px solid;
46 left:auto;
/external/jsilver/src/com/google/clearsilver/jsilver/functions/numeric/
H A DMaxFunction.java35 Value left = args[0];
37 return literalConstant(max(left.asNumber(), right.asNumber()), left, right);
H A DMinFunction.java35 Value left = args[0];
37 return literalConstant(min(left.asNumber(), right.asNumber()), left, right);
/external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
H A DAndFunction.java29 Value left = args[0];
31 return literalConstant(left.asBoolean() && right.asBoolean(), left, right);
H A DDivideFunction.java29 Value left = args[0];
31 return literalConstant(left.asNumber() / right.asNumber(), left, right);
H A DEqualFunction.java29 Value left = args[0];
31 return literalConstant(left.equals(right), left, right);
H A DGreaterFunction.java29 Value left = args[0];
31 return literalConstant(left.asNumber() > right.asNumber(), left, right);

Completed in 3290 milliseconds

1234567891011>>