Home
last modified time | relevance | path

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

12345678910>>...30

/openbsd/gnu/usr.bin/binutils/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
102 int g(int, const int, volatile int) in g() function
104 int g(R, int&, const int&, volatile int&) in g() function
106 int g(int*, const int*, volatile int*) in g() function
129 long g(long, const long, volatile long) in g() function
220 class c g(c, const c, volatile c) in g() function
222 c g(char, c&, const c&, volatile c&) in g() function
224 c g(c*, const c*, volatile c*) in g() function
[all …]
/openbsd/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_globals.cpp34 const Global *g; member
44 Global g; member
63 ALWAYS_INLINE void PoisonRedZones(const Global &g) { in PoisonRedZones()
97 static u32 FindRegistrationSite(const Global *g) { in FindRegistrationSite()
114 const Global &g = *l->g; in GetGlobalsForAddress() local
190 static inline bool UseODRIndicator(const Global *g) { in UseODRIndicator()
197 static void RegisterGlobal(const Global *g) { in RegisterGlobal()
238 static void UnregisterGlobal(const Global *g) { in UnregisterGlobal()
266 const Global *g = &dyn_g.g; in StopInitOrderChecking() local
429 const Global *g = &dyn_g.g; in __asan_before_dynamic_init() local
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/f/
H A Dglobal.c106 ffeglobal g; in ffeglobal_new_() local
153 ffeglobal g; in ffeglobal_init_common() local
213 ffeglobal g; in ffeglobal_new_common() local
305 ffeglobal g; in ffeglobal_new_progunit_() local
453 ffeglobal g; in ffeglobal_pad_common() local
521 ffeglobal g = ffesymbol_global (s); in ffeglobal_proc_def_arg() local
1146 ffeglobal g; in ffeglobal_promoted() local
1168 ffeglobal g; in ffeglobal_ref_intrinsic() local
1252 ffeglobal g; in ffeglobal_ref_progunit_() local
1459 ffeglobal g; in ffeglobal_save_common() local
[all …]
H A Dglobal.h158 #define ffeglobal_common_init(g) ((g)->tick != 0) argument
159 #define ffeglobal_common_have_pad(g) ((g)->u.common.have_pad) argument
160 #define ffeglobal_common_have_size(g) ((g)->u.common.have_size) argument
161 #define ffeglobal_common_pad(g) ((g)->u.common.pad) argument
162 #define ffeglobal_common_size(g) ((g)->u.common.size) argument
163 #define ffeglobal_hook(g) ((g)->hook) argument
184 #define ffeglobal_set_hook(g,h) ((g)->hook = (h)) argument
189 #define ffeglobal_text(g) ffename_text((g)->n) argument
190 #define ffeglobal_type(g) ((g)->type) argument
/openbsd/gnu/gcc/libstdc++-v3/libsupc++/
H A Dguard.cc67 __test_and_acquire (__cxxabiv1::__guard *g) in __test_and_acquire()
78 __set_and_release (__cxxabiv1::__guard *g) in __set_and_release()
116 recursion_push (__guard* g) in recursion_push()
120 recursion_pop (__guard* g) in recursion_pop()
124 acquire (__guard *g) in acquire()
142 int __cxa_guard_acquire (__guard *g) in __cxa_guard_acquire()
182 void __cxa_guard_abort (__guard *g) in __cxa_guard_abort()
192 void __cxa_guard_release (__guard *g) in __cxa_guard_release()
H A Deh_globals.cc83 __cxa_eh_globals* g = reinterpret_cast<__cxa_eh_globals*>(ptr); in eh_globals_dtor() local
120 __cxa_eh_globals* g; in __cxa_get_globals_fast() local
131 __cxa_eh_globals* g; in __cxa_get_globals() local
/openbsd/gnu/gcc/gcc/
H A Dddg.c313 build_inter_loop_deps (ddg_ptr g, struct df *df) in build_inter_loop_deps()
373 build_intra_loop_deps (ddg_ptr g) in build_intra_loop_deps()
439 ddg_ptr g; in create_ddg() local
520 free_ddg (ddg_ptr g) in free_ddg()
569 print_ddg (FILE *file, ddg_ptr g) in print_ddg()
592 vcg_print_ddg (FILE *file, ddg_ptr g) in vcg_print_ddg()
694 create_scc (ddg_ptr g, sbitmap nodes) in create_scc()
741 add_backarc_to_ddg (ddg_ptr g, ddg_edge_ptr e) in add_backarc_to_ddg()
772 get_node_of_insn (ddg_ptr g, rtx insn) in get_node_of_insn()
834 order_sccs (ddg_all_sccs_ptr g) in order_sccs()
[all …]
H A Dcfgloopanal.c88 dump_graph (FILE *f, struct graph *g) in dump_graph()
116 struct graph *g = XNEW (struct graph); in new_graph() local
127 add_edge (struct graph *g, int f, int t, void *data) in add_edge()
147 dfs (struct graph *g, int *qs, int nq, int *qt, bool forward) in dfs()
208 check_irred (struct graph *g, struct edge *e) in check_irred()
227 for_each_edge (struct graph *g, in for_each_edge()
241 free_graph (struct graph *g) in free_graph()
275 struct graph *g; in mark_irreducible_loops() local
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/abi/
H A Dmangle13.C15 template <typename T> void g (S<&T::template f<int> >) {} in g() function
16 template <typename T> void g (S<&T::operator+ >) {} in g() function
17 template <typename T> void g (S<&T::operator int>) {} in g() function
18 template <typename T> void g (S<&T::template operator- <double> >) {} in g() function
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Darray-3.c8 struct g { int w; int x[]; } g; variable
H A Darray-4.c11 struct g { int w; int x[0]; }; argument
15 static struct g g = { 4, { 0, 1, 2, 3 } }; /* { dg-warning "(excess elements)|(near initialization)… variable
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_bvgraph_test.cpp32 void PrintGraph(const G &g) { in PrintGraph()
52 void checkSameAs(G *g) { in checkSameAs()
70 BVGraph<BV> g; in BasicTest() local
119 BVGraph<BV> g; in RemoveEdges() local
166 BVGraph<BV> g; in Test_isReachable() local
222 BVGraph<BV> g; in LongCycle() local
267 BVGraph<BV> g; in ShortestPath() local
306 BVGraph<BV> g; in RunAddEdgesTest() local
/openbsd/usr.sbin/mrouted/
H A Dprune.c92 struct listaddr *g; in grplst_mem() local
453 struct gtable *g; in add_table_entry() local
530 struct gtable *g; in reset_neighbor_state() local
616 struct gtable *g, *prev_g; in del_table_entry() local
734 struct gtable *g; in update_table_entry() local
796 struct gtable *g; in update_lclgrp() local
835 struct gtable *g; in delete_lclgrp() local
906 struct gtable *g; in accept_prune() local
1049 struct gtable *g; in chkgrp_graft() local
1112 struct gtable *g; in accept_graft() local
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dexplicit60.C4 template <class T> void g () in g() function
20 template <class U> void g () {} in g() function
22 template <class U> void g (int) { abort(); } in g() function
H A Dexplicit61.C4 template <class T> void g () in g() function
20 template <class U> void g () { abort(); } in g() function
22 template <class U> void g (int) {} in g() function
H A Ddynarray.C12 g(const unsigned n) in g() function
18 void g(unsigned const int) { } in g() function
/openbsd/usr.bin/tmux/
H A Dcolour.c30 colour_dist_sq(int R, int G, int B, int r, int g, int b) in colour_dist_sq()
58 colour_find_rgb(u_char r, u_char g, u_char b) in colour_find_rgb()
92 colour_join_rgb(u_char r, u_char g, u_char b) in colour_join_rgb()
101 colour_split_rgb(int c, u_char *r, u_char *g, u_char *b) in colour_split_rgb()
128 u_char r, g, b; in colour_tostring() local
192 u_char r, g, b; in colour_fromstring() local
972 u_int r, g, b; in colour_parseX11() local
/openbsd/sys/sys/
H A Dioccom.h62 #define _IO(g,n) _IOC(IOC_VOID, (g), (n), 0) 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
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dnet21.C12 virtual void g() { }; in g() function
26 void c::g() in g() function
49 void d::g() in g() function
/openbsd/sys/net80211/
H A Dieee80211_ra.c296 struct ieee80211_ra_goodput_stats *g = &rn->g[mcs]; in ieee80211_ra_best_mcs_in_rateset() local
313 struct ieee80211_ra_goodput_stats *g; in ieee80211_ra_probe_next_rateset() local
381 struct ieee80211_ra_goodput_stats *g = &rn->g[ni->ni_txmcs]; in ieee80211_ra_probe_clear() local
401 struct ieee80211_ra_goodput_stats *g = &rn->g[ni->ni_txmcs]; in ieee80211_ra_intra_mode_ra_finished() local
495 struct ieee80211_ra_goodput_stats *g = &rn->g[i]; in ieee80211_ra_best_rate() local
508 struct ieee80211_ra_goodput_stats *g = &rn->g[i]; in ieee80211_ra_best_rate() local
563 ieee80211_ra_probe_valid(struct ieee80211_ra_goodput_stats *g) in ieee80211_ra_probe_valid()
585 struct ieee80211_ra_goodput_stats *g; in ieee80211_ra_add_stats_ht() local
644 struct ieee80211_ra_goodput_stats *g = &rn->g[ni->ni_txmcs]; in ieee80211_ra_choose() local
H A Dieee80211_ra_vht.c286 struct ieee80211_ra_vht_goodput_stats *g = &rn->g[rs->idx][mcs]; in ieee80211_ra_vht_best_mcs_in_rateset() local
303 struct ieee80211_ra_vht_goodput_stats *g; in ieee80211_ra_vht_probe_next_rateset() local
366 ieee80211_ra_vht_probe_clear(struct ieee80211_ra_vht_goodput_stats *g) in ieee80211_ra_vht_probe_clear()
386 struct ieee80211_ra_vht_goodput_stats *g; in ieee80211_ra_vht_intra_mode_ra_finished() local
490 struct ieee80211_ra_vht_goodput_stats *g = &rn->g[i][j]; in ieee80211_ra_vht_best_rate() local
511 struct ieee80211_ra_vht_goodput_stats *g; in ieee80211_ra_vht_best_rate() local
563 ieee80211_ra_vht_probe_valid(struct ieee80211_ra_vht_goodput_stats *g) in ieee80211_ra_vht_probe_valid()
586 struct ieee80211_ra_vht_goodput_stats *g; in ieee80211_ra_vht_add_stats() local
648 struct ieee80211_ra_vht_goodput_stats *g; in ieee80211_ra_vht_choose() local
/openbsd/lib/libcurses/
H A Dnc_tparm.h58 #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
61 #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
62 #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
63 #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
71 #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
72 #define TPARM_7(a,b,c,d,e,f,g,h) TPARM_8(a,b,c,d,e,f,g,h,0) argument
73 #define TPARM_6(a,b,c,d,e,f,g) TPARM_7(a,b,c,d,e,f,g,0) argument
90 #define TIPARM_7(s,a,b,c,d,e,f,g) _nc_tiparm(7,s,a,b,c,d,e,f,g) argument
91 #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
92 #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
/openbsd/sys/scsi/
H A Dmpath.c156 struct mpath_group *g; in mpath_next_path() local
357 struct mpath_group *g = d->d_failover_iter; in mpath_failover_check() local
371 struct mpath_group *g = p->p_group; in mpath_path_status() local
396 struct mpath_group *g; in mpath_minphys() local
440 struct mpath_group *g; in mpath_path_attach() local
541 struct mpath_group *g = p->p_group; in mpath_path_detach() local
584 struct mpath_group *g; in mpath_bootdv() local
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dusing7.C11 void g() { in g() function
16 void g() { in g() function
/openbsd/gnu/lib/libstdc++/libstdc++/libsupc++/
H A Dguard.cc36 int __cxa_guard_acquire (__guard *g) in __cxa_guard_acquire()
42 void __cxa_guard_release (__guard *g) in __cxa_guard_release()

12345678910>>...30