Searched refs:GS (Results 1 - 25 of 83) sorted by relevance

1234

/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DGlobalStatus.cpp64 static bool analyzeGlobalAux(const Value *V, GlobalStatus &GS, argument
68 GS.StoredType = GlobalStatus::StoredOnce;
77 if (analyzeGlobalAux(CE, GS, VisitedUsers))
85 if (!GS.HasMultipleAccessingFunctions) {
87 if (!GS.AccessingFunction)
88 GS.AccessingFunction = F;
89 else if (GS.AccessingFunction != F)
90 GS.HasMultipleAccessingFunctions = true;
93 GS.IsLoaded = true;
97 GS
192 analyzeGlobal(const Value *V, GlobalStatus &GS) argument
[all...]
/freebsd-current/contrib/nvi/cl/
H A Dcl_main.c33 GS *__global_list; /* GLOBAL: List of screens. */
36 static void cl_func_std(GS *);
37 static CL_PRIVATE *cl_init(GS *);
38 static GS *gs_init(void);
40 static void sig_end(GS *);
52 GS *gp;
157 * Create and partially initialize the GS structure.
159 static GS *
162 GS *gp;
164 gp = calloc(1, sizeof(GS));
[all...]
H A Dcl_screen.c31 static int cl_ex_end(GS *);
34 static int cl_vi_end(GS *);
49 GS *gp;
128 * PUBLIC: int cl_quit(GS *);
131 cl_quit(GS *gp)
184 GS *gp;
380 cl_vi_end(GS *gp)
497 cl_ex_end(GS *gp)
/freebsd-current/contrib/ntp/include/
H A Dascii.h70 #define GS 29 macro
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/Solaris/sys/
H A Dregset.h22 #undef GS macro
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DGlobalStatus.h87 static bool analyzeGlobal(const Value *V, GlobalStatus &GS);
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumGlobals.cpp28 GlobalsStream &GS = cantFail(Session.getPDBFile().getPDBGlobalsStream()); local
30 for (uint32_t Off : GS.getGlobalsTable()) {
/freebsd-current/contrib/nvi/common/
H A Dcommon.h33 typedef struct _gs GS; typedef in typeref:struct:_gs
H A Dmem.h62 GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
80 GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
103 GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
119 GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
136 GS *L__gp = (sp) == NULL ? NULL : (sp)->gp; \
H A Dscreen.c31 * PUBLIC: int screen_init(GS *, SCR *, SCR **);
34 screen_init(GS *gp, SCR *orig, SCR **spp)
47 sp->gp = gp; /* All ref the GS structure. */
201 GS *gp;
H A Dkey.c103 GS *gp;
183 GS *gp;
361 GS *gp;
411 GS *gp;
535 GS *gp;
749 GS *gp;
893 GS *gp;
909 GS *gp;
H A Dscreen.h38 GS *gp; /* Pointer to global area. */
H A Dmain.c30 static void attach(GS *);
37 * PUBLIC: int editor(GS *, int, char *[]);
40 editor(GS *gp, int argc, char *argv[])
70 /* Structures shared by screens so stored in the GS structure. */
419 * PUBLIC: void v_end(GS *);
422 v_end(GS *gp)
553 attach(GS *gp)
/freebsd-current/sys/cddl/dev/dtrace/x86/
H A Dregset.h93 #define GS 18 macro
/freebsd-current/sys/contrib/libsodium/test/default/
H A Dwintest.bat33 SET CFLAGS=%CFLAGS% /GS /MDd /Od
37 SET CFLAGS=%CFLAGS% /GS /MTd /Od /DSODIUM_STATIC /DSODIUM_EXPORT=
/freebsd-current/contrib/nvi/vi/
H A Dvs_msg.c57 GS *gp;
159 GS *gp;
229 GS *gp;
394 GS *gp;
514 GS *gp;
638 GS *gp;
744 GS *gp;
780 GS *gp;
848 GS *gp;
867 GS *g
[all...]
H A Dvs_split.c29 static void vs_insert(SCR *sp, GS *gp);
44 GS *gp;
206 GS *gp;
294 vs_insert(SCR *sp, GS *gp)
335 GS *gp;
452 GS *gp;
612 GS *gp;
665 GS *gp;
703 GS *gp;
798 GS *g
[all...]
H A Dv_ex.c57 GS *gp;
323 GS *gp;
493 GS *gp;
622 GS *gp;
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DJumpDiagnostics.cpp96 void CheckGotoStmt(GotoStmt *GS);
661 if (GotoStmt *GS = dyn_cast<GotoStmt>(Jump)) {
663 if (GS->getLabel()->getStmt()) {
664 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(),
669 CheckGotoStmt(GS);
992 void JumpScopeChecker::CheckGotoStmt(GotoStmt *GS) { argument
993 if (GS->getLabel()->isMSAsmLabel()) {
994 S.Diag(GS
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DVarBypassDetector.cpp140 if (const GotoStmt *GS = dyn_cast<GotoStmt>(St)) {
141 if (const LabelStmt *LS = GS->getLabel()->getStmt())
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DTypeReferenceTracker.cpp81 GlobalsStream &GS = cantFail(File.pdb().getPDBGlobalsStream()); local
82 for (uint32_t PubSymOff : GS.getGlobalsTable()) {
/freebsd-current/contrib/nvi/ex/
H A Dex_screen.c99 GS *gp;
H A Dex_display.c123 GS *gp;
/freebsd-current/usr.bin/vi/
H A Dextern.h17 void cl_setname(GS *, char *);
21 int sig_init(GS *, SCR *);
24 int cl_quit(GS *);
27 int cl_term_end(GS *);
320 void cut_close(GS *);
367 int editor(GS *, int, char *[]);
368 void v_end(GS *);
380 void msg_close(GS *);
415 int screen_init(GS *, SCR *, SCR **);
429 void seq_close(GS *);
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86.h205 GS = 256,

Completed in 240 milliseconds

1234