Home
last modified time | relevance | path

Searched refs:type_check (Results 26 – 50 of 1792) sorted by relevance

12345678910>>...72

/dports/lang/v8/v8-9.6.180.12/src/compiler/
H A Drepresentation-change.cc166 use_info.type_check() != TypeCheckKind::kBigInt) { in GetRepresentationFor()
173 if (use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
179 use_info.type_check() != TypeCheckKind::kBigInt)) { in GetRepresentationFor()
195 DCHECK(use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
200 DCHECK(use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
206 DCHECK_EQ(TypeCheckKind::kNone, use_info.type_check()); in GetRepresentationFor()
413 if (use_info.type_check() == TypeCheckKind::kBigInt && in GetTaggedPointerRepresentationFor()
685 switch (use_info.type_check()) { in GetFloat64RepresentationFor()
825 if (use_info.type_check() == TypeCheckKind::kNone || in GetWord32RepresentationFor()
966 use_info.type_check() == TypeCheckKind::kNone) || in GetWord32RepresentationFor()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/compiler/
H A Drepresentation-change.cc166 use_info.type_check() != TypeCheckKind::kBigInt) { in GetRepresentationFor()
173 if (use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
179 use_info.type_check() != TypeCheckKind::kBigInt)) { in GetRepresentationFor()
195 DCHECK(use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
200 DCHECK(use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
206 DCHECK_EQ(TypeCheckKind::kNone, use_info.type_check()); in GetRepresentationFor()
210 DCHECK_EQ(TypeCheckKind::kNone, use_info.type_check()); in GetRepresentationFor()
409 if (use_info.type_check() == TypeCheckKind::kBigInt && in GetTaggedPointerRepresentationFor()
680 switch (use_info.type_check()) { in GetFloat64RepresentationFor()
812 if (use_info.type_check() == TypeCheckKind::kNone || in GetWord32RepresentationFor()
[all …]
/dports/science/py-chainer/chainer-7.8.0/chainer/functions/array/
H A Ddstack.py7 from chainer.utils import type_check
15 type_check.expect(in_types.size() > 0)
16 type_check._argname((in_types[0],), ('x0',))
18 ndim = type_check.eval(in_types[0].ndim)
19 for i in six.moves.range(1, type_check.eval(in_types.size())):
20 type_check._argname((in_types[i],), ('x{}'.format(i),))
21 type_check.expect(
26 type_check.expect(in_types[0].shape == in_types[i].shape)
31 type_check.expect(in_types[0].shape[d] == in_types[i].shape[d])
H A Dreshape.py3 from chainer.utils import type_check
23 type_check._argname(in_types, ('x',))
27 type_check.expect(
28 type_check.prod(x_type.shape) == type_check.prod(self.shape))
34 size_var = type_check.make_variable(
36 type_check.expect(
37 type_check.prod(x_type.shape) % size_var == 0)
H A Dhstack.py7 from chainer.utils import type_check
15 type_check.expect(in_types.size() > 0)
16 type_check._argname((in_types[0],), ('x0',))
18 ndim = type_check.eval(in_types[0].ndim)
19 for i in six.moves.range(1, type_check.eval(in_types.size())):
20 type_check._argname((in_types[i],), ('x{}'.format(i),))
21 type_check.expect(
30 type_check.expect(in_types[0].shape[d] == in_types[i].shape[d])
H A Dconcat.py8 from chainer.utils import type_check
24 type_check.expect(in_types.size() > 0)
25 type_check.expect(in_types[0].ndim >
26 type_check.make_variable(self.axis, 'axis'))
28 type_check.expect(
32 ndim = type_check.eval(in_types[0].ndim)
34 for i in six.moves.range(1, type_check.eval(in_types.size())):
35 type_check.expect(
42 type_check.expect(in_types[0].shape[d] == in_types[i].shape[d])
H A Dvstack.py7 from chainer.utils import type_check
15 type_check.expect(in_types.size() > 0)
17 ndim = type_check.eval(in_types[0].ndim)
18 for i in six.moves.range(1, type_check.eval(in_types.size())):
19 type_check.expect(
24 type_check.expect(in_types[0].shape == in_types[i].shape)
27 type_check.expect(in_types[0].shape[d] == in_types[i].shape[d])
H A Dbroadcast.py6 from chainer.utils import type_check
15 type_check.expect(in_types.size() > 0)
18 type_check.expect_broadcast_shapes(*shapes)
71 type_check._argname(in_types, ('x',))
73 ndim = type_check.make_variable(len(self._shape), 'len(shape)')
74 type_check.expect(in_types[0].ndim <= ndim)
76 shape = type_check.eval(in_types[0].shape)
85 raise type_check.InvalidType(expect, actual)
H A Drollaxis.py5 from chainer.utils import type_check
22 type_check._argname(in_types, ('x',))
26 type_check.expect(x_type.ndim > self.axis)
28 type_check.expect(x_type.ndim > -self.axis - 1)
31 type_check.expect(x_type.ndim >= self.start)
33 type_check.expect(x_type.ndim > -self.start - 1)
H A Dmoveaxis.py5 from chainer.utils import type_check
61 type_check._argname(in_types, ('x',))
62 type_check.expect(
69 type_check.expect(
73 type_check.expect(
79 type_check.expect(
83 type_check.expect(
H A Dflip.py5 from chainer.utils import type_check
23 type_check._argname(in_types, ('x',))
26 type_check.expect(x_type.ndim > 0)
28 type_check.expect(x_type.ndim > self.axis)
30 type_check.expect(x_type.ndim >= -self.axis)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/compiler/
H A Drepresentation-change.cc165 use_info.type_check() != TypeCheckKind::kBigInt) { in GetRepresentationFor()
172 if (use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
189 DCHECK(use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
194 DCHECK(use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
200 DCHECK_EQ(TypeCheckKind::kNone, use_info.type_check()); in GetRepresentationFor()
204 DCHECK_EQ(TypeCheckKind::kNone, use_info.type_check()); in GetRepresentationFor()
211 DCHECK_EQ(TypeCheckKind::kNone, use_info.type_check()); in GetRepresentationFor()
219 DCHECK(use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
656 switch (use_info.type_check()) { in GetFloat64RepresentationFor()
776 if (use_info.type_check() == TypeCheckKind::kNone || in GetWord32RepresentationFor()
[all …]
/dports/net/p5-GeoIP2/GeoIP2-2.006002/lib/GeoIP2/Database/
H A DReader.pm62 unless ( $self->metadata->database_type =~ $args{type_check} ) {
115 type_check => qr/^GeoLite2-ASN$/,
125 type_check =>
135 type_check => qr/^(?:GeoLite2|GeoIP2)-(?:Precision-)?Country$/,
144 type_check => qr/^GeoIP2-(?:Precision-)?Connection-Type$/,
154 type_check => qr/^GeoIP2-(?:Precision-)?Domain$/,
164 type_check => qr/^GeoIP2-(?:Precision-)?Enterprise$/,
173 type_check => qr/^GeoIP2-(?:Precision-)?ISP$/,
183 type_check => qr/^GeoIP2-(?:Precision-)?Anonymous-IP$/,
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/lib/Lmo/
H A DTypes.pm46 my ($attribute, $type_check, $check_name, $val) = @_;
47 ( ref($type_check) eq 'CODE'
48 ? $type_check->($val)
49 : (ref $val eq $type_check
50 || ($val && $val eq $type_check)
51 || (exists $TYPES{$type_check} && $TYPES{$type_check}->($val)))
/dports/science/py-chainer/chainer-7.8.0/chainer/functions/math/
H A Dexponential.py9 from chainer.utils import type_check
20 type_check.expect(in_types.size() == 1)
21 type_check.expect(in_types[0].dtype.kind == 'f')
58 type_check._argname(in_types, ('x',))
59 type_check.expect(in_types[0].dtype.kind == 'f')
96 type_check._argname(in_types, ('x',))
97 type_check.expect(in_types[0].dtype.kind == 'f')
132 type_check._argname(in_types, ('x',))
133 type_check.expect(in_types[0].dtype.kind == 'f')
H A Dbasic_math.py14 from chainer.utils import type_check
81 type_check._argname(in_types, ('x',))
112 type_check._argname(in_types, ('x',))
169 type_check.expect(
172 type_check.expect_broadcast_shapes(
354 type_check.expect(
426 type_check.expect(
621 type_check.expect(
649 type_check.expect(
749 type_check.expect(
[all …]
H A Dtrigonometric.py8 from chainer.utils import type_check
18 type_check._argname(in_types, ('x',))
19 type_check.expect(in_types[0].dtype.kind == 'f')
77 type_check._argname(in_types, ('x',))
78 type_check.expect(in_types[0].dtype.kind == 'f')
137 type_check._argname(in_types, ('x',))
138 type_check.expect(in_types[0].dtype.kind == 'f')
169 type_check._argname(in_types, ('x',))
237 type_check._argname(in_types, ('x',))
306 type_check._argname(in_types, ('x',))
[all …]
H A Dinv.py10 from chainer.utils import type_check
52 type_check._argname(in_types, ('a',))
54 type_check.expect(a_type.dtype.kind == 'f')
56 type_check.expect(a_type.ndim == 2)
58 type_check.expect(a_type.shape[0] == a_type.shape[1])
92 type_check._argname(in_types, ('a',))
94 type_check.expect(a_type.dtype.kind == 'f')
96 type_check.expect(a_type.ndim == 3)
99 type_check.expect(a_type.shape[-1] == a_type.shape[-2])
H A Dmatmul.py10 from chainer.utils import type_check
60 type_check.expect(
82 type_check._argname(in_types, ('a', 'b'))
85 type_check.expect(
92 a_ndim = type_check.eval(a_type.ndim)
93 b_ndim = type_check.eval(b_type.ndim)
106 type_check.expect_broadcast_shapes(
224 if index == 2 and type_check.eval(typ.ndim) == 2:
243 type_check._argname(in_types, ('a', 'b'))
246 type_check.expect(
[all …]
/dports/science/py-chainer/chainer-7.8.0/chainer/functions/noise/
H A Dsimplified_dropconnect.py6 from chainer.utils import type_check
36 type_check.expect(2 <= n_in, n_in <= 3)
38 type_check._argname((x_type, w_type), ('x', 'W'))
40 type_check.expect(
45 type_check.prod(x_type.shape[1:]) == w_type.shape[1],
47 if type_check.eval(n_in) == 3:
49 type_check._argname((b_type,), ('b',))
50 type_check.expect(
58 type_check.expect(
63 type_check.expect(self.mask.shape == w_type.shape)
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/brdb/tests/
H A Dtest_tuple.cxx67 bool type_check = (out_tup->arity() == in_tup->arity()); in test_tuple() local
68 for (unsigned int i=0; type_check && i<out_tup->arity(); ++i) { in test_tuple()
69 type_check = (types[i] == (*in_tup)[i].is_a()); in test_tuple()
71 TEST("make_prototype()", type_check, true); in test_tuple()
72 if (!type_check) { in test_tuple()
74 for (unsigned int i=0; type_check && i<out_tup->arity(); ++i) { in test_tuple()
115 type_check = ((*out_tup)[i] == (*in_tup)[i]); in test_tuple()
118 TEST("binary io: b_read, b_write", type_check, true); in test_tuple()
/dports/math/scilab/scilab-6.1.1/scilab/modules/parameters/includes/
H A Dparameters.h20 enum type_check enum
73 int _iDefaultValue, int _iLog, enum type_check check, ...);
87 double _dblDefaultValue, int _iLog, enum type_check check, ...);
101 const char * _pstDefaultValue, int _iLog, enum type_check check, ...);
117 … int _iDefaultValue, int _iDefaultSize, int * _piSize, int _iLog, enum type_check check, ...);
133 … double _dblDefaultValue, int _iDefaultSize, int * _piSize, int _iLog, enum type_check check, ...);
/dports/science/py-chainer/chainer-7.8.0/chainer/functions/evaluation/
H A Daccuracy.py6 from chainer.utils import type_check
16 type_check._argname(in_types, ('x', 't'))
19 type_check.expect(
24 t_ndim = type_check.eval(t_type.ndim)
25 type_check.expect(
30 for i in six.moves.range(t_ndim + 1, type_check.eval(x_type.ndim)):
31 type_check.expect(x_type.shape[i] == 1)
/dports/devel/lua-luarocks/luarocks-3.8.0/src/luarocks/
H A Dtype_check.lua2 local type_check = {}
12 type_check.MAGIC_PLATFORMS = 0xEBABEFAC
28 if v == type_check.MAGIC_PLATFORMS then
44 function type_check.declare_schemas(inputs)
125 return type_check.type_check_table(version, item, typetbl, context)
165 function type_check.type_check_table(version, tbl, typetbl, context)
198 function type_check.check_undeclared_globals(globals, typetbl)
213 return type_check
/dports/www/node10/node-v10.24.1/deps/v8/src/compiler/
H A Drepresentation-change.cc147 if (use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
164 DCHECK(use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
169 DCHECK(use_info.type_check() == TypeCheckKind::kNone || in GetRepresentationFor()
174 DCHECK_EQ(TypeCheckKind::kNone, use_info.type_check()); in GetRepresentationFor()
178 DCHECK_EQ(TypeCheckKind::kNone, use_info.type_check()); in GetRepresentationFor()
185 DCHECK_EQ(TypeCheckKind::kNone, use_info.type_check()); in GetRepresentationFor()
193 DCHECK_EQ(TypeCheckKind::kNone, use_info.type_check()); in GetRepresentationFor()
541 if ((use_info.type_check() == TypeCheckKind::kNone)) { in GetFloat64RepresentationFor()
632 if (use_info.type_check() == TypeCheckKind::kNone || in GetWord32RepresentationFor()
657 CHECK_NE(use_info.type_check(), TypeCheckKind::kNone); in GetWord32RepresentationFor()
[all …]

12345678910>>...72