Home
last modified time | relevance | path

Searched refs:right_obj (Results 1 – 25 of 32) sorted by relevance

12

/dports/devel/py-mypy/mypy-0.910/mypyc/lib-rt/
H A Dint_ops.c145 PyObject *right_obj = CPyTagged_AsObject(right); in CPyTagged_Add() local
151 Py_DECREF(right_obj); in CPyTagged_Add()
164 PyObject *right_obj = CPyTagged_AsObject(right); in CPyTagged_Subtract() local
170 Py_DECREF(right_obj); in CPyTagged_Subtract()
182 PyObject *right_obj = CPyTagged_AsObject(right); in CPyTagged_Multiply() local
188 Py_DECREF(right_obj); in CPyTagged_Multiply()
205 PyObject *right_obj = CPyTagged_AsObject(right); in CPyTagged_FloorDivide() local
208 Py_DECREF(right_obj); in CPyTagged_FloorDivide()
227 PyObject *right_obj = CPyTagged_AsObject(right); in CPyTagged_Remainder() local
230 Py_DECREF(right_obj); in CPyTagged_Remainder()
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-common/src/main/java/org/apache/hadoop/hbase/io/
H A DImmutableBytesWritable.java200 public boolean equals(Object right_obj) { in equals() argument
201 if (right_obj instanceof byte []) { in equals()
202 return compareTo((byte [])right_obj) == 0; in equals()
204 if (right_obj instanceof ImmutableBytesWritable) { in equals()
205 return compareTo((ImmutableBytesWritable)right_obj) == 0; in equals()
/dports/net-p2p/libtorrent/libtorrent-0.13.8/test/torrent/
H A Dobject_test.cc82 …ict_key(const char* left_key, const char* left_obj, const char* right_key, const char* right_obj) { in swap_compare_dict_key() argument
89 obj_right.as_dict_obj() = create_bencode(right_obj); in swap_compare_dict_key()
92 if (obj_left.as_dict_key() != right_key || !compare_bencode(obj_left.as_dict_obj(), right_obj) || in swap_compare_dict_key()
98 obj_right.as_dict_key() != right_key || !compare_bencode(obj_right.as_dict_obj(), right_obj)) in swap_compare_dict_key()
/dports/devel/hadoop/hadoop-1.2.1/src/core/org/apache/hadoop/io/
H A DBytesWritable.java170 public boolean equals(Object right_obj) { in equals() argument
171 if (right_obj instanceof BytesWritable) in equals()
172 return super.equals(right_obj); in equals()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/
H A DBytesWritable.java199 public boolean equals(Object right_obj) { in equals() argument
200 if (right_obj instanceof BytesWritable) in equals()
201 return super.equals(right_obj); in equals()
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/lib/
H A DVersionParser.pm119 my $right_obj = (blessed($right) && $right->isa(ref($left)))
125 last unless defined($left->$m) && defined($right_obj->$m);
126 $retval = $left->$m <=> $right_obj->$m;
/dports/www/node10/node-v10.24.1/deps/v8/src/runtime/
H A Druntime-bigint.cc100 CONVERT_ARG_HANDLE_CHECKED(Object, right_obj, 1); in RUNTIME_FUNCTION()
104 if (!left_obj->IsBigInt() || !right_obj->IsBigInt()) { in RUNTIME_FUNCTION()
109 Handle<BigInt> right(Handle<BigInt>::cast(right_obj)); in RUNTIME_FUNCTION()
/dports/lang/v8/v8-9.6.180.12/src/runtime/
H A Druntime-bigint.cc103 CONVERT_ARG_HANDLE_CHECKED(Object, right_obj, 1); in RUNTIME_FUNCTION()
107 if (!left_obj->IsBigInt() || !right_obj->IsBigInt()) { in RUNTIME_FUNCTION()
112 Handle<BigInt> right(Handle<BigInt>::cast(right_obj)); in RUNTIME_FUNCTION()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/runtime/
H A Druntime-bigint.cc100 CONVERT_ARG_HANDLE_CHECKED(Object, right_obj, 1); in RUNTIME_FUNCTION()
104 if (!left_obj->IsBigInt() || !right_obj->IsBigInt()) { in RUNTIME_FUNCTION()
109 Handle<BigInt> right(Handle<BigInt>::cast(right_obj)); in RUNTIME_FUNCTION()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/runtime/
H A Druntime-bigint.cc103 CONVERT_ARG_HANDLE_CHECKED(Object, right_obj, 1); in RUNTIME_FUNCTION()
107 if (!left_obj->IsBigInt() || !right_obj->IsBigInt()) { in RUNTIME_FUNCTION()
112 Handle<BigInt> right(Handle<BigInt>::cast(right_obj)); in RUNTIME_FUNCTION()
/dports/misc/ompl/ompl-1.5.2/demos/PlanarManipulator/
H A DPlanarManipulatorPolyWorld.h76 const ConvexPolygon right_obj(pts); in createCorridorProblem()
79 world.addObstacle(right_obj); in createCorridorProblem()
/dports/games/starlanes/starlanes-1.2.2/
H A Dstarlanes.c115 #define right_obj(move) (((move)%MAPX == MAPX-1)?SPACE:map[(move)+1]) macro
118 …ny(up_obj(move))||iscompany(down_obj(move))||iscompany(left_obj(move))||iscompany(right_obj(move)))
546 ripe(left_obj(move[i])) || ripe(right_obj(move[i]))) && in get_move()
608 east = right_obj(move); in do_move()
/dports/math/barvinok/barvinok-0.41.5/
H A Discc.c2564 struct isl_obj right_obj = { isl_obj_none, NULL }; in read_expr() local
2575 right_obj = read_obj(s, table); in read_expr()
2577 op = find_matching_bin_op(op, obj, right_obj); in read_expr()
2584 obj = call_bin_op(ctx, op, obj, right_obj); in read_expr()
2588 right_obj = read_obj(s, table); in read_expr()
2589 obj.v = isl_val_add(obj.v, right_obj.v); in read_expr()
2594 free_obj(right_obj); in read_expr()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/accessibility/platform/
H A Dax_platform_node_auralinux_unittest.cc526 AtkObject* right_obj = atk_object_ref_accessible_child(root_obj, 1); in TEST_F() local
527 ASSERT_TRUE(ATK_IS_OBJECT(right_obj)); in TEST_F()
530 EXPECT_EQ(1, atk_object_get_index_in_parent(right_obj)); in TEST_F()
533 g_object_unref(right_obj); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/accessibility/platform/
H A Dax_platform_node_auralinux_unittest.cc555 AtkObject* right_obj = atk_object_ref_accessible_child(root_obj, 1); in TEST_F() local
556 ASSERT_TRUE(ATK_IS_OBJECT(right_obj)); in TEST_F()
559 EXPECT_EQ(1, atk_object_get_index_in_parent(right_obj)); in TEST_F()
562 g_object_unref(right_obj); in TEST_F()
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/bin/
H A Dpt-slave-find3348 my $right_obj = (blessed($right) && $right->isa(ref($left)))
3354 last unless defined($left->$m) && defined($right_obj->$m);
3355 $retval = $left->$m <=> $right_obj->$m;
H A Dpt-deadlock-logger1953 my $right_obj = (blessed($right) && $right->isa(ref($left)))
1959 last unless defined($left->$m) && defined($right_obj->$m);
1960 $retval = $left->$m <=> $right_obj->$m;
H A Dpt-variable-advisor2400 my $right_obj = (blessed($right) && $right->isa(ref($left)))
2406 last unless defined($left->$m) && defined($right_obj->$m);
2407 $retval = $left->$m <=> $right_obj->$m;
H A Dpt-slave-restart2103 my $right_obj = (blessed($right) && $right->isa(ref($left)))
2109 last unless defined($left->$m) && defined($right_obj->$m);
2110 $retval = $left->$m <=> $right_obj->$m;
H A Dpt-heartbeat5708 my $right_obj = (blessed($right) && $right->isa(ref($left)))
5714 last unless defined($left->$m) && defined($right_obj->$m);
5715 $retval = $left->$m <=> $right_obj->$m;
H A Dpt-archiver2833 my $right_obj = (blessed($right) && $right->isa(ref($left)))
2839 last unless defined($left->$m) && defined($right_obj->$m);
2840 $retval = $left->$m <=> $right_obj->$m;
H A Dpt-table-usage3733 my $right_obj = (blessed($right) && $right->isa(ref($left)))
3739 last unless defined($left->$m) && defined($right_obj->$m);
3740 $retval = $left->$m <=> $right_obj->$m;
H A Dpt-upgrade5202 my $right_obj = (blessed($right) && $right->isa(ref($left)))
5208 last unless defined($left->$m) && defined($right_obj->$m);
5209 $retval = $left->$m <=> $right_obj->$m;
H A Dpt-table-sync2564 my $right_obj = (blessed($right) && $right->isa(ref($left)))
2570 last unless defined($left->$m) && defined($right_obj->$m);
2571 $retval = $left->$m <=> $right_obj->$m;
H A Dpt-online-schema-change2014 my $right_obj = (blessed($right) && $right->isa(ref($left)))
2020 last unless defined($left->$m) && defined($right_obj->$m);
2021 $retval = $left->$m <=> $right_obj->$m;

12