Home
last modified time | relevance | path

Searched refs:o_in (Results 1 – 25 of 121) sorted by relevance

12345

/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/histogram/detail/
H A Dreduce_command.hpp48 for (const auto& o_in : in) { in normalize_reduce_commands() local
49 assert(o_in.merge > 0); in normalize_reduce_commands()
50 if (o_in.iaxis != reduce_command::unset && o_in.iaxis >= out.size()) in normalize_reduce_commands()
52 auto& o_out = out.begin()[o_in.iaxis == reduce_command::unset ? iaxis : o_in.iaxis]; in normalize_reduce_commands()
54 o_out = o_in; in normalize_reduce_commands()
59 (o_out.merge > 1 && o_in.merge > 1)) in normalize_reduce_commands()
62 std::to_string(o_in.iaxis == reduce_command::unset ? iaxis : o_in.iaxis))); in normalize_reduce_commands()
64 o_out.range = o_in.range; in normalize_reduce_commands()
65 o_out.begin = o_in.begin; in normalize_reduce_commands()
66 o_out.end = o_in.end; in normalize_reduce_commands()
[all …]
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/histogram/detail/
H A Dreduce_command.hpp48 for (const auto& o_in : in) { in normalize_reduce_commands() local
49 assert(o_in.merge > 0); in normalize_reduce_commands()
50 if (o_in.iaxis != reduce_command::unset && o_in.iaxis >= out.size()) in normalize_reduce_commands()
52 auto& o_out = out.begin()[o_in.iaxis == reduce_command::unset ? iaxis : o_in.iaxis]; in normalize_reduce_commands()
54 o_out = o_in; in normalize_reduce_commands()
59 (o_out.merge > 1 && o_in.merge > 1)) in normalize_reduce_commands()
62 std::to_string(o_in.iaxis == reduce_command::unset ? iaxis : o_in.iaxis))); in normalize_reduce_commands()
64 o_out.range = o_in.range; in normalize_reduce_commands()
65 o_out.begin = o_in.begin; in normalize_reduce_commands()
66 o_out.end = o_in.end; in normalize_reduce_commands()
[all …]
/dports/devel/hyperscan/boost_1_75_0/boost/histogram/detail/
H A Dreduce_command.hpp48 for (const auto& o_in : in) { in normalize_reduce_commands() local
49 assert(o_in.merge > 0); in normalize_reduce_commands()
50 if (o_in.iaxis != reduce_command::unset && o_in.iaxis >= out.size()) in normalize_reduce_commands()
52 auto& o_out = out.begin()[o_in.iaxis == reduce_command::unset ? iaxis : o_in.iaxis]; in normalize_reduce_commands()
54 o_out = o_in; in normalize_reduce_commands()
59 (o_out.merge > 1 && o_in.merge > 1)) in normalize_reduce_commands()
62 std::to_string(o_in.iaxis == reduce_command::unset ? iaxis : o_in.iaxis))); in normalize_reduce_commands()
64 o_out.range = o_in.range; in normalize_reduce_commands()
65 o_out.begin = o_in.begin; in normalize_reduce_commands()
66 o_out.end = o_in.end; in normalize_reduce_commands()
[all …]
/dports/lang/micropython/micropython-1.17/py/
H A Dobj.c43 if (mp_obj_is_obj(o_in)) { in mp_obj_get_type()
58 if (mp_obj_is_small_int(o_in)) { in mp_obj_get_type()
60 } else if (mp_obj_is_obj(o_in)) { in mp_obj_get_type()
76 if (mp_obj_is_small_int(o_in)) { in mp_obj_get_type()
78 } else if (mp_obj_is_qstr(o_in)) { in mp_obj_get_type()
106 if (o_in == MP_OBJ_NULL) { in mp_obj_print_helper()
481 mp_obj_t mp_obj_id(mp_obj_t o_in) { in mp_obj_id() argument
482 mp_int_t id = (mp_int_t)o_in; in mp_obj_id()
483 if (!mp_obj_is_obj(o_in)) { in mp_obj_id()
519 mp_obj_is_str(o_in) || in mp_obj_len_maybe()
[all …]
H A Dmodbuiltins.c92 return mp_unary_op(MP_UNARY_OP_ABS, o_in); in mp_builtin_abs()
129 if (mp_obj_is_callable(o_in)) { in mp_builtin_callable()
139 mp_uint_t c = mp_obj_get_int(o_in); in mp_builtin_chr()
165 mp_int_t ord = mp_obj_get_int(o_in); in mp_builtin_chr()
260 return mp_getiter(o_in, NULL); in mp_builtin_iter()
361 if (mp_obj_is_str(o_in)) { in mp_builtin_ord()
475 mp_obj_t o_in = args[0]; in mp_builtin_round() local
476 if (mp_obj_is_int(o_in)) { in mp_builtin_round()
478 return o_in; in mp_builtin_round()
486 return o_in; in mp_builtin_round()
[all …]
H A Dobjrange.c42 STATIC mp_obj_t range_it_iternext(mp_obj_t o_in) { in range_it_iternext() argument
43 mp_obj_range_it_t *o = MP_OBJ_TO_PTR(o_in); in range_it_iternext()
190 STATIC mp_obj_t range_getiter(mp_obj_t o_in, mp_obj_iter_buf_t *iter_buf) { in range_getiter() argument
191 mp_obj_range_t *o = MP_OBJ_TO_PTR(o_in); in range_getiter()
197 STATIC void range_attr(mp_obj_t o_in, qstr attr, mp_obj_t *dest) { in range_attr() argument
202 mp_obj_range_t *o = MP_OBJ_TO_PTR(o_in); in range_attr()
H A Dobjfloat.c97 STATIC void float_print(const mp_print_t *print, mp_obj_t o_in, mp_print_kind_t kind) { in float_print() argument
99 mp_float_t o_val = mp_obj_float_get(o_in); in float_print()
144 STATIC mp_obj_t float_unary_op(mp_unary_op_t op, mp_obj_t o_in) { in float_unary_op() argument
145 mp_float_t val = mp_obj_float_get(o_in); in float_unary_op()
152 return o_in; in float_unary_op()
159 return o_in; in float_unary_op()
H A Dobjint_longlong.c95 mp_obj_t mp_obj_int_unary_op(mp_unary_op_t op, mp_obj_t o_in) { in mp_obj_int_unary_op() argument
96 mp_obj_int_t *o = o_in; in mp_obj_int_unary_op()
107 return o_in; in mp_obj_int_unary_op()
113 mp_obj_int_t *self = MP_OBJ_TO_PTR(o_in); in mp_obj_int_unary_op()
115 return o_in; in mp_obj_int_unary_op()
/dports/devel/boost-docs/boost_1_72_0/boost/histogram/algorithm/
H A Dreduce.hpp191 BOOST_ASSERT(o_in.merge > 0); in reduce()
192 if (o_in.iaxis >= hist.rank()) in reduce()
194 reduce_option& o_out = opts[o_in.iaxis]; in reduce()
197 if (o_in.merge > 1 && o_out.merge > 1) in reduce()
199 if ((o_in.indices_set || o_in.values_set) && in reduce()
204 if (o_in.values_set) { in reduce()
206 o_out.lower = o_in.lower; in reduce()
207 o_out.upper = o_in.upper; in reduce()
208 } else if (o_in.indices_set) { in reduce()
210 o_out.begin = o_in.begin; in reduce()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/boost/histogram/algorithm/
H A Dreduce.hpp191 BOOST_ASSERT(o_in.merge > 0); in reduce()
192 if (o_in.iaxis >= hist.rank()) in reduce()
194 reduce_option& o_out = opts[o_in.iaxis]; in reduce()
197 if (o_in.merge > 1 && o_out.merge > 1) in reduce()
199 if ((o_in.indices_set || o_in.values_set) && in reduce()
204 if (o_in.values_set) { in reduce()
206 o_out.lower = o_in.lower; in reduce()
207 o_out.upper = o_in.upper; in reduce()
208 } else if (o_in.indices_set) { in reduce()
210 o_out.begin = o_in.begin; in reduce()
[all …]
/dports/devel/boost-libs/boost_1_72_0/boost/histogram/algorithm/
H A Dreduce.hpp191 BOOST_ASSERT(o_in.merge > 0); in reduce()
192 if (o_in.iaxis >= hist.rank()) in reduce()
194 reduce_option& o_out = opts[o_in.iaxis]; in reduce()
197 if (o_in.merge > 1 && o_out.merge > 1) in reduce()
199 if ((o_in.indices_set || o_in.values_set) && in reduce()
204 if (o_in.values_set) { in reduce()
206 o_out.lower = o_in.lower; in reduce()
207 o_out.upper = o_in.upper; in reduce()
208 } else if (o_in.indices_set) { in reduce()
210 o_out.begin = o_in.begin; in reduce()
[all …]
/dports/lang/micropython/micropython-1.17/ports/unix/
H A Dcoverage.c32 STATIC mp_obj_t stest_set_buf(mp_obj_t o_in, mp_obj_t buf_in) { in stest_set_buf() argument
33 mp_obj_streamtest_t *o = MP_OBJ_TO_PTR(o_in); in stest_set_buf()
44 STATIC mp_obj_t stest_set_error(mp_obj_t o_in, mp_obj_t err_in) { in stest_set_error() argument
45 mp_obj_streamtest_t *o = MP_OBJ_TO_PTR(o_in); in stest_set_error()
51 STATIC mp_uint_t stest_read(mp_obj_t o_in, void *buf, mp_uint_t size, int *errcode) { in stest_read() argument
52 mp_obj_streamtest_t *o = MP_OBJ_TO_PTR(o_in); in stest_read()
68 STATIC mp_uint_t stest_write(mp_obj_t o_in, const void *buf, mp_uint_t size, int *errcode) { in stest_write() argument
69 mp_obj_streamtest_t *o = MP_OBJ_TO_PTR(o_in); in stest_write()
77 mp_obj_streamtest_t *o = MP_OBJ_TO_PTR(o_in); in stest_ioctl()
115 STATIC mp_uint_t stest_read2(mp_obj_t o_in, void *buf, mp_uint_t size, int *errcode) { in stest_read2() argument
[all …]
/dports/games/nethack34/nethack-3.4.3/src/
H A Ddetect.c25 o_in(obj, oclass) in o_in() function
114 if (o_in(otmp, oclass)) return FALSE;
189 } else if (o_in(obj, COIN_CLASS)) {
200 } else if (o_in(obj, COIN_CLASS)) {
308 if (o_in(obj, oclass)) {
315 if (o_in(obj, oclass)) {
440 if ((!class && !boulder) || o_in(obj, class) || o_in(obj, boulder)) {
448 if (!class || o_in(obj, class)) {
458 if ((!class && !boulder) || o_in(obj, class) || o_in(obj, boulder)) ct++;
513 (otmp = o_in(obj, class)) || (otmp = o_in(obj, boulder))) {
[all …]
/dports/games/nethack34-nox11/nethack-3.4.3/src/
H A Ddetect.c25 o_in(obj, oclass) in o_in() function
114 if (o_in(otmp, oclass)) return FALSE;
189 } else if (o_in(obj, COIN_CLASS)) {
200 } else if (o_in(obj, COIN_CLASS)) {
308 if (o_in(obj, oclass)) {
315 if (o_in(obj, oclass)) {
440 if ((!class && !boulder) || o_in(obj, class) || o_in(obj, boulder)) {
448 if (!class || o_in(obj, class)) {
458 if ((!class && !boulder) || o_in(obj, class) || o_in(obj, boulder)) ct++;
513 (otmp = o_in(obj, class)) || (otmp = o_in(obj, boulder))) {
[all …]
/dports/games/vultures-eye/vulture-2.3.67/unnethack/src/
H A Ddetect.c25 o_in(obj, oclass) in o_in() function
114 if (o_in(otmp, oclass)) return FALSE;
189 } else if (o_in(obj, COIN_CLASS)) {
200 } else if (o_in(obj, COIN_CLASS)) {
308 if (o_in(obj, oclass)) {
315 if (o_in(obj, oclass)) {
440 if ((!class && !boulder) || o_in(obj, class) || o_in(obj, boulder)) {
448 if (!class || o_in(obj, class)) {
458 if ((!class && !boulder) || o_in(obj, class) || o_in(obj, boulder)) ct++;
513 (otmp = o_in(obj, class)) || (otmp = o_in(obj, boulder))) {
[all …]
/dports/games/vultures-eye/vulture-2.3.67/slashem/src/
H A Ddetect.c25 o_in(obj, oclass) in o_in() function
46 (temp = o_in(otmp, oclass)))
198 } else if (o_in(obj, COIN_CLASS)) {
209 } else if (o_in(obj, COIN_CLASS)) {
317 if (o_in(obj, oclass)) {
324 if (o_in(obj, oclass)) {
449 if ((!class && !boulder) || o_in(obj, class) || o_in(obj, boulder)) {
457 if (!class || o_in(obj, class)) {
467 if ((!class && !boulder) || o_in(obj, class) || o_in(obj, boulder)) ct++;
522 (otmp = o_in(obj, class)) || (otmp = o_in(obj, boulder))) {
[all …]
/dports/games/unnethack/unnethack-5.1.0-20131208/src/
H A Ddetect.c25 o_in(obj, oclass) in o_in() function
114 if (o_in(otmp, oclass)) return FALSE;
189 } else if (o_in(obj, COIN_CLASS)) {
200 } else if (o_in(obj, COIN_CLASS)) {
308 if (o_in(obj, oclass)) {
315 if (o_in(obj, oclass)) {
441 if ((!class && !boulder) || o_in(obj, class) || o_in(obj, boulder)) {
449 if (!class || o_in(obj, class)) {
459 if ((!class && !boulder) || o_in(obj, class) || o_in(obj, boulder)) ct++;
514 (otmp = o_in(obj, class)) || (otmp = o_in(obj, boulder))) {
[all …]
/dports/games/vultures-eye/vulture-2.3.67/nethack/src/
H A Ddetect.c25 o_in(obj, oclass) in o_in() function
114 if (o_in(otmp, oclass)) return FALSE;
189 } else if (o_in(obj, COIN_CLASS)) {
200 } else if (o_in(obj, COIN_CLASS)) {
308 if (o_in(obj, oclass)) {
315 if (o_in(obj, oclass)) {
440 if ((!class && !boulder) || o_in(obj, class) || o_in(obj, boulder)) {
448 if (!class || o_in(obj, class)) {
458 if ((!class && !boulder) || o_in(obj, class) || o_in(obj, boulder)) ct++;
513 (otmp = o_in(obj, class)) || (otmp = o_in(obj, boulder))) {
[all …]
/dports/lang/micropython/micropython-1.17/extmod/
H A Dvfs_posix_file.c136 STATIC mp_uint_t vfs_posix_file_read(mp_obj_t o_in, void *buf, mp_uint_t size, int *errcode) { in vfs_posix_file_read() argument
137 mp_obj_vfs_posix_file_t *o = MP_OBJ_TO_PTR(o_in); in vfs_posix_file_read()
147 STATIC mp_uint_t vfs_posix_file_write(mp_obj_t o_in, const void *buf, mp_uint_t size, int *errcode)… in vfs_posix_file_write() argument
148 mp_obj_vfs_posix_file_t *o = MP_OBJ_TO_PTR(o_in); in vfs_posix_file_write()
164 STATIC mp_uint_t vfs_posix_file_ioctl(mp_obj_t o_in, mp_uint_t request, uintptr_t arg, int *errcode… in vfs_posix_file_ioctl() argument
165 mp_obj_vfs_posix_file_t *o = MP_OBJ_TO_PTR(o_in); in vfs_posix_file_ioctl()
H A Dmodussl_mbedtls.c270 STATIC mp_obj_t mod_ssl_getpeercert(mp_obj_t o_in, mp_obj_t binary_form) { in mod_ssl_getpeercert() argument
271 mp_obj_ssl_socket_t *o = MP_OBJ_TO_PTR(o_in); in mod_ssl_getpeercert()
289 STATIC mp_uint_t socket_read(mp_obj_t o_in, void *buf, mp_uint_t size, int *errcode) { in socket_read() argument
290 mp_obj_ssl_socket_t *o = MP_OBJ_TO_PTR(o_in); in socket_read()
312 STATIC mp_uint_t socket_write(mp_obj_t o_in, const void *buf, mp_uint_t size, int *errcode) { in socket_write() argument
313 mp_obj_ssl_socket_t *o = MP_OBJ_TO_PTR(o_in); in socket_write()
341 STATIC mp_uint_t socket_ioctl(mp_obj_t o_in, mp_uint_t request, uintptr_t arg, int *errcode) { in socket_ioctl() argument
342 mp_obj_ssl_socket_t *self = MP_OBJ_TO_PTR(o_in); in socket_ioctl()
/dports/sysutils/magicrescue/magicrescue-1.1.10/tools/
H A Dlaola.pl1421 local(@o_in)=(); local(@l_in)=();
1422 local(%o_in)=();
1433 if ($o_in{$_[$i]}) {
1435 $o_in{$_[$i]}=$i if $_[$max+$i]>$o_in{$_[$i]};
1437 $o_in{$_[$i]}=$i;
1441 push(@o_in, $_[$o_in{$key}]);
1445 @o_in=@_[0..($max-1)];
1452 $offset=$o_in[0];
1456 if ( ($i==($#o_in+1))
1457 || ($o_in[$i]<$offset)
[all …]
/dports/sysutils/monitorix/monitorix-3.10.1/lib/
H A Dport.pm208 my @o_in;
234 $o_in[$n] = 0 unless $o_in[$n];
246 $o_in[$n] = $bytes - ($config->{port_hist_o_in}[$n] || 0);
247 $o_in[$n] = 0 unless $o_in[$n] != $bytes;
249 $o_in[$n] /= 60;
290 $o_in[$n] = 0 unless $o_in[$n];
317 $rrdata .= ":$i_in[$n]:$i_out[$n]:$o_in[$n]:$o_out[$n]";
426 my ($i_in, $i_out, $o_in, $o_out) = @$line[$from..$to];
429 my $k_o_in = ($o_in || 0) / 1024;
/dports/games/nethack33-nox11/nethack-3.3.1/src/
H A Ddetect.c25 o_in(obj, oclass) in o_in() function
76 if (o_in(otmp, oclass)) return FALSE;
134 if (o_in(obj, GOLD_CLASS)) {
142 if (o_in(obj, GOLD_CLASS)) {
163 if ((temp = o_in(obj, GOLD_CLASS))) {
180 if ((temp = o_in(obj, GOLD_CLASS))) {
216 if (o_in(obj, oclass)) {
223 if (o_in(obj, oclass)) {
256 if ((temp = o_in(obj, oclass)) != 0) {
309 if (!class || o_in(obj, class)) {
[all …]
/dports/games/nethack33/nethack-3.3.1/src/
H A Ddetect.c25 o_in(obj, oclass) in o_in() function
76 if (o_in(otmp, oclass)) return FALSE;
134 if (o_in(obj, GOLD_CLASS)) {
142 if (o_in(obj, GOLD_CLASS)) {
163 if ((temp = o_in(obj, GOLD_CLASS))) {
180 if ((temp = o_in(obj, GOLD_CLASS))) {
216 if (o_in(obj, oclass)) {
223 if (o_in(obj, oclass)) {
256 if ((temp = o_in(obj, oclass)) != 0) {
309 if (!class || o_in(obj, class)) {
[all …]
/dports/games/falconseye/falconseye-1.9.3_11/src/
H A Ddetect.c25 o_in(obj, oclass) in o_in() function
76 if (o_in(otmp, oclass)) return FALSE;
134 if (o_in(obj, GOLD_CLASS)) {
142 if (o_in(obj, GOLD_CLASS)) {
163 if ((temp = o_in(obj, GOLD_CLASS))) {
180 if ((temp = o_in(obj, GOLD_CLASS))) {
216 if (o_in(obj, oclass)) {
223 if (o_in(obj, oclass)) {
256 if ((temp = o_in(obj, oclass)) != 0) {
309 if (!class || o_in(obj, class)) {
[all …]

12345