Searched refs:ar (Results 26 - 50 of 283) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/lua/src/
H A Dldblib.c146 lua_Debug ar; local
157 if (!lua_getstack(L1, (int)luaL_checkinteger(L, arg + 1), &ar)) {
162 if (!lua_getinfo(L1, options, &ar))
166 settabss(L, "source", ar.source);
167 settabss(L, "short_src", ar.short_src);
168 settabsi(L, "linedefined", ar.linedefined);
169 settabsi(L, "lastlinedefined", ar.lastlinedefined);
170 settabss(L, "what", ar.what);
173 settabsi(L, "currentline", ar.currentline);
175 settabsi(L, "nups", ar
196 lua_Debug ar; local
228 lua_Debug ar; local
305 hookf(lua_State *L, lua_Debug *ar) argument
[all...]
H A Dlauxlib.c73 static int pushglobalfuncname (lua_State *L, lua_Debug *ar) { argument
75 lua_getinfo(L, "f", ar); /* push function */
94 static void pushfuncname (lua_State *L, lua_Debug *ar) { argument
95 if (pushglobalfuncname(L, ar)) { /* try first a global name */
99 else if (*ar->namewhat != '\0') /* is there a name from code? */
100 lua_pushfstring(L, "%s '%s'", ar->namewhat, ar->name); /* use it */
101 else if (*ar->what == 'm') /* main? */
103 else if (*ar->what != 'C') /* for Lua functions, use <file:line> */
104 lua_pushfstring(L, "function <%s:%d>", ar
111 lua_Debug ar; local
127 lua_Debug ar; local
165 lua_Debug ar; local
206 lua_Debug ar; local
[all...]
H A Dldebug.c110 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { argument
119 ar->i_ci = ci;
171 LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) { argument
175 if (ar == NULL) { /* information about non-active function? */
181 else { /* active function; get information through 'ar' */
183 name = findlocal(L, ar->i_ci, n, &pos);
195 LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) { argument
200 name = findlocal(L, ar->i_ci, n, &pos);
211 static void funcinfo (lua_Debug *ar, Closure *cl) { argument
213 ar
262 auxgetinfo(lua_State *L, const char *what, lua_Debug *ar, Closure *f, CallInfo *ci) argument
309 lua_getinfo(lua_State *L, const char *what, lua_Debug *ar) argument
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dldebug.c90 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { argument
99 ar->i_ci = ci;
151 LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) { argument
155 if (ar == NULL) { /* information about non-active function? */
161 else { /* active function; get information through 'ar' */
163 name = findlocal(L, ar->i_ci, n, &pos);
175 LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) { argument
180 name = findlocal(L, ar->i_ci, n, &pos);
190 static void funcinfo (lua_Debug *ar, Closure *cl) { argument
192 ar
227 auxgetinfo(lua_State *L, const char *what, lua_Debug *ar, Closure *f, CallInfo *ci) argument
278 lua_getinfo(lua_State *L, const char *what, lua_Debug *ar) argument
[all...]
H A Dlauxlib.c62 static int pushglobalfuncname (lua_State *L, lua_Debug *ar) { argument
64 lua_getinfo(L, "f", ar); /* push function */
78 static void pushfuncname (lua_State *L, lua_Debug *ar) { argument
79 if (*ar->namewhat != '\0') /* is there a name? */
80 lua_pushfstring(L, "function " LUA_QS, ar->name);
81 else if (*ar->what == 'm') /* main? */
83 else if (*ar->what == 'C') {
84 if (pushglobalfuncname(L, ar)) {
92 lua_pushfstring(L, "function <%s:%d>", ar->short_src, ar
97 lua_Debug ar; local
113 lua_Debug ar; local
149 lua_Debug ar; local
179 lua_Debug ar; local
[all...]
/freebsd-11-stable/usr.bin/gzip/
H A Dzdiff65 setvar $2 "${1%??}"ar
69 setvar $2 "${1%??}"ar
73 setvar $2 "${1%???}"ar
77 setvar $2 "${1%??}"ar
/freebsd-11-stable/contrib/elftoolchain/libelf/
H A D_libelf_ar.h33 * Prototypes and declarations needed by libelf's ar(1) archive
37 #include <ar.h>
H A Dlibelf_ar_util.c80 _libelf_ar_get_translated_name(const struct ar_hdr *arh, Elf *ar) argument
89 assert(ar->e_kind == ELF_K_AR);
90 assert((const unsigned char *) arh >= ar->e_rawfile &&
91 (const unsigned char *) arh < ar->e_rawfile + ar->e_rawsize);
114 if (offset > ar->e_u.e_ar.e_rawstrtabsz) {
119 p = q = ar->e_u.e_ar.e_rawstrtab + offset;
120 r = ar->e_u.e_ar.e_rawstrtab + ar->e_u.e_ar.e_rawstrtabsz;
226 * Open an 'ar' archiv
[all...]
H A Delf_phnum.c27 #include <ar.h>
H A Delf_shnum.c27 #include <ar.h>
H A Delf_getident.c27 #include <ar.h>
H A Delf_shstrndx.c27 #include <ar.h>
H A Delf_next.c27 #include <ar.h>
/freebsd-11-stable/contrib/libucl/tests/
H A Dtest_generate.c44 ucl_object_t *obj, *cur, *ar, *ar1, *ref, *test_obj, *comments; local
88 ar = ucl_object_typed_new (UCL_ARRAY);
90 ucl_array_append (ar, cur);
91 assert (ucl_array_index_of (ar, cur) == 0);
93 ucl_array_append (ar, cur);
94 assert (ucl_array_index_of (ar, cur) == 1);
96 ucl_array_prepend (ar, cur);
97 assert (ucl_array_index_of (ar, cur) == 0);
99 ar1 = ucl_object_copy (ar);
122 ucl_array_append (ar, cu
[all...]
/freebsd-11-stable/contrib/bmake/
H A Darch.c140 #include <ar.h>
533 * ar Current list element
545 ArchFindArchive(const void *ar, const void *archName) argument
547 return (strcmp(archName, ((const Arch *)ar)->name));
581 Arch *ar; /* Archive descriptor */ local
600 ar = (Arch *)Lst_Datum(ln);
602 he = Hash_FindEntry(&ar->members, member);
616 if ((he = Hash_FindEntry(&ar->members, copy)) != NULL)
661 ar = bmake_malloc(sizeof(Arch));
662 ar
791 ArchSVR4Entry(Arch *ar, char *name, size_t size, FILE *arch) argument
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_extract2.c44 static int copy_data(struct archive *ar, struct archive *aw);
126 copy_data(struct archive *ar, struct archive *aw) argument
134 extract = __archive_read_get_extract((struct archive_read *)ar);
138 r = archive_read_data_block(ar, &buff, &size, &offset);
147 archive_set_error(ar, archive_errno(aw),
/freebsd-11-stable/crypto/openssl/crypto/
H A Dia64cpuid.S14 { .mib; mov r8=ar.itc
26 { .mii; mov ar.ccv=r2
30 cmpxchg4.acq r2=[r32],r8,ar.ccv
53 .save ar.pfs,r2
54 .save ar.lc,r3
55 { .mib; alloc r2=ar.pfs,0,96,0,96
56 mov r3=ar.lc
59 { .mii; mov r9=ar.bsp
61 mov ar.lc=96 };;
64 mov ar
[all...]
/freebsd-11-stable/sys/rpc/
H A Drpc_prot.c96 xdr_accepted_reply(XDR *xdrs, struct accepted_reply *ar) argument
101 assert(ar != NULL);
103 par_stat = &ar->ar_stat;
106 if (! xdr_opaque_auth(xdrs, &(ar->ar_verf)))
110 switch (ar->ar_stat) {
113 if (ar->ar_results.proc != (xdrproc_t) xdr_void)
114 return ((*(ar->ar_results.proc))(xdrs,
115 ar->ar_results.where));
120 if (! xdr_uint32_t(xdrs, &(ar->ar_vers.low)))
122 return (xdr_uint32_t(xdrs, &(ar
[all...]
/freebsd-11-stable/usr.sbin/mfiutil/
H A Dmfi_config.c125 struct mfi_array *ar; local
131 ar = (struct mfi_array *)p;
132 if (ar->array_ref == array_ref)
133 return (ar);
428 struct mfi_array *ar = (struct mfi_array *)arrayp; local
431 ar->size = array_info->drives[0].coerced_size;
432 ar->num_drives = array_info->drive_count;
433 ar->array_ref = find_next_array(state);
440 ar->array_ref);
441 if (ar
457 struct mfi_array *ar; local
550 struct mfi_array *ar; local
927 struct mfi_array *ar; local
1111 struct mfi_array *ar; local
[all...]
/freebsd-11-stable/sys/fs/autofs/
H A Dautofs_vfsops.c120 struct autofs_request *ar; local
143 TAILQ_FOREACH(ar, &autofs_softc->sc_requests, ar_next) {
144 if (ar->ar_mount != amp)
146 ar->ar_error = ENXIO;
147 ar->ar_done = true;
148 ar->ar_in_progress = false;
/freebsd-11-stable/lib/libc/rpc/
H A Drpc_prot.c102 xdr_accepted_reply(XDR *xdrs, struct accepted_reply *ar) argument
107 assert(ar != NULL);
109 par_stat = &ar->ar_stat;
112 if (! xdr_opaque_auth(xdrs, &(ar->ar_verf)))
116 switch (ar->ar_stat) {
119 return ((*(ar->ar_results.proc))(xdrs, ar->ar_results.where));
122 if (!xdr_rpcvers(xdrs, &(ar->ar_vers.low)))
124 return (xdr_rpcvers(xdrs, &(ar->ar_vers.high)));
/freebsd-11-stable/contrib/ntp/lib/isc/include/isc/
H A Devent.h62 #define ISC_EVENT_INIT(event, sz, at, ta, ty, ac, ar, sn, df, da) \
69 (event)->ev_arg = (ar); \
/freebsd-11-stable/targets/pseudo/toolchain/
H A DMakefile.depend13 usr.bin/ar \
/freebsd-11-stable/contrib/gcc/
H A Dtree-complex.c803 a + b = (ar + br) + i(ai + bi)
804 a - b = (ar - br) + i(ai + bi)
809 tree ar, tree ai, tree br, tree bi,
818 rr = gimplify_build2 (bsi, code, inner_type, ar, br);
823 rr = ar;
832 rr = gimplify_build2 (bsi, MINUS_EXPR, inner_type, ar, br);
839 rr = ar;
844 rr = gimplify_build2 (bsi, code, inner_type, ar, br);
849 rr = ar;
856 rr = gimplify_build2 (bsi, code, inner_type, ar, b
808 expand_complex_addition(block_stmt_iterator *bsi, tree inner_type, tree ar, tree ai, tree br, tree bi, enum tree_code code, complex_lattice_t al, complex_lattice_t bl) argument
884 expand_complex_libcall(block_stmt_iterator *bsi, tree ar, tree ai, tree br, tree bi, enum tree_code code) argument
928 expand_complex_multiplication(block_stmt_iterator *bsi, tree inner_type, tree ar, tree ai, tree br, tree bi, complex_lattice_t al, complex_lattice_t bl) argument
1014 expand_complex_div_straight(block_stmt_iterator *bsi, tree inner_type, tree ar, tree ai, tree br, tree bi, enum tree_code code) argument
1041 expand_complex_div_wide(block_stmt_iterator *bsi, tree inner_type, tree ar, tree ai, tree br, tree bi, enum tree_code code) argument
1183 expand_complex_division(block_stmt_iterator *bsi, tree inner_type, tree ar, tree ai, tree br, tree bi, enum tree_code code, complex_lattice_t al, complex_lattice_t bl) argument
1263 expand_complex_negation(block_stmt_iterator *bsi, tree inner_type, tree ar, tree ai) argument
1279 expand_complex_conjugate(block_stmt_iterator *bsi, tree inner_type, tree ar, tree ai) argument
1292 expand_complex_comparison(block_stmt_iterator *bsi, tree ar, tree ai, tree br, tree bi, enum tree_code code) argument
1331 tree ac, ar, ai, bc, br, bi; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/common/ctf/
H A Dctf_decl.c95 ctf_arinfo_t ar; local
104 (void) ctf_array_info(fp, type, &ar);
105 ctf_decl_push(cd, fp, ar.ctr_contents);
106 n = ar.ctr_nelems;

Completed in 141 milliseconds

1234567891011>>