Home
last modified time | relevance | path

Searched refs:check_uint64 (Results 1 – 5 of 5) sorted by relevance

/third_party/mindspore/mindspore/offline_debug/
Dmi_validators.py22 type_check_list, check_dir, check_uint32, check_uint64, check_iteration, check_param_id
171 check_uint64(data_size, "data_size")
191 check_uint64(data_size, "data_size")
211 check_uint64(data_size, "data_size")
Dmi_validator_helpers.py46 def check_uint64(arg, arg_name=""): function
/third_party/mindspore/mindspore/dataset/engine/
Dcache_client.py21 from ..core.validator_helpers import type_check, check_pos_int32, check_pos_uint32, check_uint64, c…
59 check_uint64(size, "size")
/third_party/glib/glib/tests/
Dstrfuncs.c1638 check_uint64 (const gchar *str, in check_uint64() function
1680 check_uint64 ("0", "", 10, 0, 0); in test_strtoll()
1681 check_uint64 ("+0", "", 10, 0, 0); in test_strtoll()
1682 check_uint64 ("-0", "", 10, 0, 0); in test_strtoll()
1683 check_uint64 ("18446744073709551615", "", 10, G_MAXUINT64, 0); in test_strtoll()
1684 check_uint64 ("18446744073709551616", "", 10, G_MAXUINT64, ERANGE); in test_strtoll()
1685 check_uint64 ("20xyz", "xyz", 10, 20, 0); in test_strtoll()
1686 check_uint64 ("-1", "", 10, G_MAXUINT64, 0); in test_strtoll()
1687 check_uint64 ("-FF4", "", 16, -((guint64) 0xFF4), 0); in test_strtoll()
/third_party/mindspore/mindspore/dataset/core/
Dvalidator_helpers.py263 def check_uint64(value, arg_name=""): function