Home
last modified time | relevance | path

Searched refs:up (Results 1 – 25 of 147) sorted by relevance

123456

/l4re-core-master/lua/lib/contrib/src/
A Dltablib.c320 set2(L, up - 1, i); in partition()
334 IdxT r4 = (up - lo) / 4; /* range/4 */ in choosePivot()
336 lua_assert(lo + r4 <= p && p <= up - r4); in choosePivot()
351 lua_geti(L, 1, up); in auxsort()
353 set2(L, lo, up); /* swap a[lo] - a[up] */ in auxsort()
356 if (up - lo == 1) /* only 2 elements? */ in auxsort()
361 p = choosePivot(lo, up, rnd); in auxsort()
368 lua_geti(L, 1, up); in auxsort()
370 set2(L, p, up); /* swap a[up] - a[p] */ in auxsort()
374 if (up - lo == 2) /* only 3 elements? */ in auxsort()
[all …]
A Dlfunc.h32 #define upisopen(up) ((up)->v != &(up)->u.value) argument
35 #define uplevel(up) check_exp(upisopen(up), cast(StkId, (up)->v)) argument
A Dlmathlib.c558 lua_Integer low, up; in math_random() local
569 up = luaL_checkinteger(L, 1); in math_random()
570 if (up == 0) { /* single 0 as argument? */ in math_random()
578 up = luaL_checkinteger(L, 2); in math_random()
584 luaL_argcheck(L, low <= up, 1, "interval is empty"); in math_random()
586 p = project(I2UInt(rv), (lua_Unsigned)up - (lua_Unsigned)low, state); in math_random()
A Dldo.c162 UpVal *up; in correctstack() local
165 for (up = L->openupval; up != NULL; up = up->u.open.next) in correctstack()
166 up->v = s2v((uplevel(up) - oldstack) + newstack); in correctstack()
A Dlparser.c293 if (up->kind != VDKREG) in check_readonly()
294 varname = up->name; in check_readonly()
344 Upvaldesc *up = fs->f->upvalues; in searchupvalue() local
346 if (eqstr(up[i].name, name)) return i; in searchupvalue()
365 Upvaldesc *up = allocupvalue(fs); in newupvalue() local
368 up->instack = 1; in newupvalue()
369 up->idx = v->u.var.ridx; in newupvalue()
374 up->instack = 0; in newupvalue()
375 up->idx = cast_byte(v->u.info); in newupvalue()
376 up->kind = prev->f->upvalues[v->u.info].kind; in newupvalue()
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/test/misc/
A Dtst-utmp.c230 struct utmp *up; in check_login() local
237 up = getutline (&ut); in check_login()
238 if (up == NULL) in check_login()
250 if (memcmp (up, &entry[n], sizeof (struct utmp))) in check_login()
286 struct utmp *up; in check_id() local
294 up = getutid (&ut); in check_id()
295 if (up == NULL) in check_id()
307 if (memcmp (up, &entry[n], sizeof (struct utmp))) in check_id()
324 struct utmp *up; in check_type() local
331 up = getutid (&ut); in check_type()
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/test/math/
A Dilogb.c10 int err; hex_union ur; hex_union up; \
11 double result = func(param); up.f = param; ur.f = result; \
15 #func, (double)(param), (long long)up.hex, result, (long long)ur.hex, (double)(expected)) \
21 int err; hex_union up; \
22 long long result = func(param); up.f = param; \
26 #func, (double)(param), (long long)up.hex, result, result, (long long)(expected)) \
A Dc99_test.c10 int err; hex_union ur; hex_union up; \
11 double result = func(param); up.f = param; ur.f = result; \
15 #func, (double)(param), (long long)up.hex, result, (long long)ur.hex, (double)(expected)) \
21 int err; hex_union up; \
22 long long result = func(param); up.f = param; \
26 #func, (double)(param), (long long)up.hex, result, result, (long long)(expected)) \
A Drint.c9 int err; hex_union ur; hex_union up; \
10 double result = func(param); up.f = param; ur.f = result; \
14 #func, (double)(param), (long long)up.hex, result, (long long)ur.hex, (double)(expected)) \
A Dgamma.c9 int err; hex_union ur; hex_union up; \
10 double result = func(param); up.f = param; ur.f = result; \
14 #func, (double)(param), (long long)up.hex, result, (long long)ur.hex, (double)(expected)) \
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/
A DDESIGN-rwlock.txt24 - 'all readers should wake up' futex.
27 - 'one writer should wake up' futex.
30 - number of readers queued up.
33 - number of writers queued up.
/l4re-core-master/l4sys/include/cxx/
A Dconsts24 * Round a value up so the given number of lsb is zero.
27 * \param val The value to rund up to the next multiple of 2^order.
28 * \param order order (2^order) to round up to.
29 * \return val rounded up to the next 2^order.
/l4re-core-master/l4sys/include/
A Dsemaphore34 * object provides the classical functions `up()` and `down()` for
36 * Triggerable with respect to the `up()` function, this means that a
54 * Semaphore up operation (wrapper for trigger()).
65 l4_msgtag_t up(l4_utcb_t *utcb = l4_utcb()) noexcept
82 * or the counter is increased by an `up()` operation.
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/rpc/
A Dxdr.c214 xdr_u_int (XDR *xdrs, u_int *up) in libc_hidden_def()
222 l = (u_long) * up; in libc_hidden_def()
230 *up = (u_int) l; in libc_hidden_def()
236 return xdr_u_long (xdrs, (u_long *) up); in libc_hidden_def()
238 return xdr_short (xdrs, (short *) up); in libc_hidden_def()
/l4re-core-master/uclibc/lib/uclibc/ARCH-mips/include/asm/
A Dsgidefs.h18 #error Use a Linux compiler or give up.
/l4re-core-master/uclibc/lib/contrib/uclibc/ldso/ldso/c6x/
A Dresolve.S16 ;; function, clean up after ourselves, restoring the original
17 ;; arguments, then jump to the fixed up address. */
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/arm/
A Dstrlen.S86 tstne r2, $0x00ff0000 @ and add up to 3 bytes on to it
95 tstne r2, $0x0000ff00 @ and add up to 3 bytes on to it
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/
A Dzconf.lex.c_shipped188 /* Undo effects of setting up zconftext. */ \
259 * possible backing-up.
695 * corresponding action - sets up zconftext.
913 /* Amount of stuff to slurp up with each read. */
978 * have been set up.
1196 YY_DO_BEFORE_ACTION; /* set up zconftext again */
1413 * yy_get_next_buffer() to have set up
1414 * zconftext, we can now set up
1642 /* undo effects of setting up zconftext */
1646 { /* need to shift things up to make room */
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/metag/
A Dmemset.S22 ! need the number of bytes up to the next 8 byte address
62 ! This does a byte structured burst of up to 7 bytes
/l4re-core-master/ldscripts/ARCH-amd64/
A Dmain_rel.ld81 /* Adjust the address for the data segment. We want to adjust up to
82 the same address within the page on the next page up. */
155 /* Align here to ensure that the .bss section occupies space up to
/l4re-core-master/uclibc/lib/contrib/uclibc/ldso/man/
A Dld.so.texi67 intelligence to load, but takes up more space. If many executables use the
76 to load further dynamic libraries. Since multiple files end up getting
199 The linker only supports up to 32 library directories. You have too many.
246 This utility is used by the system administrator to automatically set up
247 symbolic links needed by the libraries, and also to set up the cache file.
276 Set up symbolic links for only libraries presented on the command line.
356 This function looks up the name @var{symbol-name} in the library and returns
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sparc/sparcv7/
A Dudiv.S97 ! %o5 > %o3: went too far: back up 1 step
106 ! division loop will mess up the first time around.
143 tst %o3 ! set up for initial iteration
A Durem.S97 ! %o5 > %o3: went too far: back up 1 step
106 ! division loop will mess up the first time around.
143 tst %o3 ! set up for initial iteration
/l4re-core-master/ldscripts/ARCH-arm64/
A Dmain_rel.ld72 /* Adjust the address for the data segment. We want to adjust up to
73 the same address within the page on the next page up. */
147 /* Align here to ensure that the .bss section occupies space up to
A Dmain_stat.ld92 /* Adjust the address for the data segment. We want to adjust up to
93 the same address within the page on the next page up. */
173 /* Align here to ensure that the .bss section occupies space up to

Completed in 37 milliseconds

123456