Searched defs:form (Results 26 - 50 of 90) sorted by relevance

1234

/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm22x.java17 package com.android.dx.dex.code.form;
H A DForm23x.java17 package com.android.dx.dex.code.form;
H A DForm30t.java17 package com.android.dx.dex.code.form;
H A DForm31c.java17 package com.android.dx.dex.code.form;
H A DForm31i.java17 package com.android.dx.dex.code.form;
H A DForm31t.java17 package com.android.dx.dex.code.form;
H A DForm32s.java17 package com.android.dx.dex.code.form;
H A DForm32x.java17 package com.android.dx.dex.code.form;
H A DForm33x.java17 package com.android.dx.dex.code.form;
H A DForm41c.java17 package com.android.dx.dex.code.form;
H A DForm51l.java17 package com.android.dx.dex.code.form;
H A DForm52c.java17 package com.android.dx.dex.code.form;
H A DForm35c.java17 package com.android.dx.dex.code.form;
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAttribute.h19 DWARFAttribute(dw_attr_t attr, dw_form_t form) : argument
20 m_attr_form ( attr << 16 | form )
24 void set(dw_attr_t attr, dw_form_t form) { m_attr_form = (attr << 16) | form; } argument
26 void set_form(dw_form_t form) { m_attr_form = (m_attr_form & 0xffff0000u) | form; } argument
29 void get(dw_attr_t& attr, dw_form_t& form) const
33 form = (dw_form_t)attr_form;
41 uint32_t m_attr_form; // Upper 16 bits is attribute, lower 16 bits is form
H A DDWARFAbbreviationDeclaration.cpp53 dw_form_t form = data.GetULEB128(offset_ptr); local
55 if (attr && form)
56 m_attributes.push_back(DWARFAttribute(attr, form));
81 // *ostrm_ptr << " " << std::setw(29) << std::left << DW_AT_value_to_name(pos->attr()) << ' ' << DW_FORM_value_to_name(pos->form()) << std::endl;
106 dw_form_t form; local
111 attributes[i].get(attr, form);
119 if (DWARFFormValue::IsBlockForm(form))
120 m_attributes.push_back(DWARFAttribute(attr, form));
133 m_attributes.push_back(DWARFAttribute(attr, form));
156 dw_form_t form; local
[all...]
H A DDWARFFormValue.h47 DWARFFormValue(dw_form_t form = 0);
49 void SetForm(dw_form_t form) { m_form = form; } argument
67 static bool SkipValue(const dw_form_t form, const lldb_private::DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu);
68 // static bool TransferValue(dw_form_t form, const lldb_private::DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu, BinaryStreamBuf& out_buff);
70 // static bool PutUnsigned(dw_form_t form, dw_offset_t offset, uint64_t value, BinaryStreamBuf& out_buff, const DWARFCompileUnit* cu, bool fixup_cu_relative_refs);
71 static bool IsBlockForm(const dw_form_t form);
72 static bool IsDataForm(const dw_form_t form);
77 ValueType m_value; // Contains all data for the form
H A DDWARFDebugInfoEntry.cpp64 DWARFDebugInfoEntry::Attributes::Append(const DWARFCompileUnit *cu, dw_offset_t attr_die_offset, dw_attr_t attr, dw_form_t form) argument
66 Info info = { cu, attr_die_offset, attr, form };
155 register dw_form_t form; variable
158 form = abbrevDecl->GetFormByIndexUnchecked(i);
160 const uint8_t fixed_skip_size = fixed_form_sizes [form];
170 switch (form)
196 // 0 sized form
237 form = debug_info_data.GetULEB128 (&offset);
315 dw_form_t form;
318 abbrevDecl->GetAttrAndFormByIndexUnchecked(i, attr, form);
[all...]
/external/boringssl/src/crypto/ec/
H A Doct.c12 * 2. Redistributions in binary form must reproduce the above copyright
31 * 6. Redistributions of any form whatsoever must retain the following
78 point_conversion_form_t form,
86 if ((form != POINT_CONVERSION_COMPRESSED) &&
87 (form != POINT_CONVERSION_UNCOMPRESSED)) {
108 (form == POINT_CONVERSION_COMPRESSED) ? 1 + field_len : 1 + 2 * field_len;
136 if ((form == POINT_CONVERSION_COMPRESSED) &&
138 buf[0] = form + 1;
140 buf[0] = form;
150 if (form
76 ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, uint8_t *buf, size_t len, BN_CTX *ctx) argument
182 point_conversion_form_t form; local
297 EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, uint8_t *buf, size_t len, BN_CTX *ctx) argument
[all...]
/external/google-breakpad/src/common/dwarf/
H A Ddwarf2diehandler.cc9 // * Redistributions in binary form must reproduce the above
139 enum DwarfForm form,
144 current.handler_->ProcessAttributeUnsigned(attr, form, data);
149 enum DwarfForm form,
154 current.handler_->ProcessAttributeSigned(attr, form, data);
159 enum DwarfForm form,
164 current.handler_->ProcessAttributeReference(attr, form, data);
169 enum DwarfForm form,
175 current.handler_->ProcessAttributeBuffer(attr, form, data, len);
180 enum DwarfForm form,
137 ProcessAttributeUnsigned(uint64 offset, enum DwarfAttribute attr, enum DwarfForm form, uint64 data) argument
147 ProcessAttributeSigned(uint64 offset, enum DwarfAttribute attr, enum DwarfForm form, int64 data) argument
157 ProcessAttributeReference(uint64 offset, enum DwarfAttribute attr, enum DwarfForm form, uint64 data) argument
167 ProcessAttributeBuffer(uint64 offset, enum DwarfAttribute attr, enum DwarfForm form, const char* data, uint64 len) argument
178 ProcessAttributeString(uint64 offset, enum DwarfAttribute attr, enum DwarfForm form, const string& data) argument
188 ProcessAttributeSignature(uint64 offset, enum DwarfAttribute attr, enum DwarfForm form, uint64 signature) argument
[all...]
H A Ddwarf2diehandler.h11 // * Redistributions in binary form must reproduce the above
199 enum DwarfForm form,
202 enum DwarfForm form,
205 enum DwarfForm form,
208 enum DwarfForm form,
212 enum DwarfForm form,
215 enum DwarfForm form,
299 enum DwarfForm form,
303 enum DwarfForm form,
307 enum DwarfForm form,
198 ProcessAttributeUnsigned(enum DwarfAttribute attr, enum DwarfForm form, uint64 data) argument
201 ProcessAttributeSigned(enum DwarfAttribute attr, enum DwarfForm form, int64 data) argument
204 ProcessAttributeReference(enum DwarfAttribute attr, enum DwarfForm form, uint64 data) argument
207 ProcessAttributeBuffer(enum DwarfAttribute attr, enum DwarfForm form, const char* data, uint64 len) argument
211 ProcessAttributeString(enum DwarfAttribute attr, enum DwarfForm form, const string& data) argument
214 ProcessAttributeSignature(enum DwarfAttribute attr, enum DwarfForm form, uint64 signture) argument
[all...]
H A Ddwarf2reader_die_unittest.cc10 // * Redistributions in binary form must reproduce the above
81 enum DwarfForm form,
85 enum DwarfForm form,
89 enum DwarfForm form,
93 enum DwarfForm form,
98 enum DwarfForm form,
102 enum DwarfForm form,
233 // and form. The 'info' fixture member is left just after the abbrev
237 DwarfForm form) {
241 .Attribute(name, form)
235 StartSingleAttributeDIE(const DwarfHeaderParams &params, DwarfTag tag, DwarfAttribute name, DwarfForm form) argument
[all...]
H A Ddwarf2reader_test_common.h12 // * Redistributions in binary form must reproduce the above
128 // and whose form is |form|.
129 TestAbbrevTable &Attribute(DwarfAttribute name, DwarfForm form) { argument
131 ULEB128(static_cast<unsigned>(form));
H A Dfunctioninfo.cc9 // * Redistributions in binary form must reproduce the above
151 enum DwarfForm form,
163 enum DwarfForm form,
195 enum DwarfForm form,
149 ProcessAttributeString(uint64 offset, enum DwarfAttribute attr, enum DwarfForm form, const string &data) argument
161 ProcessAttributeUnsigned(uint64 offset, enum DwarfAttribute attr, enum DwarfForm form, uint64 data) argument
193 ProcessAttributeReference(uint64 offset, enum DwarfAttribute attr, enum DwarfForm form, uint64 data) argument
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DUnicodeNormalizer.java25 * Create a normalizer for a given form.
27 public UnicodeNormalizer(byte form, boolean fullData) { argument
28 this.form = form;
33 * Masks for the form selector
49 * Normalizes text according to the chosen form,
57 // then compose if the form requires.
61 if ((form & COMPOSITION_MASK) != 0) {
69 * Normalizes text according to the chosen form
82 * The current form
84 private byte form; field in class:UnicodeNormalizer
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
H A DMathContext.java45 * <li><code>form</code>:
46 * the form of any exponent that results from the operation
87 * Used as a setting to control the form of the result of a
89 * A zero result in plain form may have a decimal part of one or
101 * Used as a setting to control the form of the result of a
103 * A zero result in plain form may have a decimal part of one or
115 * Used as a setting to control the form of the result of a
117 * A zero result in plain form may have a decimal part of one or
248 * The form of results from an operation.
251 * determine the form o
259 int form; // values for this must fit in a byte field in class:MathContext
[all...]

Completed in 373 milliseconds

1234