Searched defs:GS (Results 1 - 25 of 30) sorted by relevance

12

/external/llvm/lib/Transforms/Utils/
H A DGlobalStatus.cpp47 static bool analyzeGlobalAux(const Value *V, GlobalStatus &GS, argument
52 GS.HasNonInstructionUser = true;
59 if (analyzeGlobalAux(CE, GS, PhiUsers))
62 if (!GS.HasMultipleAccessingFunctions) {
64 if (!GS.AccessingFunction)
65 GS.AccessingFunction = F;
66 else if (GS.AccessingFunction != F)
67 GS.HasMultipleAccessingFunctions = true;
70 GS.IsLoaded = true;
74 GS
172 analyzeGlobal(const Value *V, GlobalStatus &GS) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_urb.c40 #define GS 1 macro
68 * GS has the same requirement as CLIP, but it never handles tristrips,
112 /* Most minimal update, forces re-emit of URB fence packet after GS
144 brw->urb.nr_gs_entries = limits[GS].preferred_nr_entries;
173 brw->urb.nr_gs_entries = limits[GS].min_nr_entries;
199 printf("URB fence: %d ..VS.. %d ..GS.. %d ..CLP.. %d ..SF.. %d ..CS.. %d\n",
/external/llvm/include/llvm/Support/
H A DSolaris.h33 #undef GS macro
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_urb.c40 #define GS 1 macro
68 * GS has the same requirement as CLIP, but it never handles tristrips,
112 /* Most minimal update, forces re-emit of URB fence packet after GS
144 brw->urb.nr_gs_entries = limits[GS].preferred_nr_entries;
173 brw->urb.nr_gs_entries = limits[GS].min_nr_entries;
199 printf("URB fence: %d ..VS.. %d ..GS.. %d ..CLP.. %d ..SF.. %d ..CS.. %d\n",
/external/deqp/modules/gles31/functional/
H A Des31fShaderBuiltinConstantTests.cpp116 GS = (1<<glu::SHADERTYPE_GEOMETRY), enumerator in enum:deqp::gles31::Functional::__anon20309::__anon20310
120 SHADER_TYPES = VS|TC|TE|GS|FS|CS
H A Des31fShaderIntegerFunctionTests.cpp1152 GS = (1<<glu::SHADERTYPE_GEOMETRY), enumerator in enum:deqp::gles31::Functional::__anon20326
1156 ALL_SHADERS = VS|TC|TE|GS|FS|CS
/external/guava/guava/src/com/google/common/base/
H A DAscii.java335 * relationship shall be: FS is the most inclusive, then GS, then RS,
348 public static final byte GS = 29; field in class:Ascii
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dptrace-abi.h16 #define GS 10 macro
/external/libedit/src/
H A Dunvis.c203 #define GS(a) ((a) & 0xff) macro
209 st = GS(*astate);
/external/llvm/lib/LTO/
H A DLTOModule.cpp368 GlobalStatus GS; local
369 if (GlobalStatus::analyzeGlobal(GV, GS))
372 return !GS.IsCompared;
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttobjs.h317 TT_GraphicsState GS; member in struct:TT_SizeRec_
H A Dttinterp.h184 TT_GraphicsState GS; /* current graphics state */ member in struct:TT_ExecContextRec_
/external/freetype/src/truetype/
H A Dttobjs.h317 TT_GraphicsState GS; member in struct:TT_SizeRec_
H A Dttinterp.h184 TT_GraphicsState GS; /* current graphics state */ member in struct:TT_ExecContextRec_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
H A Dttobjs.h317 TT_GraphicsState GS; member in struct:TT_SizeRec_
H A Dttinterp.h184 TT_GraphicsState GS; /* current graphics state */ member in struct:TT_ExecContextRec_
/external/qemu-pc-bios/bochs/
H A Dbochs.h68 #undef GS macro
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DRegionDataConstants.java455 GS(new String[]{ enum constant in enum:RegionDataConstants.RegionDataEnum
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1102 const GlobalsSpaceRegion *GS = MRMgr.getGlobalsRegion(K); local
1103 SVal V = svalBuilder.conjureSymbolVal(/* SymbolTag = */ (const void*) GS, Ex, LCtx,
1107 B = B.removeBinding(GS)
1108 .addBinding(BindingKey::Make(GS, BindingKey::Default), V);
1113 Invalidated->push_back(GS);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp278 GlobalStatus GS; local
279 if (!GlobalStatus::analyzeGlobal(GV, GS) && !GS.IsCompared)
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp86 const GlobalStatus &GS);
1716 GlobalStatus GS;
1718 if (GlobalStatus::analyzeGlobal(GV, GS))
1721 if (!GS.IsCompared && !GV->hasUnnamedAddr()) {
1729 return ProcessInternalGlobal(GV, GVI, GS);
1736 const GlobalStatus &GS) {
1745 if (!GS.HasMultipleAccessingFunctions &&
1746 GS.AccessingFunction && !GS.HasNonInstructionUser &&
1748 GS
1734 ProcessInternalGlobal(GlobalVariable *GV, Module::global_iterator &GVI, const GlobalStatus &GS) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1996 llvm::Constant *GS = MakeGlobal(llvm::StructType::get(Int32Ty, arrayTy, local
1998 llvm::Constant *ptr = llvm::ConstantExpr::getPtrToInt(GS, IntPtrTy);
/external/clang/tools/libclang/
H A DCIndex.cpp1835 void VisitGotoStmt(const GotoStmt *GS);
2166 void EnqueueVisitor::VisitGotoStmt(const GotoStmt *GS) { argument
2167 WL.push_back(LabelRefVisit(GS->getLabel(), GS->getLabelLoc(), Parent));
/external/chromium_org/third_party/mesa/src/src/mesa/x86/
H A Dassyntax.h122 #define GS gs macro
184 #define GS %gs macro
861 #define W_GS GS
/external/mesa3d/src/mesa/x86/
H A Dassyntax.h122 #define GS gs macro
184 #define GS %gs macro
861 #define W_GS GS

Completed in 5983 milliseconds

12