/freebsd/contrib/lua/src/ |
H A D | lgc.c | 71 #define makewhite(g,x) \ argument 94 #define markvalue(g,o) { checkliveness(g->mainthread,o); \ argument 97 #define markkey(g, n) { if keyiswhite(n) reallymarkobject(g,gckey(n)); } argument 99 #define markobject(g,t) { if (iswhite(t)) reallymarkobject(g, obj2gco(t)); } argument 105 #define markobjectN(g,t) { if (t) markobject(g,t); } argument 185 static int iscleared (global_State *g, const GCObject *o) { in iscleared() 209 global_State *g = G(L); in luaC_barrier_() local 231 global_State *g = G(L); in luaC_barrierback_() local 244 global_State *g = G(L); in luaC_fix() local 259 global_State *g = G(L); in luaC_newobjdt() local [all …]
|
H A D | lmem.c | 47 #define callfrealloc(g,block,os,ns) ((*g->frealloc)(g->ud, block, os, ns)) argument 58 #define cantryagain(g) (completestate(g) && !g->gcstopem) argument 69 static void *firsttry (global_State *g, void *block, size_t os, size_t ns) { in firsttry() 76 #define firsttry(g,block,os,ns) callfrealloc(g, block, os, ns) argument 151 global_State *g = G(L); in luaM_free_() local 164 global_State *g = G(L); in tryagain() local 178 global_State *g = G(L); in luaM_realloc_() local 205 global_State *g = G(L); in luaM_malloc_() local
|
H A D | lstate.c | 46 global_State g; member 89 void luaE_setdebt (global_State *g, l_mem debt) { in luaE_setdebt() 216 static void init_registry (lua_State *L, global_State *g) { in init_registry() 232 global_State *g = G(L); in f_luaopen() local 249 static void preinit_thread (lua_State *L, global_State *g) { in preinit_thread() 270 global_State *g = G(L); in close_state() local 287 global_State *g = G(L); in lua_newthread() local 363 global_State *g; in lua_newstate() local
|
H A D | lgc.h | 42 #define issweepphase(g) \ argument 54 #define keepinvariant(g) ((g)->gcstate <= GCSatomic) argument 94 #define otherwhite(g) ((g)->currentwhite ^ WHITEBITS) argument 96 #define isdead(g,v) isdeadm(otherwhite(g), (v)->marked) argument 102 #define luaC_white(g) cast_byte((g)->currentwhite & WHITEBITS) argument 149 #define isdecGCmodegen(g) (g->gckind == KGC_GEN || g->lastatomic != 0) argument 158 #define gcrunning(g) ((g)->gcstp == 0) argument
|
H A D | ltests.c | 296 static int testobjref1 (global_State *g, GCObject *f, GCObject *t) { in testobjref1() 313 static void printobj (global_State *g, GCObject *o) { in printobj() 327 static int testobjref (global_State *g, GCObject *f, GCObject *t) { in testobjref() 340 static void checkobjref (global_State *g, GCObject *f, GCObject *t) { in checkobjref() 351 #define checkobjrefN(g,f,t) { if (t) checkobjref(g,f,obj2gco(t)); } argument 354 static void checkvalref (global_State *g, GCObject *f, const TValue *t) { in checkvalref() 359 static void checktable (global_State *g, Table *h) { in checktable() 379 static void checkudata (global_State *g, Udata *u) { in checkudata() 388 static void checkproto (global_State *g, Proto *f) { in checkproto() 405 static void checkCclosure (global_State *g, CClosure *cl) { in checkCclosure() [all …]
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lgc.c | 57 #define makewhite(g,x) \ argument 73 #define markvalue(g,o) { checkconsistency(o); \ argument 76 #define markobject(g,t) { if ((t) && iswhite(obj2gco(t))) \ argument 119 static int iscleared (global_State *g, const TValue *o) { in iscleared() 134 global_State *g = G(L); in luaC_barrier_() local 154 global_State *g = G(L); in luaC_barrierback_() local 171 global_State *g = G(L); in luaC_barrierproto_() local 188 void luaC_checkupvalcolor (global_State *g, UpVal *uv) { in luaC_checkupvalcolor() 212 global_State *g = G(L); in luaC_newobj() local 241 static void reallymarkobject (global_State *g, GCObject *o) { in reallymarkobject() [all …]
|
H A D | lstate.c | 68 global_State g; member 102 void luaE_setdebt (global_State *g, l_mem debt) { in luaE_setdebt() 161 static void init_registry (lua_State *L, global_State *g) { in init_registry() 180 global_State *g = G(L); in f_luaopen() local 200 static void preinit_state (lua_State *L, global_State *g) { in preinit_state() 221 global_State *g = G(L); in close_state() local 266 global_State *g; in lua_newstate() local
|
H A D | lgc.h | 47 #define issweepphase(g) \ argument 50 #define isgenerational(g) ((g)->gckind == KGC_GEN) argument 61 #define keepinvariant(g) (isgenerational(g) || g->gcstate <= GCSatomic) argument 68 #define keepinvariantout(g) \ argument 110 #define otherwhite(g) (g->currentwhite ^ WHITEBITS) argument 112 #define isdead(g,v) isdeadm(otherwhite(g), (v)->gch.marked) argument 119 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS) argument
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_globals.cpp | 34 const Global *g; member 43 Global g; member 58 ALWAYS_INLINE void PoisonShadowForGlobal(const Global *g, u8 value) { in PoisonShadowForGlobal() 62 ALWAYS_INLINE void PoisonRedZones(const Global &g) { in PoisonRedZones() 76 static bool IsAddressNearGlobal(uptr addr, const __asan_global &g) { in IsAddressNearGlobal() 82 static void ReportGlobal(const Global &g, const char *prefix) { in ReportGlobal() 101 static u32 FindRegistrationSite(const Global *g) { in FindRegistrationSite() 118 const Global &g = *l->g; in GetGlobalsForAddress() local 141 static void CheckODRViolationViaIndicator(const Global *g) { in CheckODRViolationViaIndicator() 164 static void CheckODRViolationViaPoisoning(const Global *g) { in CheckODRViolationViaPoisoning() [all …]
|
/freebsd/contrib/wpa/src/fst/ |
H A D | fst_group.h | 22 #define foreach_fst_group_iface(g, i) \ argument 32 static inline bool fst_group_has_ifaces(struct fst_group *g) in fst_group_has_ifaces() 37 static inline struct fst_iface * fst_group_first_iface(struct fst_group *g) in fst_group_first_iface() 42 static inline const char * fst_group_get_id(struct fst_group *g) in fst_group_get_id() 59 #define foreach_fst_group(g) \ argument
|
H A D | fst_group.c | 132 static struct wpabuf * fst_group_create_mb_ie(struct fst_group *g, in fst_group_create_mb_ie() 237 struct fst_iface * fst_group_get_iface_by_name(struct fst_group *g, in fst_group_get_iface_by_name() 253 u8 fst_group_assign_dialog_token(struct fst_group *g) in fst_group_assign_dialog_token() 262 u32 fst_group_assign_fsts_id(struct fst_group *g) in fst_group_assign_fsts_id() 439 struct fst_group *g; in fst_group_create() local 459 void fst_group_attach_iface(struct fst_group *g, struct fst_iface *i) in fst_group_attach_iface() 480 void fst_group_detach_iface(struct fst_group *g, struct fst_iface *i) in fst_group_detach_iface() 512 void fst_group_update_ie(struct fst_group *g) in fst_group_update_ie()
|
H A D | fst_ctrl_iface.c | 21 struct fst_group *g; in get_fst_group_by_id() local 85 struct fst_group *g; in fst_ctrl_iface_notify() local 251 struct fst_group *g; in session_add() local 276 struct fst_group *g; in session_remove() local 469 static void list_session_enum_cb(struct fst_group *g, struct fst_session *s, in list_session_enum_cb() 486 struct fst_group *g; in list_sessions() local 511 struct fst_group *g; in iface_peers() local 562 struct fst_group *g; in get_peer_mbies() local 598 struct fst_group *g; in list_ifaces() local 631 struct fst_group *g; in list_groups() local [all …]
|
/freebsd/contrib/ntp/sntp/libevent/ |
H A D | bufferevent_ratelim.c | 148 struct timeval g; in ev_token_bucket_cfg_new() local 185 #define LOCK_GROUP(g) EVLOCK_LOCK((g)->lock, 0) argument 186 #define UNLOCK_GROUP(g) EVLOCK_UNLOCK((g)->lock, 0) argument 206 #define GROUP_SUSPENDED(g) \ in bufferevent_get_rlim_max_() argument 229 struct bufferevent_rate_limit_group *g = in bufferevent_get_rlim_max_() local 350 bev_group_suspend_reading_(struct bufferevent_rate_limit_group *g) in bev_group_suspend_reading_() 375 bev_group_suspend_writing_(struct bufferevent_rate_limit_group *g) in bev_group_suspend_writing_() 488 bev_group_unsuspend_reading_(struct bufferevent_rate_limit_group *g) in bev_group_unsuspend_reading_() 507 bev_group_unsuspend_writing_(struct bufferevent_rate_limit_group *g) in bev_group_unsuspend_writing_() 531 struct bufferevent_rate_limit_group *g = arg; in bev_group_refill_callback_() local [all …]
|
/freebsd/contrib/libevent/ |
H A D | bufferevent_ratelim.c | 148 struct timeval g; in ev_token_bucket_cfg_new() local 185 #define LOCK_GROUP(g) EVLOCK_LOCK((g)->lock, 0) argument 186 #define UNLOCK_GROUP(g) EVLOCK_UNLOCK((g)->lock, 0) argument 206 #define GROUP_SUSPENDED(g) \ in bufferevent_get_rlim_max_() argument 229 struct bufferevent_rate_limit_group *g = in bufferevent_get_rlim_max_() local 350 bev_group_suspend_reading_(struct bufferevent_rate_limit_group *g) in bev_group_suspend_reading_() 375 bev_group_suspend_writing_(struct bufferevent_rate_limit_group *g) in bev_group_suspend_writing_() 488 bev_group_unsuspend_reading_(struct bufferevent_rate_limit_group *g) in bev_group_unsuspend_reading_() 507 bev_group_unsuspend_writing_(struct bufferevent_rate_limit_group *g) in bev_group_unsuspend_writing_() 531 struct bufferevent_rate_limit_group *g = arg; in bev_group_refill_callback_() local [all …]
|
/freebsd/sys/sys/ |
H A D | ioccom.h | 61 #define _IO(g,n) _IOC(IOC_VOID, (g), (n), 0) argument 62 #define _IOWINT(g,n) _IOC(IOC_VOID, (g), (n), sizeof(int)) argument 63 #define _IOR(g,n,t) _IOC(IOC_OUT, (g), (n), sizeof(t)) argument 64 #define _IOW(g,n,t) _IOC(IOC_IN, (g), (n), sizeof(t)) argument 66 #define _IOWR(g,n,t) _IOC(IOC_INOUT, (g), (n), sizeof(t)) argument
|
/freebsd/contrib/sendmail/libmilter/ |
H A D | engine.c | 843 st_optionneg(g) in st_optionneg() argument 1173 st_connectinfo(g) in st_connectinfo() argument 1295 st_eoh(g) in st_eoh() argument 1319 st_data(g) in st_data() argument 1344 st_helo(g) in st_helo() argument 1374 st_header(g) in st_header() argument 1419 st_sender(g) in st_sender() argument 1436 st_rcpt(g) in st_rcpt() argument 1453 st_unknown(g) in st_unknown() argument 1481 st_macros(g) in st_macros() argument [all …]
|
/freebsd/crypto/openssl/test/helpers/ |
H A D | predefined_dhparams.c | 19 BIGNUM *p, BIGNUM *g, BIGNUM *q) in get_dh_from_pg_bn() 54 BIGNUM *p = NULL, *g = NULL, *q = NULL; in get_dh_from_pg() local 154 BIGNUM *p = NULL, *g = NULL; in get_dh2048() local 175 BIGNUM *p = NULL, *g = NULL; in get_dh4096() local
|
/freebsd/crypto/openssl/crypto/srp/ |
H A D | srp_lib.c | 55 static BIGNUM *srp_Calc_k(const BIGNUM *N, const BIGNUM *g, in srp_Calc_k() 106 BIGNUM *SRP_Calc_B_ex(const BIGNUM *b, const BIGNUM *N, const BIGNUM *g, in SRP_Calc_B_ex() 138 BIGNUM *SRP_Calc_B(const BIGNUM *b, const BIGNUM *N, const BIGNUM *g, in SRP_Calc_B() 196 BIGNUM *SRP_Calc_A(const BIGNUM *a, const BIGNUM *N, const BIGNUM *g) in SRP_Calc_A() 212 BIGNUM *SRP_Calc_client_key_ex(const BIGNUM *N, const BIGNUM *B, const BIGNUM *g, in SRP_Calc_client_key_ex() 260 BIGNUM *SRP_Calc_client_key(const BIGNUM *N, const BIGNUM *B, const BIGNUM *g, in SRP_Calc_client_key() 309 char *SRP_check_known_gN_param(const BIGNUM *g, const BIGNUM *N) in SRP_check_known_gN_param()
|
/freebsd/contrib/ncurses/include/ |
H A D | nc_tparm.h | 56 #define TPARM_9(a,b,c,d,e,f,g,h,i,j) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f)… argument 59 #define TPARM_8(a,b,c,d,e,f,g,h,i) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f),T… argument 60 #define TPARM_7(a,b,c,d,e,f,g,h) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f),TPA… argument 61 #define TPARM_6(a,b,c,d,e,f,g) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f),TPARM… argument 69 #define TPARM_8(a,b,c,d,e,f,g,h,i) TPARM_9(a,b,c,d,e,f,g,h,i,0) argument 70 #define TPARM_7(a,b,c,d,e,f,g,h) TPARM_8(a,b,c,d,e,f,g,h,0) argument 71 #define TPARM_6(a,b,c,d,e,f,g) TPARM_7(a,b,c,d,e,f,g,0) argument 88 #define TIPARM_7(s,a,b,c,d,e,f,g) _nc_tiparm(7,s,a,b,c,d,e,f,g) argument 89 #define TIPARM_8(s,a,b,c,d,e,f,g,h) _nc_tiparm(8,s,a,b,c,d,e,f,g,h) argument 90 #define TIPARM_9(s,a,b,c,d,e,f,g,h,i) _nc_tiparm(9,s,a,b,c,d,e,f,g,h,i) argument
|
/freebsd/sys/compat/linux/ |
H A D | linux_dtrace.h | 62 #define _LIN_SDT_PROBE_DEFINE3(a, b, c, d, e, f, g) SDT_PROBE_DEFINE3(a, \ argument 66 #define _LIN_SDT_PROBE_DEFINE4(a, b, c, d, e, f, g, h) SDT_PROBE_DEFINE4(a, \ argument 68 #define LIN_SDT_PROBE_DEFINE4(a, b, c, d, e, f, g) _LIN_SDT_PROBE_DEFINE4(\ argument 70 #define _LIN_SDT_PROBE_DEFINE5(a, b, c, d, e, f, g, h, i) \ argument 72 #define LIN_SDT_PROBE_DEFINE5(a, b, c, d, e, f, g, h) _LIN_SDT_PROBE_DEFINE5(\ argument 83 #define LIN_SDT_PROBE4(a, b, c, d, e, f, g) SDT_PROBE4(LINUX_DTRACE, a, b, \ argument 85 #define _LIN_SDT_PROBE5(a, b, c, d, e, f, g, h, i) SDT_PROBE5(a, b, c, d, \ argument 87 #define LIN_SDT_PROBE5(a, b, c, d, e, f, g, h) _LIN_SDT_PROBE5(LINUX_DTRACE, \ argument
|
/freebsd/tests/sys/ses/ |
H A D | common.h | 32 glob_t g; in for_each_ses_dev() local 60 glob_t g; in has_ses() local
|
/freebsd/contrib/bearssl/src/hash/ |
H A D | multihash.c | 95 gen_hash_context g; in br_multihash_init() local 133 gen_hash_context g; in br_multihash_update() local 154 gen_hash_context g; in br_multihash_out() local
|
/freebsd/lib/libc/stdio/ |
H A D | findfp.c | 93 struct glue *g; in moreglue() local 119 struct glue *g; in __sfp() local 172 struct glue *g; in f_prealloc() local
|
/freebsd/sys/rpc/ |
H A D | svc.c | 91 int g; in svcpool_create() local 190 int g; in svcpool_cleanup() local 227 int g; in svcpool_destroy() local 252 int g; in svcpool_close() local 275 int threads, error, g; in svcpool_threads_sysctl() local 294 int newminthreads, error, g; in svcpool_minthread_sysctl() local 320 int newmaxthreads, error, g; in svcpool_maxthread_sysctl() local 347 int g; in xprt_register() local 1112 int g; in svc_assign_waiting_sockets() local 1377 int g, i; in svc_run() local [all …]
|
/freebsd/crypto/openssh/ |
H A D | sshbuf-getput-crypto.c | 60 get_ec(const u_char *d, size_t len, EC_POINT *v, const EC_GROUP *g) in get_ec() 74 sshbuf_get_ec(struct sshbuf *buf, EC_POINT *v, const EC_GROUP *g) in sshbuf_get_ec() 154 sshbuf_put_ec(struct sshbuf *buf, const EC_POINT *v, const EC_GROUP *g) in sshbuf_put_ec()
|