Home
last modified time | relevance | path

Searched defs:g (Results 1 – 25 of 882) sorted by relevance

12345678910>>...36

/netbsd-src/external/lgpl3/gmp/dist/tests/cxx/
H A Dt-prec.cc52 mpf_class g(1 / f, very_large_prec); in check_mpf() local
59 mpf_class g(0.0, very_large_prec); in check_mpf() local
67 mpf_class g(0.0, very_large_prec); in check_mpf() local
77 mpf_class g(-(-(-1 / f)), very_large_prec); in check_mpf() local
83 mpf_class f(3.0, small_prec), g(9.0, medium_prec); in check_mpf() local
91 mpf_class f(3.0, small_prec), g(9.0, medium_prec), h(15.0, large_prec); in check_mpf() local
100 mpf_class g(-(1 + f) / 3, very_large_prec); in check_mpf() local
107 mpf_class g(0.0, very_large_prec); in check_mpf() local
115 mpf_class g(0.0, very_large_prec); in check_mpf() local
124 mpf_class f(3.0, small_prec), g(9.0, medium_prec); in check_mpf() local
[all …]
/netbsd-src/external/mit/lua/dist/src/
H A Dlgc.c74 #define makewhite(g,x) \ argument
97 #define markvalue(g,o) { checkliveness(g->mainthread,o); \ argument
100 #define markkey(g, n) { if keyiswhite(n) reallymarkobject(g,gckey(n)); } argument
102 #define markobject(g,t) { if (iswhite(t)) reallymarkobject(g, obj2gco(t)); } argument
108 #define markobjectN(g,t) { if (t) markobject(g,t); } argument
188 static int iscleared (global_State *g, const GCObject *o) { in iscleared()
212 global_State *g = G(L); in luaC_barrier_() local
234 global_State *g = G(L); in luaC_barrierback_() local
247 global_State *g = G(L); in luaC_fix() local
262 global_State *g = G(L); in luaC_newobjdt() local
[all …]
H A Dlmem.c51 #define callfrealloc(g,block,os,ns) ((*g->frealloc)(g->ud, block, os, ns)) argument
62 #define cantryagain(g) (completestate(g) && !g->gcstopem) argument
73 static void *firsttry (global_State *g, void *block, size_t os, size_t ns) { in firsttry()
80 #define firsttry(g,block,os,ns) callfrealloc(g, block, os, ns) argument
155 global_State *g = G(L); in luaM_free_() local
168 global_State *g = G(L); in tryagain() local
182 global_State *g = G(L); in luaM_realloc_() local
209 global_State *g = G(L); in luaM_malloc_() local
H A Dlstate.c50 global_State g; member
93 void luaE_setdebt (global_State *g, l_mem debt) { in luaE_setdebt()
220 static void init_registry (lua_State *L, global_State *g) { in init_registry()
236 global_State *g = G(L); in f_luaopen() local
253 static void preinit_thread (lua_State *L, global_State *g) { in preinit_thread()
274 global_State *g = G(L); in close_state() local
291 global_State *g = G(L); in lua_newthread() local
367 global_State *g; in lua_newstate() local
/netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dtemplates.cc48 char g(char, const char, volatile char) in g() function
50 char g(R, char&, const char&, volatile char&) in g() function
52 char g(char*, const char*, volatile char*) in g() function
54 char g(S, char*&, const char*&, volatile char*&) in g() function
57 signed char g(T,signed char, const signed char, volatile signed char) in g() function
59 signed char g(T, R, signed char&, const signed char&, volatile signed char&) in g() function
61 signed char g(T, signed char*, const signed char*, volatile signed char*) in g() function
63 signed char g(T, S, signed char*&, const signed char*&, volatile signed char*&) in g() function
66 unsigned char g(unsigned char, const unsigned char, volatile unsigned char) in g() function
68 unsigned char g(R, unsigned char&, const unsigned char&, volatile unsigned char&) in g() function
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_globals.cc35 const Global *g; member
45 Global g; member
60 ALWAYS_INLINE void PoisonShadowForGlobal(const Global *g, u8 value) { in PoisonShadowForGlobal()
64 ALWAYS_INLINE void PoisonRedZones(const Global &g) { in PoisonRedZones()
79 static bool IsAddressNearGlobal(uptr addr, const __asan_global &g) { in IsAddressNearGlobal()
85 static void ReportGlobal(const Global &g, const char *prefix) { in ReportGlobal()
98 static u32 FindRegistrationSite(const Global *g) { in FindRegistrationSite()
115 const Global &g = *l->g; in GetGlobalsForAddress() local
137 static void CheckODRViolationViaIndicator(const Global *g) { in CheckODRViolationViaIndicator()
160 static void CheckODRViolationViaPoisoning(const Global *g) { in CheckODRViolationViaPoisoning()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_globals.cpp34 const Global *g; member
44 Global g; member
59 ALWAYS_INLINE void PoisonShadowForGlobal(const Global *g, u8 value) { in PoisonShadowForGlobal()
63 ALWAYS_INLINE void PoisonRedZones(const Global &g) { in PoisonRedZones()
78 static bool IsAddressNearGlobal(uptr addr, const __asan_global &g) { in IsAddressNearGlobal()
84 static void ReportGlobal(const Global &g, const char *prefix) { in ReportGlobal()
97 static u32 FindRegistrationSite(const Global *g) { in FindRegistrationSite()
114 const Global &g = *l->g; in GetGlobalsForAddress() local
137 static void CheckODRViolationViaIndicator(const Global *g) { in CheckODRViolationViaIndicator()
173 static inline bool UseODRIndicator(const Global *g) { in UseODRIndicator()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_globals.cc33 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()
77 static bool IsAddressNearGlobal(uptr addr, const __asan_global &g) { in IsAddressNearGlobal()
83 static void ReportGlobal(const Global &g, const char *prefix) { in ReportGlobal()
94 static u32 FindRegistrationSite(const Global *g) { in FindRegistrationSite()
111 const Global &g = *l->g; in GetGlobalsForAddress() local
137 static void CheckODRViolationViaIndicator(const Global *g) { in CheckODRViolationViaIndicator()
170 static inline bool UseODRIndicator(const Global *g) { in UseODRIndicator()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgraphds.cc29 dump_graph (FILE *f, struct graph *g) in dump_graph()
57 struct graph *g = XNEW (struct graph); in new_graph() local
70 add_edge (struct graph *g, int f, int t) in add_edge()
91 identify_vertices (struct graph *g, int v, int u) in identify_vertices()
173 dfs_fst_edge (struct graph *g, int v, bool forward, bitmap subgraph, in dfs_fst_edge()
204 graphds_dfs (struct graph *g, int *qs, int nq, vec<int> *qt, in graphds_dfs()
291 graphds_scc (struct graph *g, bitmap subgraph, in graphds_scc()
331 for_each_edge (struct graph *g, graphds_edge_callback callback, void *data) in for_each_edge()
344 free_graph (struct graph *g) in free_graph()
405 graphds_domtree (struct graph *g, int entry, in graphds_domtree()
H A Dddg.cc170 create_ddg_dep_from_intra_loop_link (ddg_ptr g, ddg_node_ptr src_node, in create_ddg_dep_from_intra_loop_link()
229 create_ddg_dep_no_link (ddg_ptr g, ddg_node_ptr from, ddg_node_ptr to, in create_ddg_dep_no_link()
267 add_cross_iteration_register_deps (ddg_ptr g, df_ref last_def) in add_cross_iteration_register_deps()
347 build_inter_loop_deps (ddg_ptr g) in build_inter_loop_deps()
389 add_intra_loop_mem_dep (ddg_ptr g, ddg_node_ptr from, ddg_node_ptr to) in add_intra_loop_mem_dep()
412 add_inter_loop_mem_dep (ddg_ptr g, ddg_node_ptr from, ddg_node_ptr to) in add_inter_loop_mem_dep()
440 build_intra_loop_deps (ddg_ptr g) in build_intra_loop_deps()
520 ddg_ptr g; in create_ddg() local
611 free_ddg (ddg_ptr g) in free_ddg()
662 print_ddg (FILE *file, ddg_ptr g) in print_ddg()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgraphds.c29 dump_graph (FILE *f, struct graph *g) in dump_graph()
57 struct graph *g = XNEW (struct graph); in new_graph() local
70 add_edge (struct graph *g, int f, int t) in add_edge()
91 identify_vertices (struct graph *g, int v, int u) in identify_vertices()
173 dfs_fst_edge (struct graph *g, int v, bool forward, bitmap subgraph, in dfs_fst_edge()
204 graphds_dfs (struct graph *g, int *qs, int nq, vec<int> *qt, in graphds_dfs()
291 graphds_scc (struct graph *g, bitmap subgraph, in graphds_scc()
331 for_each_edge (struct graph *g, graphds_edge_callback callback, void *data) in for_each_edge()
344 free_graph (struct graph *g) in free_graph()
405 graphds_domtree (struct graph *g, int entry, in graphds_domtree()
H A Dddg.c170 create_ddg_dep_from_intra_loop_link (ddg_ptr g, ddg_node_ptr src_node, in create_ddg_dep_from_intra_loop_link()
229 create_ddg_dep_no_link (ddg_ptr g, ddg_node_ptr from, ddg_node_ptr to, in create_ddg_dep_no_link()
267 add_cross_iteration_register_deps (ddg_ptr g, df_ref last_def) in add_cross_iteration_register_deps()
347 build_inter_loop_deps (ddg_ptr g) in build_inter_loop_deps()
389 add_intra_loop_mem_dep (ddg_ptr g, ddg_node_ptr from, ddg_node_ptr to) in add_intra_loop_mem_dep()
412 add_inter_loop_mem_dep (ddg_ptr g, ddg_node_ptr from, ddg_node_ptr to) in add_inter_loop_mem_dep()
440 build_intra_loop_deps (ddg_ptr g) in build_intra_loop_deps()
520 ddg_ptr g; in create_ddg() local
611 free_ddg (ddg_ptr g) in free_ddg()
662 print_ddg (FILE *file, ddg_ptr g) in print_ddg()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
H A Dguard.cc116 __test_and_acquire (__cxxabiv1::__guard *g) in __test_and_acquire()
132 __set_and_release (__cxxabiv1::__guard *g) in __set_and_release()
208 init_in_progress_flag(__guard* g) in init_in_progress_flag()
212 set_init_in_progress_flag(__guard* g, int v) in set_init_in_progress_flag()
229 acquire(__guard *g) in acquire()
243 int __cxa_guard_acquire (__guard *g) in __cxa_guard_acquire()
349 void __cxa_guard_abort (__guard *g) throw () in __cxa_guard_abort()
388 void __cxa_guard_release (__guard *g) throw () in __cxa_guard_release()
H A Deh_globals.cc77 __cxa_eh_globals* g = reinterpret_cast<__cxa_eh_globals*>(ptr); in eh_globals_dtor() local
114 __cxa_eh_globals* g; in __cxa_get_globals_fast() local
125 __cxa_eh_globals* g; in __cxa_get_globals() local
/netbsd-src/external/mit/isl/dist/
H A Disl_tarjan.c17 struct isl_tarjan_graph *isl_tarjan_graph_free(struct isl_tarjan_graph *g) in isl_tarjan_graph_free()
30 struct isl_tarjan_graph *g; in isl_tarjan_graph_alloc() local
62 static isl_stat isl_tarjan_components(struct isl_tarjan_graph *g, int i, in isl_tarjan_components()
123 struct isl_tarjan_graph *g = NULL; in isl_tarjan_graph_init() local
150 struct isl_tarjan_graph *g; in isl_tarjan_graph_component() local
H A Disl_factorization.c146 static int init_groups(struct isl_factor_groups *g, __isl_keep isl_mat *H) in init_groups()
183 static void update_group(struct isl_factor_groups *g, int k) in update_group()
196 static int update_group_i_with_row_j(struct isl_factor_groups *g, int i, int j, in update_group_i_with_row_j()
226 static int update_groups(struct isl_factor_groups *g, __isl_keep isl_mat *H) in update_groups()
250 static void clear_groups(struct isl_factor_groups *g) in clear_groups()
274 struct isl_factor_groups g = { 0 }; in isl_basic_set_factorizer() local
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
H A Dguard.cc116 __test_and_acquire (__cxxabiv1::__guard *g) in __test_and_acquire()
132 __set_and_release (__cxxabiv1::__guard *g) in __set_and_release()
208 init_in_progress_flag(__guard* g) in init_in_progress_flag()
212 set_init_in_progress_flag(__guard* g, int v) in set_init_in_progress_flag()
229 acquire(__guard *g) in acquire()
243 int __cxa_guard_acquire (__guard *g) in __cxa_guard_acquire()
366 void __cxa_guard_abort (__guard *g) noexcept in __cxa_guard_abort()
413 void __cxa_guard_release (__guard *g) noexcept in __cxa_guard_release()
/netbsd-src/external/bsd/libevent/dist/
H A Dbufferevent_ratelim.c150 struct timeval g; in ev_token_bucket_cfg_new() local
187 #define LOCK_GROUP(g) EVLOCK_LOCK((g)->lock, 0) argument
188 #define UNLOCK_GROUP(g) EVLOCK_UNLOCK((g)->lock, 0) argument
208 #define GROUP_SUSPENDED(g) \ in bufferevent_get_rlim_max_() argument
231 struct bufferevent_rate_limit_group *g = in bufferevent_get_rlim_max_() local
352 bev_group_suspend_reading_(struct bufferevent_rate_limit_group *g) in bev_group_suspend_reading_()
377 bev_group_suspend_writing_(struct bufferevent_rate_limit_group *g) in bev_group_suspend_writing_()
490 bev_group_unsuspend_reading_(struct bufferevent_rate_limit_group *g) in bev_group_unsuspend_reading_()
509 bev_group_unsuspend_writing_(struct bufferevent_rate_limit_group *g) in bev_group_unsuspend_writing_()
533 struct bufferevent_rate_limit_group *g = arg; in bev_group_refill_callback_() local
[all …]
/netbsd-src/external/mpl/dhcp/dist/omapip/
H A Dgeneric.c54 omapi_generic_object_t *g; in omapi_generic_set_value() local
179 omapi_generic_object_t *g; in omapi_generic_get_value() local
210 omapi_generic_object_t *g; in omapi_generic_destroy() local
250 omapi_object_t *g) in omapi_generic_stuff_values()
294 omapi_generic_object_t *g; in omapi_generic_clear_flags() local
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
H A Dsanitizer_bvgraph_test.cc33 void PrintGraph(const G &g) { in PrintGraph()
53 void checkSameAs(G *g) { in checkSameAs()
71 BVGraph<BV> g; in BasicTest() local
120 BVGraph<BV> g; in RemoveEdges() local
167 BVGraph<BV> g; in Test_isReachable() local
223 BVGraph<BV> g; in LongCycle() local
268 BVGraph<BV> g; in ShortestPath() local
307 BVGraph<BV> g; in RunAddEdgesTest() local
/netbsd-src/external/lgpl3/gmp/dist/mpz/
H A Dgcd.c37 mpz_gcd (mpz_ptr g, mpz_srcptr u, mpz_srcptr v) in mpz_gcd()
78 MPZ_NEWALLOC (g, 1)[0] = mpn_gcd_1 (vp, vsize, up[0]); in mpz_gcd() local
85 MPZ_NEWALLOC (g, 1)[0] = mpn_gcd_1 (up, usize, vp[0]); in mpz_gcd() local
/netbsd-src/sys/sys/
H A Dioccom.h69 #define _IO(g,n) _IOC(IOC_VOID, (g), (n), 0) argument
70 #define _IOR(g,n,t) _IOC(IOC_OUT, (g), (n), sizeof(t)) argument
71 #define _IOW(g,n,t) _IOC(IOC_IN, (g), (n), sizeof(t)) argument
73 #define _IOWR(g,n,t) _IOC(IOC_INOUT, (g), (n), sizeof(t)) argument
/netbsd-src/sys/crypto/arch/arm/
H A Darm_neon_imm.h41 #define V_N_U8(a,b,c,d,e,f,g,h) \ argument
43 #define VQ_N_U8(a,b,c,d,e,f,g,h, i,j,k,l,m,n,o,p) \ argument
48 #define V_N_U8(a,b,c,d,e,f,g,h) \ argument
50 #define VQ_N_U8(a,b,c,d,e,f,g,h, i,j,k,l,m,n,o,p) \ argument
55 #define V_N_U8(a,b,c,d,e,f,g,h) \ argument
57 #define VQ_N_U8(a,b,c,d,e,f,g,h, i,j,k,l,m,n,o,p) \ argument
64 #define V_N_U8(a,b,c,d,e,f,g,h) \ argument
66 #define VQ_N_U8(a,b,c,d,e,f,g,h, i,j,k,l,m,n,o,p) \ argument
71 #define V_N_U8(a,b,c,d,e,f,g,h) \ argument
73 #define VQ_N_U8(a,b,c,d,e,f,g,h, i,j,k,l,m,n,o,p) \ argument
/netbsd-src/crypto/external/bsd/openssl/dist/test/helpers/
H A Dpredefined_dhparams.c19 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
/netbsd-src/external/apache2/llvm/dist/llvm/utils/
H A Dcheck_ninja_deps.py61 def toposort(g): argument
91 def ancestors(g, translate = lambda x: x): argument

12345678910>>...36