Home
last modified time | relevance | path

Searched refs:lim (Results 1 – 9 of 9) sorted by relevance

/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/rpc/
A Dxdr_float.c94 struct sgl_limits *lim; in xdr_float() local
104 i++, lim++) { in xdr_float()
106 (vs.exp == lim->s.exp) && in xdr_float()
108 is = lim->ieee; in xdr_float()
134 i++, lim++) { in xdr_float()
137 *vsp = lim->s; in xdr_float()
223 i++, lim++) { in xdr_double()
228 (vd.exp == lim->d.exp)) { in xdr_double()
229 id = lim->ieee; in xdr_double()
263 i++, lim++) { in xdr_double()
[all …]
/l4re-core-master/lua/lib/contrib/src/
A Dlmathlib.c537 lua_Unsigned lim = n; in project() local
539 lim |= (lim >> 1); in project()
540 lim |= (lim >> 2); in project()
541 lim |= (lim >> 4); in project()
542 lim |= (lim >> 8); in project()
543 lim |= (lim >> 16); in project()
545 lim |= (lim >> 32); /* integer type has more than 32 bits */ in project()
547 lua_assert((lim & (lim + 1)) == 0 /* 'lim + 1' is a power of 2, */ in project()
548 && lim >= n /* not smaller than 'n', */ in project()
549 && (lim >> 1) < n); /* and it is the smallest one */ in project()
[all …]
A Dltable.c427 unsigned int lim = ttlg; in numusearray() local
428 if (lim > asize) { in numusearray()
429 lim = asize; /* adjust upper limit */ in numusearray()
430 if (i > lim) in numusearray()
434 for (; i <= lim; i++) { in numusearray()
A Dldo.c253 StkId lim = L->top; in stackinuse() local
255 if (lim < ci->top) lim = ci->top; in stackinuse()
257 lua_assert(lim <= L->stack_last); in stackinuse()
258 res = cast_int(lim - L->stack) + 1; /* part of stack in use */ in stackinuse()
A Dlvm.c176 static int forlimit (lua_State *L, lua_Integer init, const TValue *lim, in forlimit() argument
178 if (!luaV_tointeger(lim, p, (step < 0 ? F2Iceil : F2Ifloor))) { in forlimit()
181 if (!tonumber(lim, &flim)) /* cannot convert to float? */ in forlimit()
182 luaG_forerror(L, lim, "limit"); in forlimit()
A Dlstrlib.c1564 lua_Integer lim = (lua_Integer)1 << ((size * NB) - 1); in str_pack() local
1565 luaL_argcheck(L, -lim <= n && n < lim, arg, "integer overflow"); in str_pack()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/regex/
A Dregexec.c1921 struct re_backref_cache_entry *lim = mctx->bkref_ents + limit; in check_dst_limits_calc_pos() local
1925 if (str_idx < lim->subexp_from) in check_dst_limits_calc_pos()
1928 if (lim->subexp_to < str_idx) in check_dst_limits_calc_pos()
1932 boundaries = (str_idx == lim->subexp_from); in check_dst_limits_calc_pos()
1933 boundaries |= (str_idx == lim->subexp_to) << 1; in check_dst_limits_calc_pos()
A Dregex_old.c5205 register int lim = 0; local
5209 lim = range - (size1 - startpos);
5216 while (range > lim
5221 while (range > lim && !fastmap[(unsigned char) *d++])
/l4re-core-master/uclibc/lib/contrib/uclibc/test/regex/
A Dtst-regex2.dat226 * Rules (before-compile): Add $(common-objpfx)bits/stdio-lim.h.

Completed in 35 milliseconds