Home
last modified time | relevance | path

Searched refs:Form (Results 1 – 25 of 241) sorted by relevance

12345678910

/external/llvm/lib/CodeGen/AsmPrinter/
DDIE.cpp44 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 …]
DDwarfUnit.h170 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);
DDwarfUnit.cpp194 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/
DDIE.h41 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/
DDIE.h38 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 …]
DDIE.cpp36 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 …]
DDwarfCompileUnit.h145 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);
DDwarfCompileUnit.cpp54 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/
Dstandardplural.h31 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()
Dnumber_patternmodifier.cpp41 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 …]
Dnumber_longnames.cpp31 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/
DDWARFFormValue.cpp113 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 …]
DDWARFAbbreviationDeclaration.cpp47 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/
DDWARFAbbreviationDeclaration.h23 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()
DDWARFFormValue.h51 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()
DDWARFAcceleratorTable.h33 typedef uint16_t Form; typedef
35 SmallVector<std::pair<AtomType, Form>, 3> Atoms;
/external/swiftshader/third_party/LLVM/utils/TableGen/
DX86RecognizableInstr.cpp212 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/
DDWARFFormValue.cpp91 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()
DDWARFAttribute.h19 uint16_t Form; variable
22 : Attribute(attr), Form(form) {} in DWARFAttribute()
25 uint16_t getForm() const { return Form; } in getForm()
DDWARFFormValue.h44 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/
DNOTICE19 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 …]
DCOPYING.MPL219 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/
DDWARFFormValueTest.cpp36 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/
DMipsCodeEmitter.cpp148 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/
Dnumbertest_patternmodifier.cpp34 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()

12345678910