/third_party/skia/tests/sksl/shared/ |
D | MatricesNonsquare.metal | 14 thread bool operator==(const half2x3 left, const half2x3 right); 15 thread bool operator!=(const half2x3 left, const half2x3 right); 17 thread bool operator==(const half2x4 left, const half2x4 right); 18 thread bool operator!=(const half2x4 left, const half2x4 right); 20 thread bool operator==(const half3x2 left, const half3x2 right); 21 thread bool operator!=(const half3x2 left, const half3x2 right); 23 thread bool operator==(const half3x4 left, const half3x4 right); 24 thread bool operator!=(const half3x4 left, const half3x4 right); 26 thread bool operator==(const half4x2 left, const half4x2 right); 27 thread bool operator!=(const half4x2 left, const half4x2 right); [all …]
|
D | MatrixScalarSplat.metal | 14 thread bool operator==(const half3x3 left, const half3x3 right); 15 thread bool operator!=(const half3x3 left, const half3x3 right); 17 thread bool operator==(const half2x2 left, const half2x2 right); 18 thread bool operator!=(const half2x2 left, const half2x2 right); 20 thread bool operator==(const float3x3 left, const float3x3 right); 21 thread bool operator!=(const float3x3 left, const float3x3 right); 23 thread bool operator==(const float2x2 left, const float2x2 right); 24 thread bool operator!=(const float2x2 left, const float2x2 right); 25 thread bool operator==(const half3x3 left, const half3x3 right) { 26 return all(left[0] == right[0]) && [all …]
|
D | Matrices.metal | 14 thread bool operator==(const half2x2 left, const half2x2 right); 15 thread bool operator!=(const half2x2 left, const half2x2 right); 17 thread bool operator==(const half3x3 left, const half3x3 right); 18 thread bool operator!=(const half3x3 left, const half3x3 right); 20 thread bool operator==(const half4x4 left, const half4x4 right); 21 thread bool operator!=(const half4x4 left, const half4x4 right); 23 thread bool operator==(const float2x2 left, const float2x2 right); 24 thread bool operator!=(const float2x2 left, const float2x2 right); 26 thread bool operator==(const float3x3 left, const float3x3 right); 27 thread bool operator!=(const float3x3 left, const float3x3 right); [all …]
|
D | FunctionReturnTypeMatch.metal | 14 thread bool operator==(const float2x2 left, const float2x2 right); 15 thread bool operator!=(const float2x2 left, const float2x2 right); 17 thread bool operator==(const float3x3 left, const float3x3 right); 18 thread bool operator!=(const float3x3 left, const float3x3 right); 20 thread bool operator==(const float4x4 left, const float4x4 right); 21 thread bool operator!=(const float4x4 left, const float4x4 right); 23 thread bool operator==(const half2x2 left, const half2x2 right); 24 thread bool operator!=(const half2x2 left, const half2x2 right); 26 thread bool operator==(const half3x3 left, const half3x3 right); 27 thread bool operator!=(const half3x3 left, const half3x3 right); [all …]
|
D | MatrixConstructorsES3.metal | 15 thread bool operator==(const float2x3 left, const float2x3 right); 16 thread bool operator!=(const float2x3 left, const float2x3 right); 18 thread bool operator==(const float2x4 left, const float2x4 right); 19 thread bool operator!=(const float2x4 left, const float2x4 right); 21 thread bool operator==(const float3x3 left, const float3x3 right); 22 thread bool operator!=(const float3x3 left, const float3x3 right); 24 thread bool operator==(const float4x2 left, const float4x2 right); 25 thread bool operator!=(const float4x2 left, const float4x2 right); 27 thread bool operator==(const float4x3 left, const float4x3 right); 28 thread bool operator!=(const float4x3 left, const float4x3 right); [all …]
|
/third_party/gstreamer/gstplugins_good/gst/audiofx/ |
D | audiopanoramaorc.orc | 39 .temp 4 left 42 convswl left s1 43 convlf left left 44 mulf right left rpan 45 mulf left left lpan 46 mergelq t1 left right 56 .temp 4 left 60 mulf left s1 lpan 61 mergelq d1 left right 70 .temp 4 left [all …]
|
/third_party/skia/tests/sksl/intrinsics/ |
D | OuterProduct.metal | 17 thread bool operator==(const float2x2 left, const float2x2 right); 18 thread bool operator!=(const float2x2 left, const float2x2 right); 20 thread bool operator==(const float3x3 left, const float3x3 right); 21 thread bool operator!=(const float3x3 left, const float3x3 right); 23 thread bool operator==(const float3x2 left, const float3x2 right); 24 thread bool operator!=(const float3x2 left, const float3x2 right); 26 thread bool operator==(const float4x4 left, const float4x4 right); 27 thread bool operator!=(const float4x4 left, const float4x4 right); 29 thread bool operator==(const float2x4 left, const float2x4 right); 30 thread bool operator!=(const float2x4 left, const float2x4 right); [all …]
|
D | Transpose.metal | 16 thread bool operator==(const float2x2 left, const float2x2 right); 17 thread bool operator!=(const float2x2 left, const float2x2 right); 19 thread bool operator==(const float3x2 left, const float3x2 right); 20 thread bool operator!=(const float3x2 left, const float3x2 right); 22 thread bool operator==(const float3x3 left, const float3x3 right); 23 thread bool operator!=(const float3x3 left, const float3x3 right); 24 thread bool operator==(const float2x2 left, const float2x2 right) { 25 return all(left[0] == right[0]) && 26 all(left[1] == right[1]); 28 thread bool operator!=(const float2x2 left, const float2x2 right) { [all …]
|
/third_party/boost/boost/log/utility/functional/ |
D | logical.hpp | 74 bool operator() (T const& left, U const& right) const in operator ()() 76 …return op(left, right, integral_constant< bool, is_integral< T >::value && is_integral< U >::value… in operator ()() 81 static bool op(T const& left, U const& right, false_type) in op() 83 return (left == right); in op() 86 static bool op(T const& left, U const& right, true_type) in op() 89 … return static_cast< common_integral_type >(left) == static_cast< common_integral_type >(right); in op() 99 bool operator() (T const& left, U const& right) const in operator ()() 101 …return op(left, right, integral_constant< bool, is_integral< T >::value && is_integral< U >::value… in operator ()() 106 static bool op(T const& left, U const& right, false_type) in op() 108 return (left != right); in op() [all …]
|
/third_party/boost/boost/icl/concept/ |
D | interval.hpp | 42 domain_less(const typename interval_traits<Type>::domain_type& left, in domain_less() argument 45 return typename interval_traits<Type>::domain_compare()(left, right); in domain_less() 50 domain_less_equal(const typename interval_traits<Type>::domain_type& left, in domain_less_equal() argument 53 return !(typename interval_traits<Type>::domain_compare()(right, left)); in domain_less_equal() 58 domain_equal(const typename interval_traits<Type>::domain_type& left, in domain_equal() argument 62 return !(domain_compare()(left, right)) && !(domain_compare()(right, left)); in domain_equal() 264 span(const typename interval_traits<Type>::domain_type& left, 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 …]
|
/third_party/grpc/src/core/lib/avl/ |
D | avl.cc | 53 unref_node(vtable, node->left, user_data); in unref_node() 66 : 1 + GPR_MAX(calculate_height(node->left), in calculate_height() 72 assert_invariants(n->left); in assert_invariants() 75 assert(labs(node_height(n->left) - node_height(n->right)) <= 1); in assert_invariants() 82 grpc_avl_node* new_node(void* key, void* value, grpc_avl_node* left, in new_node() argument 88 node->left = assert_invariants(left); in new_node() 90 node->height = 1 + GPR_MAX(node_height(left), node_height(right)); in new_node() 106 return get(vtable, node->left, key, user_data); in get() 127 void* value, grpc_avl_node* left, in rotate_left() argument 131 new_node(key, value, left, ref_node(right->left)), in rotate_left() [all …]
|
/third_party/toybox/kconfig/ |
D | expr.c | 20 e->left.sym = sym; in expr_alloc_symbol() 29 e->left.expr = ce; in expr_alloc_one() 38 e->left.expr = e1; in expr_alloc_two() 48 e->left.sym = s1; in expr_alloc_comp() 78 e->left = org->left; in expr_copy() 81 e->left.expr = expr_copy(org->left.expr); in expr_copy() 85 e->left.sym = org->left.sym; in expr_copy() 91 e->left.expr = expr_copy(org->left.expr); in expr_copy() 113 expr_free(e->left.expr); in expr_free() 120 expr_free(e->left.expr); in expr_free() [all …]
|
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/contrib/blast/ |
D | blast.c | 46 unsigned left; /* available input at in */ member 79 if (s->left == 0) { in bits() 80 s->left = s->infun(s->inhow, &(s->in)); in bits() 81 if (s->left == 0) longjmp(s->env, 1); /* out of input */ in bits() 84 s->left--; in bits() 137 int left; /* bits left in next or left to process */ in decode() local 141 left = s->bitcnt; in decode() 146 while (left--) { in decode() 161 left = (MAXBITS+1) - len; in decode() 162 if (left == 0) break; in decode() [all …]
|
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/blast/ |
D | blast.c | 46 unsigned left; /* available input at in */ member 79 if (s->left == 0) { in bits() 80 s->left = s->infun(s->inhow, &(s->in)); in bits() 81 if (s->left == 0) longjmp(s->env, 1); /* out of input */ in bits() 84 s->left--; in bits() 137 int left; /* bits left in next or left to process */ in decode() local 141 left = s->bitcnt; in decode() 146 while (left--) { in decode() 161 left = (MAXBITS+1) - len; in decode() 162 if (left == 0) break; in decode() [all …]
|
/third_party/zlib/contrib/blast/ |
D | blast.c | 46 unsigned left; /* available input at in */ member 79 if (s->left == 0) { in bits() 80 s->left = s->infun(s->inhow, &(s->in)); in bits() 81 if (s->left == 0) longjmp(s->env, 1); /* out of input */ in bits() 84 s->left--; in bits() 137 int left; /* bits left in next or left to process */ in decode() local 141 left = s->bitcnt; in decode() 146 while (left--) { in decode() 161 left = (MAXBITS+1) - len; in decode() 162 if (left == 0) break; in decode() [all …]
|
/third_party/boost/boost/dll/ |
D | shared_library_load_mode.hpp | 210 BOOST_CONSTEXPR inline type operator|(type left, type right) BOOST_NOEXCEPT { in operator |() argument 212 static_cast<unsigned int>(left) | static_cast<unsigned int>(right) in operator |() 215 BOOST_CXX14_CONSTEXPR inline type& operator|=(type& left, type right) BOOST_NOEXCEPT { in operator |=() argument 216 left = left | right; in operator |=() 217 return left; in operator |=() 220 BOOST_CONSTEXPR inline type operator&(type left, type right) BOOST_NOEXCEPT { in operator &() argument 222 static_cast<unsigned int>(left) & static_cast<unsigned int>(right) in operator &() 225 BOOST_CXX14_CONSTEXPR inline type& operator&=(type& left, type right) BOOST_NOEXCEPT { in operator &=() argument 226 left = left & right; in operator &=() 227 return left; in operator &=() [all …]
|
/third_party/boost/libs/bimap/test/ |
D | test_bimap_modify.cpp | 37 BOOST_TEST( b.left.at(2) == 200 ); in test_bimap_modify() 46 bm::left_iterator i = b.left.begin(); in test_bimap_modify() 48 result = b.left.replace( i, bm::left_value_type(1,100) ); in test_bimap_modify() 53 BOOST_TEST( b.left.at(1) == 100 ); in test_bimap_modify() 55 result = b.left.replace_key( i, 2 ); in test_bimap_modify() 60 BOOST_TEST( b.left.at(2) == 100 ); in test_bimap_modify() 62 result = b.left.replace_data( i, 200 ); in test_bimap_modify() 67 BOOST_TEST( b.left.at(2) == 200 ); in test_bimap_modify() 104 BOOST_TEST( i->left == 1 && i->right == 100 ); in test_bimap_modify() 105 BOOST_TEST( b.left.at(1) == 100 ); in test_bimap_modify() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | hevcpred_template.c | 103 pixel *left = left_array + 1; in FUNC() local 162 memset(left, 128, 2 * MAX_TB_SIZE*sizeof(pixel)); in FUNC() 167 left[-1] = POS(-1, -1); in FUNC() 168 top[-1] = left[-1]; in FUNC() 179 left[i] = POS(-1, i); in FUNC() 182 left[i] = POS(-1, i); in FUNC() 183 EXTEND(left + size + bottom_left_size, POS(-1, size + bottom_left_size - 1), in FUNC() 210 left[-1] = top[-1]; in FUNC() 223 left[-1] = top[-1]; in FUNC() 225 left[-1] = top[-1]; in FUNC() [all …]
|
/third_party/skia/src/core/ |
D | SkStringView.cpp | 13 bool operator==(string_view left, string_view right) { in operator ==() argument 14 if (left.length() != right.length()) { in operator ==() 17 return !string_view::traits_type::compare(left.data(), right.data(), left.length()); in operator ==() 20 bool operator!=(string_view left, string_view right) { in operator !=() argument 21 return !(left == right); in operator !=() 24 bool operator<(string_view left, string_view right) { in operator <() argument 25 int result = string_view::traits_type::compare(left.data(), right.data(), in operator <() 26 std::min(left.length(), right.length())); in operator <() 28 result = left.length() - right.length(); in operator <() 33 bool operator<=(string_view left, string_view right) { in operator <=() argument [all …]
|
/third_party/boost/boost/icl/detail/ |
D | interval_subset_comparer.hpp | 98 subset_comparer(const LeftT& left, in subset_comparer() argument 102 : _left(left), _right(right), in subset_comparer() 119 int co_compare(LeftIterT& left, RightIterT& right) in co_compare() argument 129 ::type::apply(left,right); in co_compare() 134 int proceed(LeftIterT& left, RightIterT& right) in proceed() argument 136 if(upper_less(key_value<LeftT>(left), key_value<RightT>(right))) in proceed() 139 _prior_left = left; in proceed() 140 ++left; in proceed() 143 else if(upper_less(key_value<RightT>(right), key_value<LeftT>(left))) in proceed() 153 ++left; in proceed() [all …]
|
D | element_comparer.hpp | 32 element_comparer(const LeftT& left, in element_comparer() argument 36 : _left(left), _right(right), in element_comparer() 51 bool covalues_are_equal(LeftIterT& left, RightIterT& right) in covalues_are_equal() argument 53 if(co_value<LeftT>(left) < co_value<RightT>(right)) in covalues_are_equal() 55 if(co_value<RightT>(right) < co_value<LeftT>(left)) in covalues_are_equal() 60 int proceed(LeftIterT& left, RightIterT& right) in proceed() argument 62 if(upper_less(key_value<LeftT>(left), key_value<RightT>(right))) in proceed() 64 _prior_left = left; in proceed() 65 ++left; in proceed() 68 else if(upper_less(key_value<RightT>(right), key_value<LeftT>(left))) in proceed() [all …]
|
/third_party/boost/boost/test/tools/old/ |
D | impl.hpp | 105 inline assertion_result equal_impl( Left const& left, Right const& right ) in BOOST_PP_REPEAT() 107 return left == right; in BOOST_PP_REPEAT() 112 …ne assertion_result equal_impl( char* left, char const* right ) { return equal_impl( static_cast<c… in equal_impl() argument 113 …assertion_result equal_impl( char const* left, char* right ) { return equal_impl( static_cast<char… in equal_impl() argument 114 …ne assertion_result equal_impl( char* left, char* right ) { return equal_impl( static_cast<c… in equal_impl() argument 117 BOOST_TEST_DECL assertion_result equal_impl( wchar_t const* left, wchar_t const* right ); 118 …ertion_result equal_impl( wchar_t* left, wchar_t const* right ) { return equal_impl( static_cast<w… in equal_impl() argument 119 …ion_result equal_impl( wchar_t const* left, wchar_t* right ) { return equal_impl( static_cast<wcha… in equal_impl() argument 120 …ertion_result equal_impl( wchar_t* left, wchar_t* right ) { return equal_impl( static_cast<w… in equal_impl() argument 128 call_impl( Left const& left, Right const& right, mpl::false_ ) const in call_impl() [all …]
|
/third_party/typescript/src/compiler/transformers/ |
D | es2016.ts | 45 const left = visitNode(node.left, visitor, isExpression); constant 47 if (isElementAccessExpression(left)) { 53 … setTextRange(factory.createAssignment(expressionTemp, left.expression), left.expression), 54 …etTextRange(factory.createAssignment(argumentExpressionTemp, left.argumentExpression), left.argume… 56 left 63 left 66 else if (isPropertyAccessExpression(left)) { 71 … setTextRange(factory.createAssignment(expressionTemp, left.expression), left.expression), 72 left.name 74 left [all …]
|
/third_party/boost/libs/yap/example/autodiff_library/ |
D | UaryOPNode.cpp | 23 UaryOPNode::UaryOPNode(OPCODE op_, Node* left): OPNode(op_,left) { in UaryOPNode() argument 26 OPNode* UaryOPNode::createUnaryOpNode(OPCODE op, Node* left) in createUnaryOpNode() argument 28 assert(left!=NULL); in createUnaryOpNode() 33 node = BinaryOPNode::createBinaryOpNode(OP_POW,left,new PNode(param)); in createUnaryOpNode() 38 node = BinaryOPNode::createBinaryOpNode(OP_TIMES,left,new PNode(param)); in createUnaryOpNode() 42 node = new UaryOPNode(op,left); in createUnaryOpNode() 53 if(left!=NULL){ in inorder_visit() 54 left->inorder_visit(level+1,oss); in inorder_visit() 62 if(left!=NULL){ in collect_vnodes() 63 left->collect_vnodes(nodes,total); in collect_vnodes() [all …]
|
/third_party/gettext/gettext-runtime/intl/ |
D | tsearch.c | 119 struct node_t *left; member 144 check_tree_recurse (p->left, d_sofar + (p->left && !p->left->red), d_total); in check_tree_recurse() 146 if (p->left) in check_tree_recurse() 147 assert (!(p->left->red && p->red)); in check_tree_recurse() 160 for(p = root->left; p; p = p->left) in check_tree() 185 lp = &(*rootp)->left; in maybe_split_for_insert() 219 p->left = *rp; in maybe_split_for_insert() 229 gp->left = *rp; in maybe_split_for_insert() 244 gp->left = p->right; in maybe_split_for_insert() 250 gp->right = p->left; in maybe_split_for_insert() [all …]
|