/external/apache-velocity-engine/velocity-engine-core/src/test/resources/templates/compare/ |
D | logical2.cmp | 20 right 22 right 24 right 26 right 28 right 30 right 34 right 36 right 38 right 40 right [all …]
|
D | logical.cmp | 75 right 77 right 79 right 81 right 83 right 85 right 89 right 91 right 93 right 95 right [all …]
|
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/itertools-0.11.0/src/ |
D | merge_join.rs | 16 pub fn merge_join_by<I, J, F, T>(left: I, right: J, cmp_fn: F) in merge_join_by() 25 right: put_back(right.into_iter().fuse()), in merge_join_by() 36 right: PutBack<Fuse<J>>, field 43 fn right(right: R) -> Self::MergeResult; in right() method 47 fn merge(self, left: L, right: R) -> (Option<L>, Option<R>, Self::MergeResult); in merge() 48 fn size_hint(left: SizeHint, right: SizeHint) -> SizeHint; in size_hint() 56 fn right(right: R) -> Self::MergeResult { in right() method 57 EitherOrBoth::Right(right) in right() 59 fn merge(self, left: L, right: R) -> (Option<L>, Option<R>, Self::MergeResult) { in merge() 61 Ordering::Equal => (None, None, EitherOrBoth::Both(left, right)), in merge() [all …]
|
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/itertools-0.11.0/src/ |
D | merge_join.rs | 16 pub fn merge_join_by<I, J, F, T>(left: I, right: J, cmp_fn: F) in merge_join_by() 25 right: put_back(right.into_iter().fuse()), in merge_join_by() 36 right: PutBack<Fuse<J>>, field 43 fn right(right: R) -> Self::MergeResult; in right() method 47 fn merge(self, left: L, right: R) -> (Option<L>, Option<R>, Self::MergeResult); in merge() 48 fn size_hint(left: SizeHint, right: SizeHint) -> SizeHint; in size_hint() 56 fn right(right: R) -> Self::MergeResult { in right() method 57 EitherOrBoth::Right(right) in right() 59 fn merge(self, left: L, right: R) -> (Option<L>, Option<R>, Self::MergeResult) { in merge() 61 Ordering::Equal => (None, None, EitherOrBoth::Both(left, right)), in merge() [all …]
|
/external/skia/tests/sksl/shared/ |
D | MatricesNonsquare.metal | 16 …right);thread bool operator!=(const half2x3 left, const half2x3 right);thread bool operator==(cons…
|
D | MatrixOpEqualsES3.metal | 16 …right);thread bool operator!=(const half3x2 left, const half3x2 right);thread bool operator==(cons… 17 return half3x2(left[0] / right[0], left[1] / right[1], left[2] / right[2]); 19 thread half3x2& operator/=(thread half3x2& left, thread const half3x2& right) { 20 left = left / right; 23 …right) {return all(left[0] == right[0]) && all(left[1] == right[1]);}thread bool operator!=(const … 24 return half2x3(left[0] / right[0], left[1] / right[1]); 26 thread half2x3& operator/=(thread half2x3& left, thread const half2x3& right) { 27 left = left / right; 30 …right) {return all(left[0] == right[0]) && all(left[1] == right[1]) && all(left[2] == right[2]) &&… 31 return half2x4(left[0] / right[0], left[1] / right[1]); [all …]
|
D | FunctionReturnTypeMatch.metal | 16 …right);thread bool operator!=(const float2x2 left, const float2x2 right);thread bool operator==(co…
|
D | UnaryPositiveNegative.metal | 20 …right);thread bool operator!=(const float2x2 left, const float2x2 right);thread bool operator==(co…
|
D | MatrixOpEqualsES2.metal | 16 …right);thread bool operator!=(const half3x3 left, const half3x3 right);thread bool operator==(cons… 17 return half3x3(left[0] / right[0], left[1] / right[1], left[2] / right[2]); 19 thread half3x3& operator/=(thread half3x3& left, thread const half3x3& right) { 20 left = left / right; 23 …right) {return all(left[0] == right[0]) && all(left[1] == right[1]) && all(left[2] == right[2]) &&… 24 return half2x2(left[0] / right[0], left[1] / right[1]); 26 thread half2x2& operator/=(thread half2x2& left, thread const half2x2& right) { 27 left = left / right; 30 thread half2x2& operator*=(thread half2x2& left, thread const half2x2& right) { 31 left = left * right; [all …]
|
/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/avl/ |
D | avl.h | 62 friend int QsortCompare(const AVL& left, const AVL& right) { in QsortCompare() argument 63 if (left.root_.get() == right.root_.get()) return 0; in QsortCompare() 65 Iterator b(right.root_); in QsortCompare() 103 right(std::move(r)), in Node() 107 const NodePtr right; member 147 if (n->right != nullptr) { in MoveNext() 148 n = n->right.get(); in MoveNext() 167 ForEachImpl(n->right.get(), std::forward<F>(f)); in ForEachImpl() 173 const NodePtr& right) { in MakeNode() argument 174 return std::make_shared<Node>(std::move(key), std::move(value), left, right, in MakeNode() [all …]
|
/external/skia/tests/sksl/intrinsics/ |
D | OuterProduct.metal | 19 …right);thread bool operator!=(const float2x2 left, const float2x2 right);thread bool operator==(co…
|
/external/rust/android-crates-io/crates/itertools/src/ |
D | merge_join.rs | 58 right: PutBack<Fuse<J>>, field 70 right: put_back(b.into_iter().fuse()), in merge_by_new() 80 right: J, in merge_join_by() 90 right: put_back(right.into_iter().fuse()), in merge_join_by() 115 fn right(right: R) -> Self::MergeResult; in right() method 119 fn merge(&mut self, left: L, right: R) -> (Option<Either<L, R>>, Self::MergeResult); in merge() 120 fn size_hint(left: SizeHint, right: SizeHint) -> SizeHint; in size_hint() 128 fn right(right: R) -> Self::MergeResult { in right() method 129 EitherOrBoth::Right(right) in right() 131 fn merge(&mut self, left: L, right: R) -> (Option<Either<L, R>>, Self::MergeResult) { in merge() [all …]
|
/external/guava/guava/src/com/google/common/collect/ |
D | ComparisonChain.java | 105 public ComparisonChain compare(Comparable<?> left, Comparable<?> right) { 106 return classify(((Comparable<Object>) left).compareTo(right)); 111 @ParametricNullness T left, @ParametricNullness T right, Comparator<T> comparator) { 112 return classify(comparator.compare(left, right)); 116 public ComparisonChain compare(int left, int right) { 117 return classify(Integer.compare(left, right)); 121 public ComparisonChain compare(long left, long right) { 122 return classify(Long.compare(left, right)); 126 public ComparisonChain compare(float left, float right) { 127 return classify(Float.compare(left, right)); [all …]
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | ComparisonChain.java | 70 public ComparisonChain compare(Comparable<?> left, Comparable<?> right) { 71 return classify(((Comparable<Object>) left).compareTo(right)); 76 @ParametricNullness T left, @ParametricNullness T right, Comparator<T> comparator) { 77 return classify(comparator.compare(left, right)); 81 public ComparisonChain compare(int left, int right) { 82 return classify(Integer.compare(left, right)); 86 public ComparisonChain compare(long left, long right) { 87 return classify(Long.compare(left, right)); 91 public ComparisonChain compare(float left, float right) { 92 return classify(Float.compare(left, right)); [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math3/geometry/partitioning/utilities/ |
D | AVLTree.java | 157 if (node.right == null) { in getNotSmaller() 160 node = node.right; in getNotSmaller() 194 if (node.right == null) { in getNotLarger() 197 node = node.right; in getNotLarger() 235 private Node right; field in AVLTree.Node 250 right = null; in Node() 266 return 1 + ((left == null) ? 0 : left.size()) + ((right == null) ? 0 : right.size()); in size() 291 while (node.right != null) { in getLargest() 292 node = node.right; in getLargest() 329 if (right != null) { in getNext() [all …]
|
/external/libvpx/vpx_dsp/arm/ |
D | fdct8x8_neon.h | 146 int32x4_t *right) { in vpx_highbd_fdct8x8_pass1_notranspose_neon() argument 157 sr[0] = vaddq_s32(right[0], right[7]); in vpx_highbd_fdct8x8_pass1_notranspose_neon() 158 sr[1] = vaddq_s32(right[1], right[6]); in vpx_highbd_fdct8x8_pass1_notranspose_neon() 159 sr[2] = vaddq_s32(right[2], right[5]); in vpx_highbd_fdct8x8_pass1_notranspose_neon() 160 sr[3] = vaddq_s32(right[3], right[4]); in vpx_highbd_fdct8x8_pass1_notranspose_neon() 161 sr[4] = vsubq_s32(right[3], right[4]); in vpx_highbd_fdct8x8_pass1_notranspose_neon() 162 sr[5] = vsubq_s32(right[2], right[5]); in vpx_highbd_fdct8x8_pass1_notranspose_neon() 163 sr[6] = vsubq_s32(right[1], right[6]); in vpx_highbd_fdct8x8_pass1_notranspose_neon() 164 sr[7] = vsubq_s32(right[0], right[7]); in vpx_highbd_fdct8x8_pass1_notranspose_neon() 184 &left[0], &right[0], &left[4], &right[4]); in vpx_highbd_fdct8x8_pass1_notranspose_neon() [all …]
|
D | fdct8x8_neon.c | 75 int32x4_t left[8], right[8]; in vpx_highbd_fdct8x8_neon() local 94 right[0] = vshll_n_s16(vget_high_s16(in[0]), 2); in vpx_highbd_fdct8x8_neon() 95 right[1] = vshll_n_s16(vget_high_s16(in[1]), 2); in vpx_highbd_fdct8x8_neon() 96 right[2] = vshll_n_s16(vget_high_s16(in[2]), 2); in vpx_highbd_fdct8x8_neon() 97 right[3] = vshll_n_s16(vget_high_s16(in[3]), 2); in vpx_highbd_fdct8x8_neon() 98 right[4] = vshll_n_s16(vget_high_s16(in[4]), 2); in vpx_highbd_fdct8x8_neon() 99 right[5] = vshll_n_s16(vget_high_s16(in[5]), 2); in vpx_highbd_fdct8x8_neon() 100 right[6] = vshll_n_s16(vget_high_s16(in[6]), 2); in vpx_highbd_fdct8x8_neon() 101 right[7] = vshll_n_s16(vget_high_s16(in[7]), 2); in vpx_highbd_fdct8x8_neon() 103 vpx_highbd_fdct8x8_pass1_neon(left, right); in vpx_highbd_fdct8x8_neon() [all …]
|
/external/sdv/vsomeip/third_party/boost/icl/include/boost/icl/concept/ |
D | interval.hpp | 43 const typename interval_traits<Type>::domain_type& right) in domain_less() argument 45 return typename interval_traits<Type>::domain_compare()(left, right); in domain_less() 51 const typename interval_traits<Type>::domain_type& right) in domain_less_equal() argument 53 return !(typename interval_traits<Type>::domain_compare()(right, left)); in domain_less_equal() 59 const typename interval_traits<Type>::domain_type& right) in domain_equal() argument 62 return !(domain_compare()(left, right)) && !(domain_compare()(right, left)); in domain_equal() 265 const typename interval_traits<Type>::domain_type& right) in span() argument 268 if(domain_compare()(left,right)) in span() 269 return construct<Type>(left, right); in span() 271 return construct<Type>(right, left); in span() [all …]
|
/external/grpc-grpc/src/core/lib/avl/ |
D | avl.h | 64 friend int QsortCompare(const AVL& left, const AVL& right) { in QsortCompare() argument 65 if (left.root_.get() == right.root_.get()) return 0; in QsortCompare() 67 Iterator b(right.root_); in QsortCompare() 105 right(std::move(r)), in Node() 109 const NodePtr right; member 149 if (n->right != nullptr) { in MoveNext() 150 n = n->right.get(); in MoveNext() 169 ForEachImpl(n->right.get(), std::forward<F>(f)); in ForEachImpl() 175 const NodePtr& right) { in MakeNode() argument 176 return MakeRefCounted<Node>(std::move(key), std::move(value), left, right, in MakeNode() [all …]
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/engines/ |
D | DESBase.java | 334 int work, right, left; in desFunc() local 337 right = Pack.bigEndianToInt(in, inOff + 4); in desFunc() 339 work = ((left >>> 4) ^ right) & 0x0f0f0f0f; in desFunc() 340 right ^= work; in desFunc() 342 work = ((left >>> 16) ^ right) & 0x0000ffff; in desFunc() 343 right ^= work; in desFunc() 345 work = ((right >>> 2) ^ left) & 0x33333333; in desFunc() 347 right ^= (work << 2); in desFunc() 348 work = ((right >>> 8) ^ left) & 0x00ff00ff; in desFunc() 350 right ^= (work << 8); in desFunc() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
D | DESBase.java | 333 int work, right, left; in desFunc() local 336 right = Pack.bigEndianToInt(in, inOff + 4); in desFunc() 338 work = ((left >>> 4) ^ right) & 0x0f0f0f0f; in desFunc() 339 right ^= work; in desFunc() 341 work = ((left >>> 16) ^ right) & 0x0000ffff; in desFunc() 342 right ^= work; in desFunc() 344 work = ((right >>> 2) ^ left) & 0x33333333; in desFunc() 346 right ^= (work << 2); in desFunc() 347 work = ((right >>> 8) ^ left) & 0x00ff00ff; in desFunc() 349 right ^= (work << 8); in desFunc() [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/engines/ |
D | DESBase.java | 334 int work, right, left; in desFunc() local 337 right = Pack.bigEndianToInt(in, inOff + 4); in desFunc() 339 work = ((left >>> 4) ^ right) & 0x0f0f0f0f; in desFunc() 340 right ^= work; in desFunc() 342 work = ((left >>> 16) ^ right) & 0x0000ffff; in desFunc() 343 right ^= work; in desFunc() 345 work = ((right >>> 2) ^ left) & 0x33333333; in desFunc() 347 right ^= (work << 2); in desFunc() 348 work = ((right >>> 8) ^ left) & 0x00ff00ff; in desFunc() 350 right ^= (work << 8); in desFunc() [all …]
|
/external/sdv/vsomeip/third_party/boost/icl/include/boost/icl/detail/ |
D | mapped_reference.hpp | 91 operator == (const Comparand& right)const in operator ==() 92 { return first == right.first && second == right.second; } in operator ==() 96 operator != (const Comparand& right)const in operator !=() 97 { return !(*this == right); } in operator !=() 101 operator < (const Comparand& right)const in operator <() 103 return first < right.first in operator <() 104 ||(!(right.first < first) && second < right.second); in operator <() 109 operator > (const Comparand& right)const in operator >() 111 return first > right.first in operator >() 112 ||(!(right.first > first) && second > right.second); in operator >() [all …]
|
/external/apache-velocity-engine/velocity-engine-core/src/test/resources/templates/ |
D | logical2.vm | 44 right 52 right 56 right 62 right 70 right 76 right 82 right 90 right 94 right 102 right [all …]
|
/external/rust/android-crates-io/crates/merge/src/ |
D | lib.rs | 150 pub fn overwrite_false(left: &mut bool, right: bool) { in overwrite_false() 152 *left = right; in overwrite_false() 157 pub fn overwrite_true(left: &mut bool, right: bool) { in overwrite_true() 159 *left = right; in overwrite_true() 170 pub fn saturating_add<T: num_traits::SaturatingAdd>(left: &mut T, right: T) { in saturating_add() 171 *left = left.saturating_add(&right); in saturating_add() 175 pub fn overwrite_zero<T: num_traits::Zero>(left: &mut T, right: T) { in overwrite_zero() 177 *left = right; in overwrite_zero() 187 pub fn max<T: cmp::Ord>(left: &mut T, right: T) { in max() 188 if cmp::Ord::cmp(left, &right) == cmp::Ordering::Less { in max() [all …]
|