Home
last modified time | relevance | path

Searched +defs:func +defs:o (Results 1 – 25 of 94) sorted by relevance

1234

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dcanthrow.c34 bool canThrow(Expression *e, FuncDeclaration *func, bool mustNotThrow) in canThrow()
41 FuncDeclaration *func; in canThrow() local
242 bool Dsymbol_canThrow(Dsymbol *s, FuncDeclaration *func, bool mustNotThrow) in Dsymbol_canThrow()
302 RootObject *o = (*td->objects)[i]; in Dsymbol_canThrow() local
/netbsd-src/external/bsd/nvi/dist/common/
H A Doptions.h28 #define O_V(sp, o, fld) \ argument
34 #define OG_CLR(gp, o) ((gp)->opts[(o)].o_cur.val) = 0 argument
35 #define OG_SET(gp, o) ((gp)->opts[(o)].o_cur.val) = 1 argument
36 #define OG_STR(gp, o) ((gp)->opts[(o)].o_cur.str) argument
37 #define OG_VAL(gp, o) ((gp)->opts[(o)].o_cur.val) argument
38 #define OG_ISSET(gp, o) OG_VAL(gp, o) argument
40 #define OG_D_STR(gp, o) ((gp)->opts[(o)].o_def.str) argument
41 #define OG_D_VAL(gp, o) ((gp)->opts[(o)].o_def.val) argument
57 #define O_CLR(sp, o) o_set(sp, o, 0, NULL, 0) argument
58 #define O_SET(sp, o) o_set(sp, o, 0, NULL, 1) argument
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/
H A Doutp.h12 const struct nvkm_outp_func *func; member
50 #define OUTP_MSG(o,l,f,a...) do { \ argument
55 #define OUTP_ERR(o,f,a...) OUTP_MSG((o), error, f, ##a) argument
56 #define OUTP_DBG(o,f,a...) OUTP_MSG((o), debug, f, ##a) argument
57 #define OUTP_TRACE(o,f,a...) OUTP_MSG((o), trace, f, ##a) argument
/netbsd-src/external/mit/lua/dist/src/
H A Dlapi.c52 #define isvalid(L, o) (!ttisnil(o) || o != &G(L)->nilvalue) argument
69 StkId o = ci->func.p + idx; in index2value() local
85 CClosure *func = clCvalue(s2v(ci->func.p)); in index2value() local
104 StkId o = ci->func.p + idx; in index2stack() local
189 StkId func, newtop; in lua_settop() local
291 const TValue *o = index2value(L, idx); in lua_type() local
304 const TValue *o = index2value(L, idx); in lua_iscfunction() local
310 const TValue *o = index2value(L, idx); in lua_isinteger() local
317 const TValue *o = index2value(L, idx); in lua_isnumber() local
323 const TValue *o = index2value(L, idx); in lua_isstring() local
[all …]
H A Dltm.c80 const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event) { in luaT_gettmbyobj()
100 const char *luaT_objtypename (lua_State *L, const TValue *o) { in luaT_objtypename()
114 StkId func = L->top.p; in luaT_callTM() local
131 StkId func = L->top.p; in luaT_callTMres() local
H A Dldebug.c135 LUA_API void lua_sethook (lua_State *L, lua_Hook func, int mask, int count) { in lua_sethook()
391 TValue *func; in lua_getinfo() local
668 static int instack (CallInfo *ci, const TValue *o) { in instack()
684 static const char *getupvalname (CallInfo *ci, const TValue *o, in getupvalname()
710 static const char *varinfo (lua_State *L, const TValue *o) { in varinfo()
729 static l_noret typeerror (lua_State *L, const TValue *o, const char *op, in typeerror()
740 l_noret luaG_typeerror (lua_State *L, const TValue *o, const char *op) { in luaG_typeerror()
750 l_noret luaG_callerror (lua_State *L, const TValue *o) { in luaG_callerror()
759 l_noret luaG_forerror (lua_State *L, const TValue *o, const char *what) { in luaG_forerror()
H A Dlstate.h180 StkIdRel func; /* function index in the stack */ member
372 #define cast_u(o) cast(union GCUnion *, (o)) argument
375 #define gco2ts(o) \ argument
377 #define gco2u(o) check_exp((o)->tt == LUA_VUSERDATA, &((cast_u(o))->u)) argument
378 #define gco2lcl(o) check_exp((o)->tt == LUA_VLCL, &((cast_u(o))->cl.l)) argument
379 #define gco2ccl(o) check_exp((o)->tt == LUA_VCCL, &((cast_u(o))->cl.c)) argument
380 #define gco2cl(o) \ argument
382 #define gco2t(o) check_exp((o)->tt == LUA_VTABLE, &((cast_u(o))->h)) argument
383 #define gco2p(o) check_exp((o)->tt == LUA_VPROTO, &((cast_u(o))->p)) argument
384 #define gco2th(o) check_exp((o)->tt == LUA_VTHREAD, &((cast_u(o))->th)) argument
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
H A Dmemory.h24 const struct nvkm_memory_func *func; member
75 #define nvkm_memory_map(p,o,vm,va,av,ac) \ argument
81 #define nvkm_kmap(o) (o)->func->acquire(o) argument
82 #define nvkm_done(o) (o)->func->release(o) argument
84 #define nvkm_ro32(o,a) (o)->ptrs->rd32((o), (a)) argument
85 #define nvkm_wo32(o,a,d) (o)->ptrs->wr32((o), (a), (d)) argument
86 #define nvkm_mo32(o,a,m,d) ({ \ argument
92 #define nvkm_wo64(o,a,d) do { \ argument
98 #define nvkm_robj(o,a,p,s) do { \ argument
106 #define nvkm_wobj(o,a,p,s) do { \ argument
[all …]
/netbsd-src/sys/arch/arm/broadcom/
H A Dbcm53xx_pax.c97 bcmpax_read_4(struct bcmpax_softc *sc, bus_size_t o) in bcmpax_read_4()
103 bcmpax_write_4(struct bcmpax_softc *sc, bus_size_t o, uint32_t v) in bcmpax_write_4()
401 bcmpax_make_tag(void *v, int bus, int dev, int func) in bcmpax_make_tag()
414 uint32_t func = __SHIFTOUT(tag, CFG_ADDR_FUNC); in bcmpax_conf_addr_write() local
497 bcmpax_conf_hook(void *v, int bus, int dev, int func, pcireg_t id) in bcmpax_conf_hook()
515 int (* const func)(void *) = ih->ih_func; in bcmpax_intr() local
/netbsd-src/sys/arch/hppa/dev/
H A Delroy.c240 elroy_make_tag(void *v, int bus, int dev, int func) in elroy_make_tag() argument
249 elroy_decompose_tag(void *v, pcitag_t tag, int *bus, int *dev, int *func) in elroy_decompose_tag() argument
426 elroy_barrier(void *v, bus_space_handle_t h, bus_size_t o, bus_size_t l, int op) in elroy_barrier() argument
508 elroy_r1(void * v,bus_space_handle_t h,bus_size_t o) elroy_r1() argument
515 elroy_r2(void * v,bus_space_handle_t h,bus_size_t o) elroy_r2() argument
525 elroy_r4(void * v,bus_space_handle_t h,bus_size_t o) elroy_r4() argument
535 elroy_r8(void * v,bus_space_handle_t h,bus_size_t o) elroy_r8() argument
545 elroy_rs2(void * v,bus_space_handle_t h,bus_size_t o) elroy_rs2() argument
555 elroy_rs4(void * v,bus_space_handle_t h,bus_size_t o) elroy_rs4() argument
565 elroy_rs8(void * v,bus_space_handle_t h,bus_size_t o) elroy_rs8() argument
575 elroy_w1(void * v,bus_space_handle_t h,bus_size_t o,uint8_t vv) elroy_w1() argument
582 elroy_w2(void * v,bus_space_handle_t h,bus_size_t o,uint16_t vv) elroy_w2() argument
592 elroy_w4(void * v,bus_space_handle_t h,bus_size_t o,uint32_t vv) elroy_w4() argument
600 elroy_w8(void * v,bus_space_handle_t h,bus_size_t o,uint64_t vv) elroy_w8() argument
607 elroy_ws2(void * v,bus_space_handle_t h,bus_size_t o,uint16_t vv) elroy_ws2() argument
617 elroy_ws4(void * v,bus_space_handle_t h,bus_size_t o,uint32_t vv) elroy_ws4() argument
624 elroy_ws8(void * v,bus_space_handle_t h,bus_size_t o,uint64_t vv) elroy_ws8() argument
631 elroy_rm_1(void * v,bus_space_handle_t h,bus_size_t o,uint8_t * a,bus_size_t c) elroy_rm_1() argument
642 elroy_rm_2(void * v,bus_space_handle_t h,bus_size_t o,uint16_t * a,bus_size_t c) elroy_rm_2() argument
653 elroy_rm_4(void * v,bus_space_handle_t h,bus_size_t o,uint32_t * a,bus_size_t c) elroy_rm_4() argument
664 elroy_rm_8(void * v,bus_space_handle_t h,bus_size_t o,uint64_t * a,bus_size_t c) elroy_rm_8() argument
675 elroy_wm_1(void * v,bus_space_handle_t h,bus_size_t o,const uint8_t * a,bus_size_t c) elroy_wm_1() argument
686 elroy_wm_2(void * v,bus_space_handle_t h,bus_size_t o,const uint16_t * a,bus_size_t c) elroy_wm_2() argument
697 elroy_wm_4(void * v,bus_space_handle_t h,bus_size_t o,const uint32_t * a,bus_size_t c) elroy_wm_4() argument
708 elroy_wm_8(void * v,bus_space_handle_t h,bus_size_t o,const uint64_t * a,bus_size_t c) elroy_wm_8() argument
719 elroy_sm_1(void * v,bus_space_handle_t h,bus_size_t o,uint8_t vv,bus_size_t c) elroy_sm_1() argument
730 elroy_sm_2(void * v,bus_space_handle_t h,bus_size_t o,uint16_t vv,bus_size_t c) elroy_sm_2() argument
742 elroy_sm_4(void * v,bus_space_handle_t h,bus_size_t o,uint32_t vv,bus_size_t c) elroy_sm_4() argument
754 elroy_sm_8(void * v,bus_space_handle_t h,bus_size_t o,uint64_t vv,bus_size_t c) elroy_sm_8() argument
766 elroy_rrm_2(void * v,bus_space_handle_t h,bus_size_t o,uint16_t * a,bus_size_t c) elroy_rrm_2() argument
778 elroy_rrm_4(void * v,bus_space_handle_t h,bus_size_t o,uint32_t * a,bus_size_t c) elroy_rrm_4() argument
790 elroy_rrm_8(void * v,bus_space_handle_t h,bus_size_t o,uint64_t * a,bus_size_t c) elroy_rrm_8() argument
802 elroy_wrm_2(void * v,bus_space_handle_t h,bus_size_t o,const uint16_t * a,bus_size_t c) elroy_wrm_2() argument
815 elroy_wrm_4(void * v,bus_space_handle_t h,bus_size_t o,const uint32_t * a,bus_size_t c) elroy_wrm_4() argument
828 elroy_wrm_8(void * v,bus_space_handle_t h,bus_size_t o,const uint64_t * a,bus_size_t c) elroy_wrm_8() argument
841 elroy_rr_1(void * v,bus_space_handle_t h,bus_size_t o,uint8_t * a,bus_size_t c) elroy_rr_1() argument
852 elroy_rr_2(void * v,bus_space_handle_t h,bus_size_t o,uint16_t * a,bus_size_t c) elroy_rr_2() argument
865 elroy_rr_4(void * v,bus_space_handle_t h,bus_size_t o,uint32_t * a,bus_size_t c) elroy_rr_4() argument
878 elroy_rr_8(void * v,bus_space_handle_t h,bus_size_t o,uint64_t * a,bus_size_t c) elroy_rr_8() argument
891 elroy_wr_1(void * v,bus_space_handle_t h,bus_size_t o,const uint8_t * a,bus_size_t c) elroy_wr_1() argument
902 elroy_wr_2(void * v,bus_space_handle_t h,bus_size_t o,const uint16_t * a,bus_size_t c) elroy_wr_2() argument
915 elroy_wr_4(void * v,bus_space_handle_t h,bus_size_t o,const uint32_t * a,bus_size_t c) elroy_wr_4() argument
928 elroy_wr_8(void * v,bus_space_handle_t h,bus_size_t o,const uint64_t * a,bus_size_t c) elroy_wr_8() argument
941 elroy_rrr_2(void * v,bus_space_handle_t h,bus_size_t o,uint16_t * a,bus_size_t c) elroy_rrr_2() argument
953 elroy_rrr_4(void * v,bus_space_handle_t h,bus_size_t o,uint32_t * a,bus_size_t c) elroy_rrr_4() argument
965 elroy_rrr_8(void * v,bus_space_handle_t h,bus_size_t o,uint64_t * a,bus_size_t c) elroy_rrr_8() argument
977 elroy_wrr_2(void * v,bus_space_handle_t h,bus_size_t o,const uint16_t * a,bus_size_t c) elroy_wrr_2() argument
990 elroy_wrr_4(void * v,bus_space_handle_t h,bus_size_t o,const uint32_t * a,bus_size_t c) elroy_wrr_4() argument
1003 elroy_wrr_8(void * v,bus_space_handle_t h,bus_size_t o,const uint64_t * a,bus_size_t c) elroy_wrr_8() argument
1016 elroy_sr_1(void * v,bus_space_handle_t h,bus_size_t o,uint8_t vv,bus_size_t c) elroy_sr_1() argument
1027 elroy_sr_2(void * v,bus_space_handle_t h,bus_size_t o,uint16_t vv,bus_size_t c) elroy_sr_2() argument
1039 elroy_sr_4(void * v,bus_space_handle_t h,bus_size_t o,uint32_t vv,bus_size_t c) elroy_sr_4() argument
1051 elroy_sr_8(void * v,bus_space_handle_t h,bus_size_t o,uint64_t vv,bus_size_t c) elroy_sr_8() argument
[all...]
H A Ddino.c290 int func; in dino_enable_bus() local
326 dino_make_tag(void *v, int bus, int dev, int func) in dino_make_tag()
335 dino_decompose_tag(void *v, pcitag_t tag, int *bus, int *dev, int *func) in dino_decompose_tag()
617 dino_barrier(void *v, bus_space_handle_t h, bus_size_t o, bus_size_t l, int op) in dino_barrier()
637 dino_r1(void *v, bus_space_handle_t h, bus_size_t o) in dino_r1()
652 dino_r2(void *v, bus_space_handle_t h, bus_size_t o) in dino_r2()
672 dino_r4(void *v, bus_space_handle_t h, bus_size_t o) in dino_r4()
691 dino_r8(void *v, bus_space_handle_t h, bus_size_t o) in dino_r8()
705 dino_rs2(void *v, bus_space_handle_t h, bus_size_t o) in dino_rs2()
725 dino_rs4(void *v, bus_space_handle_t h, bus_size_t o) in dino_rs4()
[all …]
/netbsd-src/lib/libwrap/
H A Doptions.c117 void (*func) /* function that does the real work */ member
127 #define need_arg(o) ((o)->flags & NEED_ARG) argument
128 #define opt_arg(o) ((o)->flags & OPT_ARG) argument
129 #define permit_arg(o) ((o)->flags & (NEED_ARG | OPT_ARG)) argument
130 #define use_last(o) ((o)->flags & USE_LAST) argument
131 #define expand_arg(o) ((o)->flags & EXPAND_ARG) argument
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/
H A Dvmm.h101 const struct nvkm_vmm_desc_func *func; member
326 #define VMM_FO(m,o,d,c,b) nvkm_fo##b((m)->memory, (o), (d), (c)) argument
327 #define VMM_WO(m,o,d,c,b) nvkm_wo##b((m)->memory, (o), (d)) argument
328 #define VMM_XO(m,v,o,d,c,b,fn,f,a...) do { \ argument
334 #define VMM_WO032(m,v,o,d) VMM_XO((m),(v),(o),(d), 1, 32, WO, "%08x") argument
335 #define VMM_FO032(m,v,o,d,c) \ argument
338 #define VMM_WO064(m,v,o,d) VMM_XO((m),(v),(o),(d), 1, 64, WO, "%016"PRIx64"") argument
339 #define VMM_FO064(m,v,o,d,c) \ argument
342 #define VMM_XO128(m,v,o,lo,hi,c,f,a...) do { \ argument
353 #define VMM_WO128(m,v,o,lo,hi) VMM_XO128((m),(v),(o),(lo),(hi), 1, "") argument
[all …]
/netbsd-src/external/bsd/am-utils/dist/amd/
H A Dopts.c87 IntFuncPtr func; member
475 char *o = opts; in split_opts() local
536 char *o, *old_o; in eval_selectors() local
550 IntFuncPtr func; in eval_selectors() local
766 char *o = opts; in strip_selectors() local
/netbsd-src/sys/kern/
H A Dkern_rwlock.c145 rw_cas(krwlock_t *rw, uintptr_t o, uintptr_t n) in rw_cas()
160 rw_swap(krwlock_t *rw, uintptr_t o, uintptr_t n) in rw_swap()
192 rw_abort(const char *func, size_t line, krwlock_t *rw, const char *msg) in rw_abort()
H A Dkern_mutex.c217 #define MUTEX_CAS(p, o, n) \ argument
224 #define MUTEX_INHERITDEBUG(n, o) (n) |= (o) & MUTEX_BIT_NODEBUG argument
227 #define MUTEX_INHERITDEBUG(n, o) /* nothing */ argument
335 mutex_abort(const char *func, size_t line, volatile const kmutex_t *mtx, in mutex_abort()
/netbsd-src/external/gpl3/gdb/dist/readline/readline/
H A Drltty.c722 int o; in rl_tty_set_echoing() local
811 #define SET_SPECIAL(sc, func) set_special_char(kmap, &ttybuff, sc, func) argument
816 #define SET_SPECIAL(sc, func) argument
821 set_special_char (Keymap kmap, TIOTYPE *tiop, int sc, rl_command_func_t *func) in set_special_char()
851 set_special_char (Keymap kmap, TIOTYPE *tiop, int sc, rl_command_func_t *func) in set_special_char()
/netbsd-src/usr.bin/printf/
H A Dprintf.c110 error = printf(f, func); \ argument
98 PF(f,func) global() argument
152 int o; main() local
[all...]
/netbsd-src/sys/arch/mipsco/include/
H A Dbus.h300 #define bus_space_subregion(t, h, o, s, hp) \ argument
341 #define __BS_OFFSET(t, o, BYTES) ((o) << (t)->bs_stride) argument
342 #define __BS_FUNCTION(func,BYTES) __CONCAT3(func,_,BYTES) argument
668 __BS_FUNCTION(func,BYTES) global() argument
755 bus_space_barrier(t,h,o,l,f) global() argument
873 bus_dmamap_sync(t,p,o,l,ops) global() argument
883 bus_dmamem_mmap(t,sg,n,o,p,f) global() argument
[all...]
/netbsd-src/sys/arch/powerpc/powerpc/
H A Dpowerpc_machdep.c115 vaddr_t func = epp->ep_entry; in setregs() local
765 #define OPC_MFMSR_P(o) (((o) & OPC_MFMSR_MASK) == OPC_MFMSR_CODE) in emulate_mxmsr() argument
769 #define OPC_MTMSR_P(o) (((o) & OPC_MTMSR_MASK) == OPC_MTMSR_CODE) in emulate_mxmsr() argument
771 #define OPC_MXMSR_REG(o) (((o) >> 21) & 0x1f) in emulate_mxmsr() argument
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-relay/
H A Dop.c49 # define RB_OP(b, o) { (b) | RB_BD2ERR(b), (o) | RB_BD2ERR(b) } argument
254 #define RELAY_DEFOP(func, which) \ argument
/netbsd-src/external/bsd/openldap/dist/servers/slapd/
H A Dproto-slap.h393 #define be_entry_release_r( o, e ) be_entry_release_rw( o, e, 0 ) argument
394 #define be_entry_release_w( o, e ) be_entry_release_rw( o, e, 1 ) argument
1601 # define rs_assert_(file, line, func, cond) rs_assert__(file, line, cond) argument
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dinit_creds.c61 krb5_get_init_creds_opt *o; in krb5_get_init_creds_opt_alloc() local
384 krb5_gic_process_last_req func, in krb5_get_init_creds_opt_set_process_last_req()
/netbsd-src/external/gpl3/binutils/dist/bfd/
H A Dlibcoff.h333 #define coff_link_hash_traverse(table, func, info) \ argument
895 #define bfd_coff_swap_reloc_out(abfd, i, o) \ argument
898 #define bfd_coff_swap_lineno_out(abfd, i, o) \ argument
901 #define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \ argument
904 #define bfd_coff_swap_sym_out(abfd, i,o) \ argument
907 #define bfd_coff_swap_scnhdr_out(abfd, i,o) \ argument
910 #define bfd_coff_swap_filehdr_out(abfd, i,o) \ argument
913 #define bfd_coff_swap_aouthdr_out(abfd, i,o) \ argument
935 #define bfd_coff_swap_filehdr_in(abfd, i,o) \ argument
938 #define bfd_coff_swap_aouthdr_in(abfd, i,o) \ argument
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/bfd/
H A Dlibcoff.h304 #define coff_link_hash_traverse(table, func, info) \ argument
853 #define bfd_coff_swap_reloc_out(abfd, i, o) \ argument
856 #define bfd_coff_swap_lineno_out(abfd, i, o) \ argument
859 #define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \ argument
862 #define bfd_coff_swap_sym_out(abfd, i,o) \ argument
865 #define bfd_coff_swap_scnhdr_out(abfd, i,o) \ argument
868 #define bfd_coff_swap_filehdr_out(abfd, i,o) \ argument
871 #define bfd_coff_swap_aouthdr_out(abfd, i,o) \ argument
893 #define bfd_coff_swap_filehdr_in(abfd, i,o) \ argument
896 #define bfd_coff_swap_aouthdr_in(abfd, i,o) \ argument
[all …]

1234