Home
last modified time | relevance | path

Searched +full:1 +full:l (Results 1 – 25 of 1816) sorted by relevance

12345678910>>...73

/freebsd/share/examples/BSD_daemon/
H A Dbeastie.svg3 …,0%,0%);stroke-opacity:1;stroke-miterlimit:10;stroke-linecap:butt;stroke-linejoin:miter;fill:none;…
4l 5 -11 l 4 -10 l 6 -11 l 6 -12 l 7 -12 l 8 -13 l 9 -12 l 8 -13 l 9 -12 l 10 -13 l 8 -9 l 8 -10 l
5l 12 -1 l 12 0 l 13 -1 l 14 -1 l 13 0 l 14 -1 l 50 0 l 12 -1 l 109 0 l 10 -1 l 21 0 l 11 -1 l 11 -
6l -1 0 l -3 -3 l -9 -7 l -15 -11 l -19 -14 l -21 -17 l -22 -16 l -21 -16 l -19 -15 l -17 -12 l -15…
7l 1 1 l 3 4 l 7 10 l 10 14 l 11 15 l 11 13 l 9 12 l 8 10 l 7 8 l 6 7 l 8 8 l 8 8 l 9 8 l 9 7 l 10 …
8l 1 0 l 4 3 l 10 6 l 16 10 l 19 11 l 20 12 l 18 11 l 17 9 l 14 8 l 13 7 l 10 5 l 11 5 l 22 10 l 11…
9l 3 5 l 4 5 l 5 5 l 4 5 l 5 4 l 5 4 l 12 6 l 7 3 l 7 2 l 7 2 l 7 1 l 7 1 l 16 2 l 7 1 l 7 1 l 7 0
10l 2 1 l 9 3 l 13 4 l 13 5 l 10 3 l 9 3 l 8 3 l 9 3 l 10 3 l 9 3 l 9 3 l 9 2 l 8 2 l 9 2 l 10 1 l 9…
11l -6 -7 l -6 -7 l -8 -7 l -8 -7 l -8 -8 l -9 -7 l -8 -7 l -7 -6 l -8 -6 l -9 -7 l -9 -6 l -9 -7 l
12l -2 1 l -8 6 l -12 8 l -12 8 l -9 5 l -8 4 l -7 3 l -8 3 l -18 4 l -9 1 l -8 1 l -7 1 l -8 0 l -8…
[all …]
/freebsd/sys/dev/bce/
H A Dif_bcereg.h9 * 1. Redistributions of source code must retain the above copyright
40 #define __BIG_ENDIAN 1
44 #define __LITTLE_ENDIAN 1
419 /* Returns FALSE in "defects" per 2^31 - 1 calls, otherwise returns TRUE. */
424 /* Returns TRUE in "defects" per 2^31 - 1 calls, otherwise returns FALSE. */
584 #define SEEPROM_PHY_PAGE_SIZE (1 << SEEPROM_PAGE_BITS)
585 #define SEEPROM_BYTE_ADDR_MASK (SEEPROM_PHY_PAGE_SIZE-1)
590 #define BUFFERED_FLASH_PHY_PAGE_SIZE (1 << BUFFERED_FLASH_PAGE_BITS)
591 #define BUFFERED_FLASH_BYTE_ADDR_MASK (BUFFERED_FLASH_PHY_PAGE_SIZE-1)
596 #define SAIFUN_FLASH_PHY_PAGE_SIZE (1 << SAIFUN_FLASH_PAGE_BITS)
[all …]
/freebsd/crypto/openssl/include/openssl/
H A Dobj_mac.h19 #define OBJ_undef 0L
24 #define OBJ_itu_t 0L
32 #define OBJ_iso 1L
37 #define OBJ_joint_iso_itu_t 2L
45 #define OBJ_member_body OBJ_iso,2L
49 #define OBJ_identified_organization OBJ_iso,3L
54 #define OBJ_gmac OBJ_iso,0L,9797L,3L,4L
59 #define OBJ_hmac_md5 OBJ_identified_organization,6L,1L,5L,5L,8L,1L,1L
64 #define OBJ_hmac_sha1 OBJ_identified_organization,6L,1L,5L,5L,8L,1L,2L
69 #define OBJ_x509ExtAdmission OBJ_identified_organization,36L,8L,3L,3L
[all …]
/freebsd/contrib/lua/src/
H A Dlbaselib.c24 static int luaB_print (lua_State *L) { in luaB_print() argument
25 int n = lua_gettop(L); /* number of arguments */ in luaB_print()
27 for (i = 1; i <= n; i++) { /* for each argument */ in luaB_print()
28 size_t l; in luaB_print() local
29 const char *s = luaL_tolstring(L, i, &l); /* convert it to string */ in luaB_print()
30 if (i > 1) /* not the first element? */ in luaB_print()
31 lua_writestring("\t", 1); /* add a tab before it */ in luaB_print()
32 lua_writestring(s, l); /* print it */ in luaB_print()
33 lua_pop(L, 1); /* pop result */ in luaB_print()
45 static int luaB_warn (lua_State *L) { in luaB_warn() argument
[all …]
H A Dldblib.c31 ** If L1 != L, L1 can be in any state, and therefore there are no
35 static void checkstack (lua_State *L, lua_State *L1, int n) { in checkstack() argument
36 if (l_unlikely(L != L1 && !lua_checkstack(L1, n))) in checkstack()
37 luaL_error(L, "stack overflow"); in checkstack()
41 static int db_getregistry (lua_State *L) { in db_getregistry() argument
42 lua_pushvalue(L, LUA_REGISTRYINDEX); in db_getregistry()
43 return 1; in db_getregistry()
47 static int db_getmetatable (lua_State *L) { in db_getmetatable() argument
48 luaL_checkany(L, 1); in db_getmetatable()
49 if (!lua_getmetatable(L, 1)) { in db_getmetatable()
[all …]
H A Dlapi.c43 ** '!ttisnil(o)' implies 'o != &G(L)->nilvalue', so it is not needed.
46 #define isvalid(L, o) (!ttisnil(o) || o != &G(L)->nilvalue) argument
58 ** Non-valid indices return the special nil value 'G(L)->nilvalue'.
60 static TValue *index2value (lua_State *L, int idx) { in index2value() argument
61 CallInfo *ci = L->ci; in index2value()
64 api_check(L, idx <= ci->top.p - (ci->func.p + 1), "unacceptable index"); in index2value()
65 if (o >= L->top.p) return &G(L)->nilvalue; in index2value()
69 api_check(L, idx != 0 && -idx <= L->top.p - (ci->func.p + 1), in index2value()
71 return s2v(L->top.p + idx); in index2value()
74 return &G(L)->l_registry; in index2value()
[all …]
H A Dlmathlib.c29 static int math_abs (lua_State *L) { in math_abs() argument
30 if (lua_isinteger(L, 1)) { in math_abs()
31 lua_Integer n = lua_tointeger(L, 1); in math_abs()
33 lua_pushinteger(L, n); in math_abs()
36 lua_pushnumber(L, l_mathop(fabs)(luaL_checknumber(L, 1))); in math_abs()
37 return 1; in math_abs()
40 static int math_sin (lua_State *L) { in math_sin() argument
41 lua_pushnumber(L, l_mathop(sin)(luaL_checknumber(L, 1))); in math_sin()
42 return 1; in math_sin()
45 static int math_cos (lua_State *L) { in math_cos() argument
[all …]
H A Dlcorolib.c21 static lua_State *getco (lua_State *L) { in getco() argument
22 lua_State *co = lua_tothread(L, 1); in getco()
23 luaL_argexpected(L, co, 1, "thread"); in getco()
30 ** cases or -1 for errors.
32 static int auxresume (lua_State *L, lua_State *co, int narg) { in auxresume() argument
35 lua_pushliteral(L, "too many arguments to resume"); in auxresume()
36 return -1; /* error flag */ in auxresume()
38 lua_xmove(L, co, narg); in auxresume()
39 status = lua_resume(co, L, narg, &nres); in auxresume()
41 if (l_unlikely(!lua_checkstack(L, nres + 1))) { in auxresume()
[all …]
H A Dltablib.c27 #define TAB_R 1 /* read */
33 #define aux_getn(L,n,w) (checktab(L, n, (w) | TAB_L), luaL_len(L, n)) argument
36 static int checkfield (lua_State *L, const char *key, int n) { in checkfield() argument
37 lua_pushstring(L, key); in checkfield()
38 return (lua_rawget(L, -n) != LUA_TNIL); in checkfield()
46 static void checktab (lua_State *L, int arg, int what) { in checktab() argument
47 if (lua_type(L, arg) != LUA_TTABLE) { /* is it not a table? */ in checktab()
48 int n = 1; /* number of elements to pop */ in checktab()
49 if (lua_getmetatable(L, arg) && /* must have metatable */ in checktab()
50 (!(what & TAB_R) || checkfield(L, "__index", ++n)) && in checktab()
[all …]
/freebsd/sys/contrib/openzfs/module/lua/
H A Dltablib.c17 #define aux_getn(L,n) (luaL_checktype(L, n, LUA_TTABLE), luaL_len(L, n)) argument
22 static int maxn (lua_State *L) { in maxn() argument
24 luaL_checktype(L, 1, LUA_TTABLE); in maxn()
25 lua_pushnil(L); /* first key */ in maxn()
26 while (lua_next(L, 1)) { in maxn()
27 lua_pop(L, 1); /* remove value */ in maxn()
28 if (lua_type(L, -1) == LUA_TNUMBER) { in maxn()
29 lua_Number v = lua_tonumber(L, -1); in maxn()
33 lua_pushnumber(L, max); in maxn()
34 return 1; in maxn()
[all …]
H A Dlbaselib.c29 static int luaB_tonumber (lua_State *L) { in luaB_tonumber() argument
30 if (lua_isnoneornil(L, 2)) { /* standard conversion */ in luaB_tonumber()
32 lua_Number n = lua_tonumberx(L, 1, &isnum); in luaB_tonumber()
34 lua_pushnumber(L, n); in luaB_tonumber()
35 return 1; in luaB_tonumber()
37 luaL_checkany(L, 1); in luaB_tonumber()
40 size_t l; in luaB_tonumber() local
41 const char *s = luaL_checklstring(L, 1, &l); in luaB_tonumber()
42 const char *e = s + l; /* end point for 's' */ in luaB_tonumber()
43 int base = luaL_checkint(L, 2); in luaB_tonumber()
[all …]
H A Dlapi.c45 #define api_checkvalidindex(L, o) api_check(L, isvalid(o), "invalid index") argument
47 #define api_checkstackindex(L, i, o) \ argument
48 api_check(L, isstackindex(i, o), "index not in the stack")
51 static TValue *index2addr (lua_State *L, int idx) { in index2addr() argument
52 CallInfo *ci = L->ci; in index2addr()
55 api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index"); in index2addr()
56 if (o >= L->top) return NONVALIDVALUE; in index2addr()
60 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index"); in index2addr()
61 return L->top + idx; in index2addr()
64 return &G(L)->l_registry; in index2addr()
[all …]
H A Dlauxlib.c33 ** search for 'objidx' in table at index -1.
34 ** return 1 + string at top if find a good name.
36 static int findfield (lua_State *L, int objidx, int level) { in findfield() argument
37 if (level == 0 || !lua_istable(L, -1)) in findfield()
39 lua_pushnil(L); /* start 'next' loop */ in findfield()
40 while (lua_next(L, -2)) { /* for each pair in table */ in findfield()
41 if (lua_type(L, -2) == LUA_TSTRING) { /* ignore non-string keys */ in findfield()
42 if (lua_rawequal(L, objidx, -1)) { /* found object? */ in findfield()
43 lua_pop(L, 1); /* remove value (but keep name) */ in findfield()
44 return 1; in findfield()
[all …]
H A Dlvm.c26 #define strcoll(l,r) (strcmp((l),(r))) argument
45 int luaV_tostring (lua_State *L, StkId obj) { in luaV_tostring() argument
51 int l = lua_number2str(s, n); in luaV_tostring() local
52 setsvalue2s(L, obj, luaS_newlstr(L, s, l)); in luaV_tostring()
53 return 1; in luaV_tostring()
58 static void traceexec (lua_State *L) { in traceexec() argument
59 CallInfo *ci = L->ci; in traceexec()
60 lu_byte mask = L->hookmask; in traceexec()
61 int counthook = ((mask & LUA_MASKCOUNT) && L->hookcount == 0); in traceexec()
63 resethookcount(L); /* reset count */ in traceexec()
[all …]
/freebsd/libexec/flua/modules/
H A Dlposix.c28 lua__exit(lua_State *L) in lua__exit()
32 narg = lua_gettop(L); in lua__exit()
33 luaL_argcheck(L, narg == 1, 1, "_exit takes exactly one argument"); in lua__exit()
35 code = luaL_checkinteger(L, 1); in lua__exit()
40 lua_basename(lua_State *L) in lua_basename()
45 narg = lua_gettop(L); in lua_basename()
46 luaL_argcheck(L, nar in lua_basename()
27 lua__exit(lua_State * L) lua__exit() argument
39 lua_basename(lua_State * L) lua_basename() argument
61 lua_chmod(lua_State * L) lua_chmod() argument
83 lua_chown(lua_State * L) lua_chown() argument
139 lua_pclose(lua_State * L) lua_pclose() argument
168 lua_uname(lua_State * L) lua_uname() argument
201 lua_dirname(lua_State * L) lua_dirname() argument
224 lua_fork(lua_State * L) lua_fork() argument
245 lua_getpid(lua_State * L) lua_getpid() argument
256 lua_pipe(lua_State * L) lua_pipe() argument
277 lua_read(lua_State * L) lua_read() argument
324 lua_realpath(lua_State * L) lua_realpath() argument
348 lua_wait(lua_State * L) lua_wait() argument
398 lua_write(lua_State * L) lua_write() argument
496 luaopen_posix_libgen(lua_State * L) luaopen_posix_libgen() argument
503 luaopen_posix_stdlib(lua_State * L) luaopen_posix_stdlib() argument
510 luaopen_posix_sys_stat(lua_State * L) luaopen_posix_sys_stat() argument
517 luaopen_posix_sys_wait(lua_State * L) luaopen_posix_sys_wait() argument
521 lua_pushflag(L,flag) luaopen_posix_sys_wait() argument
543 luaopen_posix_sys_utsname(lua_State * L) luaopen_posix_sys_utsname() argument
550 luaopen_posix_unistd(lua_State * L) luaopen_posix_unistd() argument
[all...]
/freebsd/stand/liblua/
H A Dlutils.c8 * 1. Redistributions of source code must retain the above copyright
41 lua_command(lua_State *L) in lua_command() argument
44 int res = 1; in lua_command()
45 int argc = lua_gettop(L); in lua_command()
48 argv = malloc(sizeof(char *) * (argc + 1)); in lua_command()
52 argv[i] = (char *)(intptr_t)luaL_checkstring(L, i + 1); in lua_command()
56 lua_pushinteger(L, res); in lua_command()
58 return 1; in lua_command()
62 lua_has_command(lua_State *L) in lua_has_command() argument
66 cmd = luaL_checkstring(L, 1); in lua_has_command()
[all …]
/freebsd/share/doc/papers/diskperf/
H A Dresults.ms7 .\" 1. Redistributions of source code must retain the above copyright
38 fragment size of 1 Kilobyte. The second sets of measurements
53 l | l s | l s
54 l | l s | l s
55 l | l l | l l
56 l | c c | c c.
60 from an \fB8K/1K\fR 4.2BSD File System (Kbytes/sec.)
64 1 Drive 2 Drives 1 Drive 2 Drives
74 l | l s | l s
75 l | l s | l s
[all …]
/freebsd/tests/sys/compat32/aarch64/
H A Dswp_cond_test_impl.S11 #define STDOUT_FILENO 1
28 mov r6, #1
30 movw r0, :lower16:.L.testheader
31 movt r0, :upper16:.L.testheader
32 ldr r1, =(.L.testheaderEnd - .L.testheader - 1)
42 /* Returned 0 (bad) or 1 (ok) */
44 beq 1f
55 1:
56 movw r0, :lower16:.L.eq
57 movt r0, :upper16:.L.eq
[all …]
/freebsd/lib/clang/liblldb/
H A DLLDBWrapLua.cpp3 * Version 4.2.1
139 #if defined(__cplusplus) && __cplusplus >=201103L
154 #if ((defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) || \
155 (defined __cplusplus && __cplusplus >= 201103L) || \
234 if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
283 Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
295 food(1) // cast rank '1' (1 -> 1.0)
296 fooi(1) // cast rank '0'
303 #define SWIG_ERROR (-1)
304 /* Errors in range -1 to -99 are in swigerrors.swg (errors for all languages including those not us…
[all …]
/freebsd/contrib/libucl/lua/
H A Dlua_ucl.c77 static int ucl_object_lua_push_array (lua_State *L, const ucl_object_t *obj, int flags);
78 static int ucl_object_lua_push_scalar (lua_State *L, const ucl_object_t *obj, int flags);
79 static int ucl_object_push_lua_common (lua_State *L, const ucl_object_t *obj, int flags);
80 static ucl_object_t* ucl_object_lua_fromtable (lua_State *L, int idx, ucl_string_flags_t flags);
81 static ucl_object_t* ucl_object_lua_fromelt (lua_State *L, int idx, ucl_string_flags_t flags);
88 LUA_UCL_ALLOW_ARRAY = (1u << 0u),
89 LUA_UCL_CONVERT_NIL = (1u << 1u),
94 * @param L
99 ucl_object_lua_push_element (lua_State *L, const char *key, in ucl_object_lua_push_element() argument
102 lua_pushstring (L, key); in ucl_object_lua_push_element()
[all …]
/freebsd/lib/msun/ld128/
H A Ds_exp2l.c10 * 1. Redistributions of source code must retain the above copyright
36 #define TBLSIZE (1 << TBLBITS)
38 #define BIAS (LDBL_MAX_EXP - 1)
43 twom10000 = 0x1p-10000L;
46 P1 = 0x1.62e42fefa39ef35793c7673007e6p-1L,
47 P2 = 0x1.ebfbdff82c58ea86f16b06ec9736p-3L,
48 P3 = 0x1.c6b08d704a0bf8b33a762bad3459p-5L,
49 P4 = 0x1.3b2ab6fba4e7729ccbbe0b4f3fc2p-7L,
50 P5 = 0x1.5d87fe78a67311071dee13fd11d9p-10L,
51 P6 = 0x1.430912f86c7876f4b663b23c5fe5p-13L;
[all …]
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-cmds.pod.in60 =for openssl foreign manual apropos(1)
70 Every I<cmd> listed above is a (sub-)command of the L<openssl(1)> application.
71 It has its own detailed manual page at B<openssl-I<cmd>>(1). For example, to
88 L<openssl(1)>,
89 L<openssl-asn1parse(1)>,
90 L<openssl-ca(1)>,
91 L<openssl-ciphers(1)>,
92 L<openssl-cmp(1)>,
93 L<openssl-cms(1)>,
94 L<openssl-crl(1)>,
[all …]
/freebsd/lib/libc/tests/stdio/
H A Dswscanf_test.c15 #define L(s) L ## s macro
25 { L"0", { 1, 0, 1 }, { 1, 0, 1 }, { 1, 0, 1 }, { 1, 0, 1 }, { 1, 0, 1 }, },
26 { L"1", { 1, 1, 1 }, { 1, 1, 1 }, { 1, 1, 1 }, { 1, 1, 1 }, { 1, 1, 1 }, },
27 { L"2", { 0, 0, 0 }, { 1, 2, 1 }, { 1, 2, 1 }, { 1, 2, 1 }, { 1, 2, 1 }, },
28 { L"3", { 0, 0, 0 }, { 1, 3, 1 }, { 1, 3, 1 }, { 1, 3, 1 }, { 1, 3, 1 }, },
29 { L"4", { 0, 0, 0 }, { 1, 4, 1 }, { 1, 4, 1 }, { 1, 4, 1 }, { 1, 4, 1 }, },
30 { L"5", { 0, 0, 0 }, { 1, 5, 1 }, { 1, 5, 1 }, { 1, 5, 1 }, { 1, 5, 1 }, },
31 { L"6", { 0, 0, 0 }, { 1, 6, 1 }, { 1, 6, 1 }, { 1, 6, 1 }, { 1, 6, 1 }, },
32 { L"7", { 0, 0, 0 }, { 1, 7, 1 }, { 1, 7, 1 }, { 1, 7, 1 }, { 1, 7, 1 }, },
33 { L"8", { 0, 0, 0 }, { 0, 0, 0 }, { 1, 8, 1 }, { 1, 8, 1 }, { 1, 8, 1 }, },
[all …]
/freebsd/contrib/arm-optimized-routines/math/
H A Dtgamma128.h9 static const long double max_x = 0x1.b6e3180cd66a5c4206f128ba77f4p+10L;
13 0x1.8535745aa79569579b9eec0f3bbcp+0L,
14 0x1.0378f83c6fb8f0e51269f2b4a973p-3L,
15 0x1.59f6a05094f69686c3380f4e2783p-8L,
16 -0x1.0b291dee952a82764a4859b081a6p-8L,
17 -0x1.6dd301b2205bf936b5a3eaad0dbbp-12L,
18 0x1.387a8b5f38dd77e7f139b1021e86p-10L,
19 0x1.bca46637f65b13750c728cc29e40p-14L,
20 -0x1.d80401c00aef998c9e303151a51cp-11L,
21 -0x1.49cb6bb09f935a2053ccc2cf3711p-14L,
[all …]
/freebsd/crypto/heimdal/lib/wind/
H A DDerivedNormalizationProps.txt1 # DerivedNormalizationProps-4.0.1.txt
18 03D2 ; FC_NFKC; 03C5 # L& GREEK UPSILON WITH HOOK SYMBOL
19 03D3 ; FC_NFKC; 03CD # L& GREEK UPSILON WITH ACUTE AND HOOK SYMBOL
20 03D4 ; FC_NFKC; 03CB # L& GREEK UPSILON WITH DIAERESIS AND HOOK SYMBOL
21 03F2 ; FC_NFKC; 03C3 # L& GREEK LUNATE SIGMA SYMBOL
22 03F9 ; FC_NFKC; 03C3 # L& GREEK CAPITAL LUNATE SIGMA SYMBOL
23 1D2C ; FC_NFKC; 0061 # Lm MODIFIER LETTER CAPITAL A
24 1D2D ; FC_NFKC; 00E6 # Lm MODIFIER LETTER CAPITAL AE
25 1D2E ; FC_NFKC; 0062 # Lm MODIFIER LETTER CAPITAL B
26 1D30 ; FC_NFKC; 0064 # Lm MODIFIER LETTER CAPITAL D
[all …]

12345678910>>...73