Searched defs:Name (Results 76 - 100 of 702) sorted by last modified time

1234567891011>>

/external/mesa3d/src/gallium/include/pipe/
H A Dp_shader_tokens.h170 unsigned Name : 8; /**< one of TGSI_SEMANTIC_x */ member in struct:tgsi_declaration_semantic
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
H A Dglx_getproc.c40 const char *Name; member in struct:name_address_pair
190 for (i = 0; GLX_functions[i].Name; i++) {
191 if (strcmp(GLX_functions[i].Name, funcName) == 0)
/external/mesa3d/src/glx/
H A Dglxcmds.c2470 const char *Name; member in struct:name_address_pair
2618 for (i = 0; GLX_functions[i].Name; i++) {
2619 if (strcmp(GLX_functions[i].Name, funcName) == 0)
2630 * \param procName Name of a GL or GLX function.
2669 * \param procName Name of a GL or GLX function.
/external/mesa3d/src/mesa/drivers/osmesa/
H A Dosmesa.c1085 const char *Name; member in struct:name_function
1109 for (i = 0; functions[i].Name; i++) {
1110 if (strcmp(functions[i].Name, funcName) == 0)
/external/mesa3d/src/mesa/drivers/x11/
H A Dglxapi.c1224 const char *Name; member in struct:name_address_pair
1380 for (i = 0; GLX_functions[i].Name; i++) {
1383 if (strcmp(GLX_functions[i].Name, funcName+1) == 0)
1385 if (strcmp(GLX_functions[i].Name, funcName) == 0)
/external/mesa3d/src/mesa/main/
H A Dformats.c39 gl_format Name; member in struct:gl_format_info
83 MESA_FORMAT_NONE, /* Name */
92 MESA_FORMAT_RGBA8888, /* Name */
101 MESA_FORMAT_RGBA8888_REV, /* Name */
110 MESA_FORMAT_ARGB8888, /* Name */
119 MESA_FORMAT_ARGB8888_REV, /* Name */
128 MESA_FORMAT_RGBX8888, /* Name */
137 MESA_FORMAT_RGBX8888_REV, /* Name */
146 MESA_FORMAT_XRGB8888, /* Name */
155 MESA_FORMAT_XRGB8888_REV, /* Name */
[all...]
H A Dmtypes.h1239 GLuint Name; member in struct:gl_sampler_object
1267 GLuint Name; /**< the user-visible texture object ID */ member in struct:gl_texture_object
1510 GLuint Name; member in struct:gl_buffer_object
1573 /** Name of the array object as received from glGenVertexArrayAPPLE. */
1574 GLuint Name; member in struct:gl_array_object
1746 char *Name; member in struct:gl_transform_feedback_varying_info
1806 GLuint Name; /**< AKA the object ID */ member in struct:gl_transform_feedback_object
1840 /** The default xform-fb object (Name==0) */
2188 GLuint Name; /**< AKA the handle */ member in struct:gl_shader
2250 char *Name; member in struct:gl_uniform_buffer_variable
2260 char *Name; member in struct:gl_uniform_block
2287 GLuint Name; /**< aka handle or ID */ member in struct:gl_shader_program
2527 GLuint Name; /**< Fence name */ member in struct:gl_sync_object
2609 GLuint Name; member in struct:gl_renderbuffer
2673 GLuint Name; member in struct:gl_framebuffer
3236 GLuint Name; member in struct:gl_display_list
[all...]
/external/llvm/unittests/IR/
H A DMetadataTest.cpp141 const char *Name = "llvm.NMD1"; local
142 NamedMDNode *NMD = M.getOrInsertNamedMetadata(Name);
H A DPassManagerTest.cpp156 TestInvalidationFunctionPass(StringRef FunctionName) : Name(FunctionName) {}
159 return F->getName() == Name ? PreservedAnalyses::none()
165 StringRef Name; member in struct:__anon26504::TestInvalidationFunctionPass
/external/llvm/utils/FileCheck/
H A DFileCheck.cpp243 StringRef Name = MatchStr.substr(0, NameEnd); local
245 if (Name.empty()) {
246 SM.PrintMessage(SMLoc::getFromPointer(Name.data()), SourceMgr::DK_Error,
255 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
256 if (i == 0 && Name[i] == '@') {
258 SM.PrintMessage(SMLoc::getFromPointer(Name.data()),
266 if (Name[i] != '_' && !isalnum(Name[i]) &&
267 (!IsExpression || (Name[i] != '+' && Name[
[all...]
/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp176 std::string &Name) {
179 Name.clear();
215 Name = Filename;
485 errs().indent(ToolName.size()) << ": DLL Name : " << DLLName << '\n';
175 GetFileNameFromHandle(HANDLE FileHandle, std::string &Name) argument
/external/llvm/utils/PerfectShuffle/
H A DPerfectShuffle.cpp107 const char *Name; member in struct:Operator
112 : ShuffleMask(shufflemask), OpNum(opnum), Name(name), Cost(cost) {
124 const char *getName() const { return Name; }
490 vsldoi(const char *Name, unsigned Opc)
491 : Operator(MakeMask(N&7, (N+1)&7, (N+2)&7, (N+3)&7), Name, Opc) {
539 vext(const char *Name, unsigned Opc)
540 : Operator(MakeMask(N&7, (N+1)&7, (N+2)&7, (N+3)&7), Name, Opc) {
/external/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp173 /// Name - The full class name, suitable for use in an enum.
174 std::string Name; member in struct:__anon26561::ClassInfo
1001 Entry->Name = "MCK_" + getEnumNameForToken(Token);
1144 CI->Name = "MCK_Reg" + utostr(Index);
1168 // Name the register classes which correspond to a user defined RegisterClass.
1180 CI->Name = "MCK_" + RC.getName();
1193 // Name the register classes which correspond to singleton registers.
1202 CI->Name = "MCK_" + Rec->getName();
1238 CI->ClassName = (*it)->getValueAsString("Name");
1239 CI->Name
1665 StringRef Name = CGA.ResultOperands[AliasOpNo].getName(); local
1691 getConverterOperandID(const std::string &Name, SetVector<std::string> &Table, bool &IsNew) argument
[all...]
H A DAsmWriterEmitter.cpp703 StringRef Name; local
704 std::tie(Name, I) = parseName(++I, E);
705 assert(isOpMapped(Name) && "Unmapped operand!");
708 std::tie(OpIndex, PrintIndex) = getOpData(Name);
H A DCTagsEmitter.cpp36 Tag(const std::string &Name, const SMLoc Location) argument
37 : Id(&Name), Loc(Location) {}
H A DCodeGenInstruction.cpp133 unsigned CGIOperandList::getOperandNamed(StringRef Name) const {
135 if (hasOperandNamed(Name, OpIdx)) return OpIdx;
137 "' does not have an operand named '$" + Name + "'!");
143 bool CGIOperandList::hasOperandNamed(StringRef Name, unsigned &OpIdx) const { argument
144 assert(!Name.empty() && "Cannot search for operand with no name!");
146 if (OperandList[i].Name == Name) {
204 std::string Name = CStr.substr(wpos+1); local
205 wpos = Name.find_first_not_of(" \t");
208 Name
223 std::string Name = CStr.substr(start, pos - start); local
[all...]
H A DCodeGenInstruction.h69 /// Name - If this operand was assigned a symbolic name, this is it,
71 std::string Name; member in struct:llvm::CGIOperandList::OperandInfo
110 : Rec(R), Name(N), PrinterMethodName(PMN), EncoderMethodName(EMN),
162 unsigned getOperandNamed(StringRef Name) const;
167 bool hasOperandNamed(StringRef Name, unsigned &OpIdx) const;
304 std::string Name; member in struct:llvm::CodeGenInstAlias::ResultOperand
315 ResultOperand(std::string N, Record *r) : Name(N), R(r), Kind(K_Record) {}
323 StringRef getName() const { assert(isRecord()); return Name; }
H A DCodeGenIntrinsics.h28 std::string Name; // The name of the LLVM function "llvm.bswap.i32" member in struct:llvm::CodeGenIntrinsic
30 std::string GCCBuiltinName;// Name of the corresponding GCC builtin, or "".
31 std::string MSBuiltinName; // Name of the corresponding MS builtin, or "".
H A DCodeGenMapTable.cpp93 std::string Name; member in class:__anon26573::InstrMap
102 Name = MapRec->getName();
149 return Name;
H A DCodeGenRegisters.cpp35 Name = R->getName();
44 : TheDef(nullptr), Name(N), Namespace(Nspace), Size(-1), Offset(-1),
581 std::string Name; variable
587 if (i) Name += '_';
588 Name += Reg->getName();
597 Record *NewReg = new Record(Name, Def->getLoc(), Def->getRecords());
662 Name(R->getName()),
726 StringRef Name, Key Props)
729 Name(Name),
725 CodeGenRegisterClass(CodeGenRegBank &RegBank, StringRef Name, Key Props) argument
1015 createSubRegIndex(StringRef Name, StringRef Namespace) argument
1054 getOrCreateSubClass(const CodeGenRegisterClass *RC, const CodeGenRegister::Set *Members, StringRef Name) argument
[all...]
H A DCodeGenRegisters.h38 std::string Name; member in class:llvm::CodeGenSubRegIndex
54 const std::string &getName() const { return Name; }
252 std::string Name; member in class:llvm::CodeGenRegisterClass
288 const std::string &getName() const { return Name; }
391 CodeGenRegisterClass(CodeGenRegBank&, StringRef Name, Key Props);
432 std::string Name; member in struct:llvm::RegUnitSet
453 CodeGenSubRegIndex *createSubRegIndex(StringRef Name, StringRef NameSpace);
498 StringRef Name);
H A DCodeGenSchedule.h48 std::string Name; member in struct:llvm::CodeGenSchedRW
63 Name = Def->getName();
76 const std::string &Name)
77 : Index(Idx), Name(Name), TheDef(nullptr), IsRead(Read), IsAlias(false),
129 std::string Name; member in struct:llvm::CodeGenSchedClass
199 CodeGenProcModel(unsigned Idx, const std::string &Name, Record *MDef, argument
201 Index(Idx), ModelName(Name), ModelDef(MDef), ItinsDef(IDef) {}
75 CodeGenSchedRW(unsigned Idx, bool Read, const IdxVec &Seq, const std::string &Name) argument
H A DCodeGenTarget.cpp225 const CodeGenRegister *CodeGenTarget::getRegisterByName(StringRef Name) const {
227 StringMap<CodeGenRegister*>::const_iterator I = Regs.find(Name);
283 GetInstByName(const char *Name, argument
286 const Record *Rec = Records.getDef(Name);
291 PrintFatalError(Twine("Could not find '") + Name + "' instruction!");
466 Name = R->getValueAsString("LLVMName");
468 if (Name == "") {
470 Name = "llvm.";
473 Name += (EnumName[i] == '_') ? '.' : EnumName[i];
476 if (Name
[all...]
H A DDAGISelMatcher.h724 /// Name - The name of the node we're matching, for comment emission.
725 std::string Name; member in class:llvm::CheckComplexPatMatcher
734 Name(name), FirstResult(firstresult) {}
739 const std::string getName() const { return Name; }
H A DDAGISelMatcherGen.cpp123 /// If this is the first time a node with unique identifier Name has been
126 bool recordUniqueNode(std::string Name);
129 unsigned getNamedArgumentSlot(StringRef Name) { argument
130 unsigned VarMapEntry = VariableMap[Name];
448 bool MatcherGen::recordUniqueNode(std::string Name) { argument
449 unsigned &VarMapEntry = VariableMap[Name];
452 AddMatcher(new RecordMatcher("$" + Name, NextRecordedOperandNo));

Completed in 216 milliseconds

1234567891011>>