Home
last modified time | relevance | path

Searched defs:o (Results 26 – 50 of 580) sorted by relevance

12345678910>>...24

/freebsd/lib/libnetmap/
H A Dnmport.c305 #define NPOPT_PARSER(o) nmport_opt_##o##_parser argument
306 #define NPOPT_DESC(o) nmport_opt_##o##_desc argument
307 #define NPOPT_NRKEYS(o) (NPOPT_DESC(o).nr_keys) argument
308 #define NPOPT_DECL(o, f) \ argument
333 struct nmreq_opt_parser *o = k->option; in nmport_opt_key_ctor() local
345 #define NPKEY_DESC(o, k) nmport_opt_##o##_key_##k##_desc argument
346 #define NPKEY_ID(o, k) (NPKEY_DESC(o, k).id) argument
347 #define NPKEY_DECL(o, k, f) \ argument
359 #define nmport_key(p, o, k) ((p)->keys[NPKEY_ID(o, k)]) argument
360 #define nmport_defkey(p, o) ((p)->keys[NPOPT_DESC(o).default_key]) argument
[all …]
/freebsd/usr.sbin/prometheus_sysctl_exporter/
H A Dprometheus_sysctl_exporter.c59 oid_get_root(struct oid *o) in oid_get_root()
68 oid_get_by_name(struct oid *o, const char *name) in oid_get_by_name()
130 oid_get_format(const struct oid *o, struct oidformat *of) in oid_get_format()
236 oid_get_value(const struct oid *o, const struct oidformat *of, in oid_get_value()
337 oid_get_name(const struct oid *o, struct oidname *on) in oid_get_name()
458 oid_get_description(const struct oid *o, struct oiddescription *od) in oid_get_description()
490 oid_print(const struct oid *o, struct oidname *on, bool print_description, in oid_print()
629 struct oid o; in main() local
641 struct oid o, root; in main() local
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlstate.h199 #define gch(o) (&(o)->gch) argument
202 #define rawgco2ts(o) \ argument
204 #define gco2ts(o) (&rawgco2ts(o)->tsv) argument
205 #define rawgco2u(o) check_exp((o)->gch.tt == LUA_TUSERDATA, &((o)->u)) argument
206 #define gco2u(o) (&rawgco2u(o)->uv) argument
207 #define gco2lcl(o) check_exp((o)->gch.tt == LUA_TLCL, &((o)->cl.l)) argument
208 #define gco2ccl(o) check_exp((o)->gch.tt == LUA_TCCL, &((o)->cl.c)) argument
209 #define gco2cl(o) \ argument
211 #define gco2t(o) check_exp((o)->gch.tt == LUA_TTABLE, &((o)->h)) argument
212 #define gco2p(o) check_exp((o)->gch.tt == LUA_TPROTO, &((o)->p)) argument
[all …]
H A Dlgc.c74 #define markvalue(g,o) { checkconsistency(o); \ argument
120 static int iscleared (global_State *g, const TValue *o) { in iscleared()
134 void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v) { in luaC_barrier_()
154 void luaC_barrierback_ (lua_State *L, GCObject *o) { in luaC_barrierback_()
190 GCObject *o = obj2gco(uv); in luaC_checkupvalcolor() local
215 GCObject *o = obj2gco(raw + offset); in luaC_newobj() local
242 static void reallymarkobject (global_State *g, GCObject *o) { in reallymarkobject()
311 GCObject *o; in markbeingfnz() local
496 StkId o = th->stack; in traversestack() local
522 GCObject *o = g->gray; in propagatemark() local
[all …]
H A Dlvm.h17 #define tostring(L,o) (ttisstring(o) || (luaV_tostring(L, o))) argument
19 #define tonumber(o,n) (ttisnumber(o) || (((o) = luaV_tonumber(o,n)) != NULL)) argument
/freebsd/crypto/openssl/crypto/aria/
H A Daria.c915 static void xor128(ARIA_c128 o, const ARIA_c128 x, const ARIA_u128 *y) in xor128()
927 static ossl_inline void rotnr(unsigned int n, ARIA_u128 *o, in rotnr()
946 static void rot19r(ARIA_u128 *o, const ARIA_u128 *xor, const ARIA_u128 *z) in rot19r()
955 static void rot31r(ARIA_u128 *o, const ARIA_u128 *xor, const ARIA_u128 *z) in rot31r()
964 static void rot61l(ARIA_u128 *o, const ARIA_u128 *xor, const ARIA_u128 *z) in rot61l()
973 static void rot31l(ARIA_u128 *o, const ARIA_u128 *xor, const ARIA_u128 *z) in rot31l()
982 static void rot19l(ARIA_u128 *o, const ARIA_u128 *xor, const ARIA_u128 *z) in rot19l()
991 static void sl1(ARIA_u128 *o, const ARIA_u128 *x, const ARIA_u128 *y) in sl1()
1006 static void sl2(ARIA_c128 o, const ARIA_u128 *x, const ARIA_u128 *y) in sl2()
1062 static ossl_inline void FO(ARIA_u128 *o, const ARIA_u128 *d, in FO()
[all …]
/freebsd/contrib/lua/src/
H A Dlapi.c46 #define isvalid(L, o) (!ttisnil(o) || o != &G(L)->nilvalue) argument
63 StkId o = ci->func.p + idx; in index2value() local
98 StkId o = ci->func.p + idx; in index2stack() local
285 const TValue *o = index2value(L, idx); in lua_type() local
298 const TValue *o = index2value(L, idx); in lua_iscfunction() local
304 const TValue *o = index2value(L, idx); in lua_isinteger() local
311 const TValue *o = index2value(L, idx); in lua_isnumber() local
317 const TValue *o = index2value(L, idx); in lua_isstring() local
323 const TValue *o = index2value(L, idx); in lua_isuserdata() local
381 const TValue *o = index2value(L, idx); in lua_tonumberx() local
[all …]
H A Dlfunc.c28 GCObject *o = luaC_newobj(L, LUA_VCCL, sizeCclosure(nupvals)); in luaF_newCclosure() local
36 GCObject *o = luaC_newobj(L, LUA_VLCL, sizeLclosure(nupvals)); in luaF_newLclosure() local
51 GCObject *o = luaC_newobj(L, LUA_VUPVAL, sizeof(UpVal)); in luaF_initupvals() local
66 GCObject *o = luaC_newobj(L, LUA_VUPVAL, sizeof(UpVal)); in newupval() local
241 GCObject *o = luaC_newobj(L, LUA_VPROTO, sizeof(Proto)); in luaF_newproto() local
H A Dlgc.h116 #define getage(o) ((o)->marked & AGEBITS) argument
117 #define setage(o,a) ((o)->marked = cast_byte(((o)->marked & (~AGEBITS)) | a)) argument
118 #define isold(o) (getage(o) > G_SURVIVAL) argument
120 #define changeage(o,f,t) \ argument
175 #define luaC_objbarrier(L,p,o) ( \ argument
182 #define luaC_objbarrierback(L,p,o) ( \ argument
/freebsd/sys/dev/vt/hw/fb/
H A Dvt_fb.c67 vt_fb_mem_wr1(struct fb_info *sc, uint32_t o, uint8_t v) in vt_fb_mem_wr1()
75 vt_fb_mem_wr2(struct fb_info *sc, uint32_t o, uint16_t v) in vt_fb_mem_wr2()
83 vt_fb_mem_wr3(struct fb_info *sc, uint32_t o, uint32_t v) in vt_fb_mem_wr3()
99 vt_fb_mem_wr4(struct fb_info *sc, uint32_t o, uint32_t v) in vt_fb_mem_wr4()
188 u_int o; in vt_fb_setpixel() local
240 u_int o, h; in vt_fb_blank() local
285 uint32_t fgc, bgc, cc, o; in vt_fb_bitblt_bitmap() local
350 uint32_t o, cc; in vt_fb_bitblt_argb() local
/freebsd/crypto/openssl/include/openssl/
H A Ddes.h61 # define DES_ecb2_encrypt(i,o,k1,k2,e) \ argument
64 # define DES_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \ argument
67 # define DES_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \ argument
70 # define DES_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \ argument
/freebsd/usr.sbin/ppp/
H A Ddeflate.c434 DeflateDispOpts(struct fsm_opt *o) in DeflateDispOpts()
443 DeflateInitOptsOutput(struct bundle *bundle __unused, struct fsm_opt *o, in DeflateInitOptsOutput()
452 DeflateSetOptsOutput(struct bundle *bundle __unused, struct fsm_opt *o, in DeflateSetOptsOutput()
467 DeflateSetOptsInput(struct bundle *bundle __unused, struct fsm_opt *o, in DeflateSetOptsInput()
489 DeflateInitInput(struct bundle *bundle __unused, struct fsm_opt *o) in DeflateInitInput()
512 DeflateInitOutput(struct bundle *bundle __unused, struct fsm_opt *o) in DeflateInitOutput()
H A Dmppe.c382 MPPEDispOpts(struct fsm_opt *o) in MPPEDispOpts()
512 MPPEInitOptsOutput(struct bundle *bundle, struct fsm_opt *o, in MPPEInitOptsOutput()
536 MPPESetOptsOutput(struct bundle *bundle, struct fsm_opt *o, in MPPESetOptsOutput()
575 MPPESetOptsInput(struct bundle *bundle, struct fsm_opt *o, in MPPESetOptsInput()
645 MPPE_InitState(struct fsm_opt *o) in MPPE_InitState()
679 MPPEInitInput(struct bundle *bundle __unused, struct fsm_opt *o) in MPPEInitInput()
735 MPPEInitOutput(struct bundle *bundle __unused, struct fsm_opt *o) in MPPEInitOutput()
/freebsd/crypto/heimdal/lib/wind/
H A Dldap.c38 put_char(uint32_t *out, size_t *o, uint32_t c, size_t out_len) in put_char()
53 size_t o = 0, i = 0; in _wind_ldap_case_exact_attribute() local
/freebsd/contrib/less/
H A Doption.c38 static constant char * opt_desc(struct loption *o) in opt_desc()
66 struct loption *o; in scan_option() local
317 public void toggle_option(struct loption *o, lbool lower, constant char *s, int how_toggle) in toggle_option()
516 public int opt_has_param(struct loption *o) in opt_has_param()
529 public constant char * opt_prompt(struct loption *o) in opt_prompt()
/freebsd/contrib/nvi/regex/
H A Dregexec.c74 #define INIT(o, n) ((o) = (unsigned)1 << (n)) argument
75 #define INC(o) ((o) <<= 1) argument
76 #define ISSTATEIN(v, o) ((v) & (o)) argument
123 #define INIT(o, n) ((o) = (n)) argument
124 #define INC(o) ((o)++) argument
125 #define ISSTATEIN(v, o) ((v)[o]) argument
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Dregexec.c71 #define INIT(o, n) ((o) = (unsigned long)1 << (n)) argument
72 #define INC(o) ((o) = (unsigned long)(o) << 1) argument
73 #define ISSTATEIN(v, o) (((v) & (o)) != 0) argument
120 #define INIT(o, n) ((o) = (n)) argument
121 #define INC(o) ((o)++) argument
122 #define ISSTATEIN(v, o) ((v)[o]) argument
/freebsd/sys/sys/
H A Dmutex.h168 #define mtx_init(m, n, t, o) \ argument
172 #define mtx_trylock_flags_(m, o, f, l) \ argument
175 #define _mtx_lock_sleep(m, v, o, f, l) \ argument
177 #define _mtx_unlock_sleep(m, v, o, f, l) \ argument
180 #define _mtx_lock_sleep(m, v, o, f, l) \ argument
182 #define _mtx_unlock_sleep(m, v, o, f, l) \ argument
187 #define _mtx_lock_spin(m, v, o, f, l) \ argument
190 #define _mtx_lock_spin(m, v, o, f, l) \ argument
194 #define _mtx_lock_flags(m, o, f, l) \ argument
196 #define _mtx_unlock_flags(m, o, f, l) \ argument
[all …]
/freebsd/contrib/netbsd-tests/lib/libc/sys/
H A Dt_wait_noproc.c229 int o; in ATF_TC_BODY() local
251 int o; in ATF_TC_BODY() local
271 int o; in ATF_TC_BODY() local
292 int o; in ATF_TC_BODY() local
313 int o; in ATF_TC_BODY() local
/freebsd/contrib/bc/src/
H A Dopt.c143 bc_opt_parseShort(BcOpt* o, const BcOptLong* longopts) in bc_opt_parseShort()
290 bc_opt_parse(BcOpt* o, const BcOptLong* longopts) in bc_opt_parse()
388 bc_opt_init(BcOpt* o, const char* argv[]) in bc_opt_init()
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_poisoning.cpp51 u32 o = GetOriginIfPoisoned((uptr)src, beg + 4 - d); in CopyOrigin() local
65 u32 o = GetOriginIfPoisoned((uptr)src + (end - d), (d + size) - end); in CopyOrigin() local
108 u32 o = GetOriginIfPoisoned((uptr)src + (end - d), (d + size) - end); in ReverseCopyOrigin() local
145 u32 o = GetOriginIfPoisoned((uptr)src, beg + 4 - d); in ReverseCopyOrigin() local
255 Origin o = Origin::CreateHeapOrigin(stack); in PoisonMemory() local
/freebsd/contrib/libarchive/libarchive/
H A Darchive_options.c40 const char *m, const char *o, const char *v, in _archive_set_option()
75 _archive_set_either_option(struct archive *a, const char *m, const char *o, const char *v, in _archive_set_either_option()
169 parse_option(const char **s, const char **m, const char **o, const char **v) in parse_option()
/freebsd/crypto/openssl/crypto/
H A Dthreads_pthread.c96 # define ATOMIC_LOAD_N(t, p, o) __atomic_load_n(p, o) argument
97 # define ATOMIC_STORE_N(t, p, v, o) __atomic_store_n(p, v, o) argument
98 # define ATOMIC_STORE(t, p, v, o) __atomic_store(p, v, o) argument
99 # define ATOMIC_ADD_FETCH(p, v, o) __atomic_add_fetch(p, v, o) argument
100 # define ATOMIC_SUB_FETCH(p, v, o) __atomic_sub_fetch(p, v, o) argument
118 # define ATOMIC_LOAD_N(t, p, o) fallback_atomic_load_n_##t(p) in IMPL_fallback_atomic_load_n() argument
133 # define ATOMIC_STORE_N(t, p, v, o) fallback_atomic_store_n_##t(p, v) argument
144 # define ATOMIC_STORE(t, p, v, o) fallback_atomic_store_##t(p, v) argument
164 # define ATOMIC_ADD_FETCH(p, v, o) fallback_atomic_add_fetch(p, v) argument
177 # define ATOMIC_SUB_FETCH(p, v, o) fallback_atomic_sub_fetch(p, v) argument
/freebsd/lib/libc/regex/
H A Dregexec.c105 #define INIT(o, n) ((o) = (unsigned long)1 << (n)) argument
106 #define INC(o) ((o) <<= 1) argument
107 #define ISSTATEIN(v, o) (((v) & (o)) != 0) argument
159 #define INIT(o, n) ((o) = (n)) argument
160 #define INC(o) ((o)++) argument
161 #define ISSTATEIN(v, o) ((v)[o]) argument
/freebsd/sys/arm/nvidia/tegra124/
H A Dtegra124_car.c64 #define MUX(_id, cname, plists, o, s, w) \ argument
77 #define DIV7_1(_id, cname, plist, o, s) \ argument
92 #define DIV(_id, cname, plist, o, s, w, f) \ argument
106 #define GATE_PLL(_id, cname, plist, o, s) \ argument
121 #define GATE(_id, cname, plist, o, s) \ argument
136 #define GATE_INV(_id, cname, plist, o, s) \ argument

12345678910>>...24