/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DIE.cpp | 44 ID.AddInteger(unsigned(Form)); in Profile() 200 getDIE##T().EmitValue(AP, Form); \ in EmitValue() 212 return getDIE##T().SizeOf(AP, Form); in SizeOf() 242 void DIEInteger::EmitValue(const AsmPrinter *Asm, dwarf::Form Form) const { in EmitValue() 244 switch (Form) { in EmitValue() 279 unsigned DIEInteger::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const { in SizeOf() 280 switch (Form) { in SizeOf() 320 void DIEExpr::EmitValue(const AsmPrinter *AP, dwarf::Form Form) const { in EmitValue() 321 AP->OutStreamer->EmitValue(Expr, SizeOf(AP, Form)); in EmitValue() 326 unsigned DIEExpr::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const { in SizeOf() [all …]
|
D | DwarfUnit.h | 170 Optional<dwarf::Form> Form, uint64_t Integer); 172 void addUInt(DIEValueList &Block, dwarf::Form Form, uint64_t Integer); 176 Optional<dwarf::Form> Form, int64_t Integer); 178 void addSInt(DIELoc &Die, Optional<dwarf::Form> Form, int64_t Integer); 191 dwarf::Form Form, 194 void addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label);
|
D | DwarfUnit.cpp | 194 Optional<dwarf::Form> Form, uint64_t Integer) { in addUInt() argument 195 if (!Form) in addUInt() 196 Form = DIEInteger::BestForm(false, Integer); in addUInt() 197 Die.addValue(DIEValueAllocator, Attribute, *Form, DIEInteger(Integer)); in addUInt() 200 void DwarfUnit::addUInt(DIEValueList &Block, dwarf::Form Form, in addUInt() argument 202 addUInt(Block, (dwarf::Attribute)0, Form, Integer); in addUInt() 206 Optional<dwarf::Form> Form, int64_t Integer) { in addSInt() argument 207 if (!Form) in addSInt() 208 Form = DIEInteger::BestForm(true, Integer); in addSInt() 209 Die.addValue(DIEValueAllocator, Attribute, *Form, DIEInteger(Integer)); in addSInt() [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | DIE.h | 41 dwarf::Form Form; variable 44 DIEAbbrevData(dwarf::Attribute A, dwarf::Form F) : Attribute(A), Form(F) {} in DIEAbbrevData() 48 dwarf::Form getForm() const { return Form; } in getForm() 90 void AddAttribute(dwarf::Attribute Attribute, dwarf::Form Form) { in AddAttribute() argument 91 Data.push_back(DIEAbbrevData(Attribute, Form)); in AddAttribute() 117 static dwarf::Form BestForm(bool IsSigned, uint64_t Int) { in BestForm() 140 void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const; 141 unsigned SizeOf(const AsmPrinter *AP, dwarf::Form Form) const; 159 void EmitValue(const AsmPrinter *AP, dwarf::Form Form) const; 160 unsigned SizeOf(const AsmPrinter *AP, dwarf::Form Form) const; [all …]
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
D | DIE.h | 38 unsigned Form; variable 40 DIEAbbrevData(unsigned A, unsigned F) : Attribute(A), Form(F) {} in DIEAbbrevData() 44 unsigned getForm() const { return Form; } in getForm() 85 void AddAttribute(unsigned Attribute, unsigned Form) { in AddAttribute() argument 86 Data.push_back(DIEAbbrevData(Attribute, Form)); in AddAttribute() 91 void AddFirstAttribute(unsigned Attribute, unsigned Form) { in AddFirstAttribute() argument 92 Data.insert(Data.begin(), DIEAbbrevData(Attribute, Form)); in AddFirstAttribute() 161 void addValue(unsigned Attribute, unsigned Form, DIEValue *Value) { in addValue() argument 162 Abbrev.AddAttribute(Attribute, Form); in addValue() 221 virtual void EmitValue(AsmPrinter *AP, unsigned Form) const = 0; [all …]
|
D | DIE.cpp | 36 ID.AddInteger(Form); in Profile() 190 void DIEInteger::EmitValue(AsmPrinter *Asm, unsigned Form) const { in EmitValue() 192 switch (Form) { in EmitValue() 212 unsigned DIEInteger::SizeOf(AsmPrinter *AP, unsigned Form) const { in SizeOf() 213 switch (Form) { in SizeOf() 244 void DIEString::EmitValue(AsmPrinter *AP, unsigned Form) const { in EmitValue() 262 void DIELabel::EmitValue(AsmPrinter *AP, unsigned Form) const { in EmitValue() 263 AP->OutStreamer.EmitSymbolValue(Label, SizeOf(AP, Form), 0/*AddrSpace*/); in EmitValue() 268 unsigned DIELabel::SizeOf(AsmPrinter *AP, unsigned Form) const { in SizeOf() 269 if (Form == dwarf::DW_FORM_data4) return 4; in SizeOf() [all …]
|
D | DwarfCompileUnit.h | 145 void addUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer); 149 void addSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer); 153 void addString(DIE *Die, unsigned Attribute, unsigned Form, 158 void addLabel(DIE *Die, unsigned Attribute, unsigned Form, 163 void addDelta(DIE *Die, unsigned Attribute, unsigned Form, 168 void addDIEEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry); 172 void addBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block);
|
D | DwarfCompileUnit.cpp | 54 unsigned Form, uint64_t Integer) { in addUInt() argument 55 if (!Form) Form = DIEInteger::BestForm(false, Integer); in addUInt() 58 Die->addValue(Attribute, Form, Value); in addUInt() 64 unsigned Form, int64_t Integer) { in addSInt() argument 65 if (!Form) Form = DIEInteger::BestForm(true, Integer); in addSInt() 67 Die->addValue(Attribute, Form, Value); in addSInt() 72 void CompileUnit::addString(DIE *Die, unsigned Attribute, unsigned Form, in addString() argument 75 Die->addValue(Attribute, Form, Value); in addString() 80 void CompileUnit::addLabel(DIE *Die, unsigned Attribute, unsigned Form, in addLabel() argument 83 Die->addValue(Attribute, Form, Value); in addLabel() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | standardplural.h | 31 enum Form { enum 44 static const char *getKeyword(Form p); 50 static Form orOtherFromString(const char *keyword) { in orOtherFromString() 51 return static_cast<Form>(indexOrOtherIndexFromString(keyword)); in orOtherFromString() 58 static Form orOtherFromString(const UnicodeString &keyword) { in orOtherFromString() 59 return static_cast<Form>(indexOrOtherIndexFromString(keyword)); in orOtherFromString() 68 static Form fromString(const char *keyword, UErrorCode &errorCode) { in fromString() 69 return static_cast<Form>(indexFromString(keyword, errorCode)); in fromString() 78 static Form fromString(const UnicodeString &keyword, UErrorCode &errorCode) { in fromString() 79 return static_cast<Form>(indexFromString(keyword, errorCode)); in fromString()
|
D | number_patternmodifier.cpp | 41 void MutablePatternModifier::setNumberProperties(bool isNegative, StandardPlural::Form plural) { in setNumberProperties() 60 static const StandardPlural::Form STANDARD_PLURAL_VALUES[] = { in createImmutableAndChain() 61 StandardPlural::Form::ZERO, in createImmutableAndChain() 62 StandardPlural::Form::ONE, in createImmutableAndChain() 63 StandardPlural::Form::TWO, in createImmutableAndChain() 64 StandardPlural::Form::FEW, in createImmutableAndChain() 65 StandardPlural::Form::MANY, in createImmutableAndChain() 66 StandardPlural::Form::OTHER}; in createImmutableAndChain() 76 for (StandardPlural::Form plural : STANDARD_PLURAL_VALUES) { in createImmutableAndChain() 89 setNumberProperties(false, StandardPlural::Form::COUNT); in createImmutableAndChain() [all …]
|
D | number_longnames.cpp | 31 for (int32_t i = 0; i < StandardPlural::Form::COUNT; i++) { in PluralTableSink() 44 StandardPlural::Form plural = StandardPlural::fromString(key, status); in put() 88 for (int32_t i = 0; i < StandardPlural::Form::COUNT; i++) { in getCurrencyLongNameData() 99 StandardPlural::getKeyword(static_cast<StandardPlural::Form>(i)), in getCurrencyLongNameData() 119 UnicodeString simpleFormats[StandardPlural::Form::COUNT]; in forMeasureUnit() 132 UnicodeString simpleFormats[StandardPlural::Form::COUNT]; in forCurrencyLongNames() 141 for (int32_t i = 0; i < StandardPlural::Form::COUNT; i++) { in simpleFormatsToModifiers() 144 simpleFormat = simpleFormats[StandardPlural::Form::OTHER]; in simpleFormatsToModifiers()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFFormValue.cpp | 113 if (Form < makeArrayRef(DWARF4FormClasses).size() && in isFormClass() 114 DWARF4FormClasses[Form] == FC) in isFormClass() 117 switch (Form) { in isFormClass() 130 return (Form == DW_FORM_data4 || Form == DW_FORM_data8) && in isFormClass() 143 switch (Form) { in extractValue() 149 (Form == DW_FORM_addr) in extractValue() 211 Form = data.getULEB128(offset_ptr); in extractValue() 258 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu); in skipValue() 375 switch (Form) { in dump() 404 switch (Form) { in dump() [all …]
|
D | DWARFAbbreviationDeclaration.cpp | 47 uint16_t Form = Data.getULEB128(OffsetPtr); in extract() local 52 if (Attr == 0 && Form == 0) in extract() 54 AttributeSpecs.push_back(AttributeSpec(Attr, Form)); in extract() 80 const char *formString = FormEncodingString(Spec.Form); in dump() 84 OS << format("DW_FORM_Unknown_%x", Spec.Form); in dump()
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFAbbreviationDeclaration.h | 23 AttributeSpec(uint16_t Attr, uint16_t Form) : Attr(Attr), Form(Form) {} in AttributeSpec() 25 uint16_t Form; member 43 return idx < AttributeSpecs.size() ? AttributeSpecs[idx].Form : 0; in getFormByIndex()
|
D | DWARFFormValue.h | 51 uint16_t Form; // Form for this value. variable 55 DWARFFormValue(uint16_t Form = 0) : Form(Form) {} in Form() argument 56 uint16_t getForm() const { return Form; } in getForm()
|
D | DWARFAcceleratorTable.h | 33 typedef uint16_t Form; typedef 35 SmallVector<std::pair<AtomType, Form>, 3> Atoms;
|
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
D | X86RecognizableInstr.cpp | 212 Form = byteFromRec(Rec, "FormBits"); in RecognizableInstr() 366 if (Form == X86Local::Pseudo || in filter() 370 if (Form == X86Local::MRMInitReg) in filter() 621 switch (Form) { in emitInstructionSpecifier() 808 if (needsModRMForDecode(Form)) in emitDecodePath() 809 filter = new ModFilter(isRegFormat(Form)); in emitDecodePath() 816 switch (Form) { in emitDecodePath() 827 filter = new ExtendedFilter(true, Form - X86Local::MRM0r); in emitDecodePath() 837 filter = new ExtendedFilter(false, Form - X86Local::MRM0m); in emitDecodePath() 848 if (needsModRMForDecode(Form)) in emitDecodePath() [all …]
|
/external/swiftshader/third_party/LLVM/lib/DebugInfo/ |
D | DWARFFormValue.cpp | 91 switch (Form) { in extractValue() 147 Form = data.getULEB128(offset_ptr); in extractValue() 170 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu); in skipValue() 265 switch (Form) { in dump() 282 switch (Form) { in dump() 346 OS << format("DW_FORM(0x%4.4x)", Form); in dump() 367 switch (Form) { in getReference() 384 switch (Form) { in resolveCompileUnitReferences() 391 Form = DW_FORM_ref_addr; in resolveCompileUnitReferences()
|
D | DWARFAttribute.h | 19 uint16_t Form; variable 22 : Attribute(attr), Form(form) {} in DWARFAttribute() 25 uint16_t getForm() const { return Form; } in getForm()
|
D | DWARFFormValue.h | 44 uint16_t Form; // Form for this value. 48 DWARFFormValue(uint16_t form = 0) : Form(form) {} in Form() function 49 uint16_t getForm() const { return Form; } in getForm()
|
/external/eigen/ |
D | NOTICE | 19 means Source Code Form to which the initial Contributor has attached 20 the notice in Exhibit A, the Executable Form of such Source Code 21 Form, and Modifications of such Source Code Form, in each case 34 1.6. "Executable Form" 35 means any form of the work other than Source Code Form. 52 (a) any file in Source Code Form that results from an addition to, 56 (b) any new file in Source Code Form that contains any Covered 73 1.13. "Source Code Form" 160 3.1. Distribution of Source Form 162 All distribution of Covered Software in Source Code Form, including any [all …]
|
D | COPYING.MPL2 | 19 means Source Code Form to which the initial Contributor has attached 20 the notice in Exhibit A, the Executable Form of such Source Code 21 Form, and Modifications of such Source Code Form, in each case 34 1.6. "Executable Form" 35 means any form of the work other than Source Code Form. 52 (a) any file in Source Code Form that results from an addition to, 56 (b) any new file in Source Code Form that contains any Covered 73 1.13. "Source Code Form" 160 3.1. Distribution of Source Form 162 All distribution of Covered Software in Source Code Form, including any [all …]
|
/external/llvm/unittests/DebugInfo/DWARF/ |
D | DWARFFormValueTest.cpp | 36 bool isFormClass(uint16_t Form, DWARFFormValue::FormClass FC) { in isFormClass() argument 37 return DWARFFormValue(Form).isFormClass(FC); in isFormClass() 55 DWARFFormValue createDataXFormValue(uint16_t Form, RawTypeT Value) { in createDataXFormValue() argument 59 DWARFFormValue Result(Form); in createDataXFormValue()
|
/external/swiftshader/third_party/LLVM/lib/Target/Mips/ |
D | MipsCodeEmitter.cpp | 148 uint64_t Form = TSFlags & MipsII::FormMask; in getRelocation() local 149 if (Form == MipsII::FrmJ) in getRelocation() 151 if ((Form == MipsII::FrmI || Form == MipsII::FrmFI) in getRelocation() 154 if (Form == MipsII::FrmI && MI.getOpcode() == Mips::LUi) in getRelocation()
|
/external/icu/icu4c/source/test/intltest/ |
D | numbertest_patternmodifier.cpp | 34 mod.setNumberProperties(false, StandardPlural::Form::COUNT); in testBasic() 40 mod.setNumberProperties(true, StandardPlural::Form::COUNT); in testBasic() 53 mod.setNumberProperties(false, StandardPlural::Form::COUNT); in testBasic() 59 mod.setNumberProperties(true, StandardPlural::Form::COUNT); in testBasic()
|