Home
last modified time | relevance | path

Searched refs:ivalue (Results 1 – 15 of 15) sorted by relevance

/freebsd/crypto/krb5/src/lib/kadm5/
H A Dalt_prof.c346 krb5_int32 ivalue; in get_port_param() local
355 !krb5_aprof_get_int32(aprofile, hierarchy, TRUE, &ivalue)) { in get_port_param()
356 *param_out = ivalue; in get_port_param()
454 krb5_int32 ivalue; in kadm5_get_config_params() local
713 !krb5_aprof_get_int32(aprofile, hierarchy, TRUE, &ivalue) && in kadm5_get_config_params()
714 ivalue > 0) in kadm5_get_config_params()
715 params.iprop_ulogsize = ivalue; in kadm5_get_config_params()
718 !krb5_aprof_get_int32(aprofile, hierarchy, TRUE, &ivalue) && in kadm5_get_config_params()
719 ivalue > 0) in kadm5_get_config_params()
720 params.iprop_ulogsize = ivalue; in kadm5_get_config_params()
/freebsd/contrib/lua/src/
H A Dlvm.c112 *n = cast_num(ivalue(obj)); in luaV_tonumber_()
147 *p = ivalue(obj); in luaV_tointegerns()
217 lua_Integer init = ivalue(pinit); in forprep()
218 lua_Integer step = ivalue(pstep); in forprep()
490 lua_Integer li = ivalue(l); in LTnum()
492 return li < ivalue(r); /* both are integers */ in LTnum()
501 return LTfloatint(lf, ivalue(r)); in LTnum()
512 lua_Integer li = ivalue(l); in LEnum()
514 return li <= ivalue(r); /* both are integers */ in LEnum()
523 return LEfloatint(lf, ivalue(r)); in LEnum()
[all …]
H A Dlvm.h58 (ttisinteger(o) ? ((n) = cast_num(ivalue(o)), 1) : 0))
63 (l_likely(ttisinteger(o)) ? (*(i) = ivalue(o), 1) \
69 (l_likely(ttisinteger(o)) ? (*(i) = ivalue(o), 1) \
H A Dltable.c154 lua_Integer i = ivalue(key); in mainpositionTV()
224 return (ivalue(k1) == keyival(n2)); in equalkey()
335 i = ttisinteger(key) ? arrayindex(ivalue(key)) : 0; in findindex()
611 na += countint(ivalue(ek), nums); in rehash()
806 case LUA_VNUMINT: return luaH_getint(t, ivalue(key)); in luaH_get()
H A Dlobject.c113 setivalue(res, intarith(L, op, ivalue(p1), ivalue(p2))); in luaO_rawarith()
359 len = lua_integer2str(buff, MAXNUMBER2STR, ivalue(obj)); in tostringbuff()
H A Dlobject.h331 (ttisinteger(o) ? cast_num(ivalue(o)) : fltvalue(o)))
333 #define ivalue(o) check_exp(ttisinteger(o), val_(o).i) macro
H A Dldump.c125 dumpInteger(D, ivalue(o)); in dumpConstants()
H A Dllex.c248 seminfo->i = ivalue(&obj); in read_numeral()
H A Dlcode.c551 k = cast_int(ivalue(idx)); in addk()
703 e->k = VKINT; e->u.ival = ivalue(v); in const2exp()
1352 e1->u.ival = ivalue(&res); in constfolding()
H A Dluac.c317 printf(LUA_INTEGER_FMT,ivalue(o)); in PrintConstant()
/freebsd/contrib/llvm-project/clang/lib/CIR/Dialect/IR/
H A DCIRAttrs.cpp126 IntT ivalue; in parseIntLiteralImpl() local
128 if (p.parseInteger(ivalue)) in parseIntLiteralImpl()
131 value = mlir::APInt(ty.getWidth(), ivalue, isSigned, /*implicitTrunc=*/true); in parseIntLiteralImpl()
132 if (isTooLargeForType(value, ivalue)) in parseIntLiteralImpl()
/freebsd/sbin/camcontrol/
H A Dmodeedit.c72 int ivalue; member
185 dest->value.ivalue = (intptr_t)arg; in editentry_update()
222 newentry->value.ivalue = (intptr_t)arg; in editentry_create_desc()
253 return (src->value.ivalue); in editentry_save()
323 if (dest->value.ivalue != ival) in editentry_set()
325 dest->value.ivalue = ival; in editentry_set()
849 scan->value.ivalue); in modepage_write()
/freebsd/sys/kern/
H A Dkern_mib.c152 int ivalue; in sysctl_maxphys() local
159 ivalue = lvalue; in sysctl_maxphys()
160 return (sysctl_handle_int(oidp, &ivalue, 0, req)); in sysctl_maxphys()
H A Dvfs_bio.c482 int ivalue; in sysctl_bufspace() local
493 ivalue = lvalue; in sysctl_bufspace()
494 return (sysctl_handle_int(oidp, &ivalue, 0, req)); in sysctl_bufspace()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dvdev.c492 uint64_t ivalue; in vdev_prop_get_bool() local
494 err = vdev_prop_get_int(vd, prop, &ivalue); in vdev_prop_get_bool()
495 *bvalue = ivalue != 0; in vdev_prop_get_bool()