Home
last modified time | relevance | path

Searched refs:ucl_object_fromint (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/libucl/tests/
H A Dtest_msgpack.c216 ucl_array_append (res, ucl_object_fromint (cur % 128)); in ucl_test_integer()
217 ucl_array_append (res, ucl_object_fromint (-(cur % 128))); in ucl_test_integer()
219 ucl_array_append (res, ucl_object_fromint (cur % UINT16_MAX)); in ucl_test_integer()
220 ucl_array_append (res, ucl_object_fromint (-(cur % INT16_MAX))); in ucl_test_integer()
222 ucl_array_append (res, ucl_object_fromint (cur % UINT32_MAX)); in ucl_test_integer()
223 ucl_array_append (res, ucl_object_fromint (-(cur % INT32_MAX))); in ucl_test_integer()
225 ucl_array_append (res, ucl_object_fromint (cur)); in ucl_test_integer()
226 ucl_array_append (res, ucl_object_fromint (-cur)); in ucl_test_integer()
243 ucl_array_append (res, ucl_object_fromint (cur)); in ucl_test_integer()
H A Dtest_streamline.c76 cur = ucl_object_fromint (10); in main()
H A Dtest_generate.c89 cur = ucl_object_fromint (10); in main()
/freebsd/contrib/libucl/python/src/
H A Duclmodule.c138 return ucl_object_fromint (PyInt_AsLong (obj)); in _iterate_python()
142 return ucl_object_fromint (PyLong_AsLong (obj)); in _iterate_python()
/freebsd/contrib/libucl/include/
H A Ducl.h364 UCL_EXTERN ucl_object_t* ucl_object_fromint (int64_t iv) UCL_WARN_UNUSED_RESULT;
/freebsd/contrib/libucl/lua/
H A Dlua_ucl.c491 obj = ucl_object_fromint (num); in ucl_object_lua_fromelt()
/freebsd/contrib/libucl/src/
H A Ducl_util.c1883 obj = ucl_object_fromint (iv);
3081 ucl_object_fromint (int64_t iv) function
/freebsd/contrib/libucl/doc/
H A Dapi.md350 - `ucl_object_fromint` - converts `int64_t` to UCL object