Home
last modified time | relevance | path

Searched refs:field (Results 76 - 100 of 1822) sorted by relevance

12345678910>>...73

/third_party/rust/crates/memoffset/src/
H A Draw_field.rs43 /// Prevents complilation if the specified field name is not a part of the
61 ($type:path, $field:tt) => {
62 // Make sure the field actually exists. This line ensures that a
63 // compile-time error is generated if $field is accessed through a
66 let $type { $field: _, .. };
73 ($type:path, $field:tt) => {
74 // Make sure the field actually exists. This line ensures that a
75 // compile-time error is generated if $field is accessed through a
77 let $type { $field: _, .. };
94 ($type:ty, $field
[all...]
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
H A Dlist.h138 #define list_entry(ptr, type, field) container_of(ptr, type, field)
164 #define list_for_each_entry(p, h, field) \
165 for (p = list_entry((h)->next, typeof(*p), field); &(p)->field != (h); \
166 p = list_entry((p)->field.next, typeof(*p), field))
168 #define list_for_each_entry_safe(p, n, h, field) \
169 for (p = list_entry((h)->next, typeof(*p), field), \
170 n = list_entry((p)->field
[all...]
/third_party/mesa3d/src/compiler/isaspec/
H A Dencode.py44 # ... encode field A ...
45 # ... encode field B ...
47 # // Third level - each display field can be potentially resolved
49 # // an if/else ladder for an individual display field
51 # ... encode field C ...
53 # ... encode field C ...
62 # Represents a concrete field, ie. a field can be overriden
63 # by an override, so the exact choice to encode a given field
66 def __init__(self, field, cas
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DFormattedValueFieldPositionIteratorImpl.java28 public final Format.Field field; field in FormattedValueFieldPositionIteratorImpl.FieldWithValue
31 public FieldWithValue(Format.Field field, int value) { in FieldWithValue() argument
32 super(field.toString()); in FieldWithValue()
33 this.field = field; in FieldWithValue()
43 Format.Field field = fpos.getFieldAttribute(); in nextPosition()
45 if (field instanceof FieldWithValue) { in nextPosition()
46 value = ((FieldWithValue) field).value; in nextPosition()
47 field = ((FieldWithValue) field) in nextPosition()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DFormattedValueFieldPositionIteratorImpl.java30 public final Format.Field field; field in FormattedValueFieldPositionIteratorImpl.FieldWithValue
33 public FieldWithValue(Format.Field field, int value) { in FieldWithValue() argument
34 super(field.toString()); in FieldWithValue()
35 this.field = field; in FieldWithValue()
45 Format.Field field = fpos.getFieldAttribute(); in nextPosition()
47 if (field instanceof FieldWithValue) { in nextPosition()
48 value = ((FieldWithValue) field).value; in nextPosition()
49 field = ((FieldWithValue) field) in nextPosition()
[all...]
/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_message_builder.cc80 if (IsRealOneof(descriptor_->field(i))) { in MessageBuilderGenerator()
81 oneofs_.insert(descriptor_->field(i)->containing_oneof()); in MessageBuilderGenerator()
154 field_generators_.get(descriptor_->field(i)).GetNumBitsForBuilder(); in Generate()
164 field_generators_.get(descriptor_->field(i)) in Generate()
211 const FieldDescriptor* field = descriptor_->field(i); in GenerateDescriptorMethods() local
212 if (GetJavaType(field) == JAVATYPE_MESSAGE && in GenerateDescriptorMethods()
213 IsMapEntry(field->message_type())) { in GenerateDescriptorMethods()
214 map_fields.push_back(field); in GenerateDescriptorMethods()
226 const FieldDescriptor* field in GenerateDescriptorMethods() local
251 const FieldDescriptor* field = map_fields[i]; GenerateDescriptorMethods() local
396 const ImmutableFieldGenerator& field = GenerateCommonBuilderMethods() local
552 const FieldDescriptor* field = oneof->field(j); GenerateCommonBuilderMethods() local
627 const FieldDescriptor* field = descriptor_->field(i); GenerateIsInitialized() local
641 const FieldDescriptor* field = descriptor_->field(i); GenerateIsInitialized() local
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dunknown_field_set_unittest.cc74 const FieldDescriptor* field = descriptor_->FindFieldByName(name); in GetField() local
75 if (field == NULL) return NULL; in GetField()
77 if (unknown_fields_->field(i).number() == field->number()) { in GetField()
78 return &unknown_fields_->field(i); in GetField()
85 // numbers as all_fields_data_ except that each field is some other wire
92 const UnknownField& unknown_field = unknown_fields_->field(i); in GetBizarroData()
128 if (!descriptor_->field(i)->containing_oneof()) { in TEST_F()
135 unknown_tags.insert(unknown_fields_->field(i).number()); in TEST_F()
147 const UnknownField* field in TEST_F() local
155 const UnknownField* field = GetField("optional_fixed32"); TEST_F() local
163 const UnknownField* field = GetField("optional_fixed64"); TEST_F() local
171 const UnknownField* field = GetField("optional_string"); TEST_F() local
179 const UnknownField* field = GetField("optionalgroup"); TEST_F() local
[all...]
H A Dtext_format.cc129 const FieldDescriptor* field, TextFormat::ParseLocation location) { in RecordLocation()
130 locations_[field].push_back(location); in RecordLocation()
134 const FieldDescriptor* field) { in CreateNested()
136 auto& vec = nested_[field]; in CreateNested()
141 void CheckFieldIndex(const FieldDescriptor* field, int index) { in CheckFieldIndex() argument
142 if (field == nullptr) { in CheckFieldIndex()
146 if (field->is_repeated() && index == -1) { in CheckFieldIndex()
147 GOOGLE_LOG(DFATAL) << "Index must be in range of repeated field values. " in CheckFieldIndex()
148 << "Field: " << field->name(); in CheckFieldIndex()
149 } else if (!field in CheckFieldIndex()
128 RecordLocation( const FieldDescriptor* field, TextFormat::ParseLocation location) RecordLocation() argument
133 CreateNested( const FieldDescriptor* field) CreateNested() argument
155 GetLocation( const FieldDescriptor* field, int index) const GetLocation() argument
171 GetTreeForNested( const FieldDescriptor* field, int index) const GetTreeForNested() argument
296 ParseField(const FieldDescriptor* field, Message* output) ParseField() argument
387 const FieldDescriptor* field = nullptr; ConsumeField() local
637 ConsumeFieldMessage(Message* message, const Reflection* reflection, const FieldDescriptor* field) ConsumeFieldMessage() argument
694 ConsumeFieldValue(Message* message, const Reflection* reflection, const FieldDescriptor* field) ConsumeFieldValue() argument
1477 ParseFieldValueFromString(const std::string& input, const FieldDescriptor* field, Message* output) ParseFieldValueFromString() argument
1659 PrintFieldName( const Message& message, int field_index, int field_count, const Reflection* reflection, const FieldDescriptor* field, BaseTextGenerator* generator) const PrintFieldName() argument
1665 PrintFieldName( const Message& message, const Reflection* reflection, const FieldDescriptor* field, BaseTextGenerator* generator) const PrintFieldName() argument
1837 RegisterFieldValuePrinter( const FieldDescriptor* field, const FieldValuePrinter* printer) RegisterFieldValuePrinter() argument
1854 RegisterFieldValuePrinter( const FieldDescriptor* field, const FastFieldValuePrinter* printer) RegisterFieldValuePrinter() argument
2043 PrintFieldValueToString(const Message& message, const FieldDescriptor* field, int index, std::string* output) const PrintFieldValueToString() argument
2119 SortMap( const Message& message, const Reflection* reflection, const FieldDescriptor* field, MessageFactory* factory, std::vector<const Message*>* sorted_map_field) SortMap() argument
2230 PrintField(const Message& message, const Reflection* reflection, const FieldDescriptor* field, TextGenerator* generator) const PrintField() argument
2300 PrintShortRepeatedField( const Message& message, const Reflection* reflection, const FieldDescriptor* field, TextGenerator* generator) const PrintShortRepeatedField() argument
2319 PrintFieldName(const Message& message, int field_index, int field_count, const Reflection* reflection, const FieldDescriptor* field, TextGenerator* generator) const PrintFieldName() argument
2336 PrintFieldValue(const Message& message, const Reflection* reflection, const FieldDescriptor* field, int index, TextGenerator* generator) const PrintFieldValue() argument
2439 PrintFieldValueToString( const Message& message, const FieldDescriptor* field, int index, std::string* output) PrintFieldValueToString() argument
2445 ParseFieldValueFromString( const std::string& input, const FieldDescriptor* field, Message* message) ParseFieldValueFromString() argument
2454 const UnknownField& field = unknown_fields.field(i); PrintUnknownFields() local
[all...]
/third_party/rust/crates/libc/libc-test/
H A Dbuild.rs348 cfg.skip_field(move |struct_, field| { in test_apple()
349 match (struct_, field) { in test_apple()
359 cfg.skip_field_type(move |struct_, field| { in test_apple()
360 match (struct_, field) { in test_apple()
390 cfg.field_name(move |struct_, field| { in test_apple()
391 match field { in test_apple()
556 cfg.field_name(move |struct_, field| match field { in test_openbsd()
564 cfg.skip_field_type(move |struct_, field| { in test_openbsd()
566 struct_ == "siginfo_t" && field in test_openbsd()
[all...]
/third_party/mesa3d/src/imagination/csbgen/
H A Dgen_pack_header.py301 # We don't support conditions and field having the same name.
324 for field in (f for f in self.fields if f.default is not None):
325 if field.is_builtin_type:
326 default_fields.append(" .%-35s = %6d" % (field.name, field.default))
328 if not root.is_known_enum(field.type):
332 % (field.name, field.type)
335 enum = root.get_enum(field.type)
338 value = enum.get_value(field
[all...]
/third_party/protobuf/benchmarks/util/
H A Ddata_proto2_to_proto3_util.h23 const FieldDescriptor* field = set_fields[i]; in StripMessage() local
24 if (ShouldBeClear(field)) { in StripMessage()
25 reflection->ClearField(message, field); in StripMessage()
28 if (field->type() == FieldDescriptor::TYPE_MESSAGE) { in StripMessage()
29 if (field->is_repeated()) { in StripMessage()
30 for (int j = 0; j < reflection->FieldSize(*message, field); j++) { in StripMessage()
31 StripMessage(reflection->MutableRepeatedMessage(message, field, j)); in StripMessage()
34 StripMessage(reflection->MutableMessage(message, field)); in StripMessage()
42 virtual bool ShouldBeClear(const FieldDescriptor *field) = 0;
47 virtual bool ShouldBeClear(const FieldDescriptor *field) { in ShouldBeClear() argument
54 ShouldBeClear(const FieldDescriptor *field) ShouldBeClear() argument
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DGeneratedMessage.java67 * field builders for nested messages until they are requested. By disabling
68 * this optimization, existing tests can be reused to test the field builders.
91 * field builders for nested messages until they are requested. By disabling
92 * this optimization, existing tests can be reused to test the field builders.
126 FieldDescriptor field = fields.get(i); in getAllFieldsMutable()
127 final OneofDescriptor oneofDescriptor = field.getContainingOneof(); in getAllFieldsMutable()
130 * If the field is part of a Oneof, then at maximum one field in the Oneof is set in getAllFieldsMutable()
137 // If no field is set in the Oneof, skip all the fields in the Oneof in getAllFieldsMutable()
140 // Get the pointer to the only field whic in getAllFieldsMutable()
227 hasField(final FieldDescriptor field) hasField() argument
232 getField(final FieldDescriptor field) getField() argument
244 getFieldRaw(final FieldDescriptor field) getFieldRaw() argument
249 getRepeatedFieldCount(final FieldDescriptor field) getRepeatedFieldCount() argument
255 getRepeatedField(final FieldDescriptor field, final int index) getRepeatedField() argument
517 newBuilderForField(final FieldDescriptor field) newBuilderForField() argument
522 getFieldBuilder(final FieldDescriptor field) getFieldBuilder() argument
527 getRepeatedFieldBuilder(final FieldDescriptor field, int index) getRepeatedFieldBuilder() argument
543 hasField(final FieldDescriptor field) hasField() argument
548 getField(final FieldDescriptor field) getField() argument
560 setField(final FieldDescriptor field, final Object value) setField() argument
566 clearField(final FieldDescriptor field) clearField() argument
578 getRepeatedFieldCount(final FieldDescriptor field) getRepeatedFieldCount() argument
584 getRepeatedField(final FieldDescriptor field, final int index) getRepeatedField() argument
590 setRepeatedField( final FieldDescriptor field, final int index, final Object value) setRepeatedField() argument
598 addRepeatedField(final FieldDescriptor field, final Object value) addRepeatedField() argument
1085 hasField(final FieldDescriptor field) hasField() argument
1095 getField(final FieldDescriptor field) getField() argument
1118 getRepeatedFieldCount(final FieldDescriptor field) getRepeatedFieldCount() argument
1128 getRepeatedField(final FieldDescriptor field, final int index) getRepeatedField() argument
1138 verifyContainingType(final FieldDescriptor field) verifyContainingType() argument
1483 getField(final FieldDescriptor field) getField() argument
1504 getRepeatedFieldCount(final FieldDescriptor field) getRepeatedFieldCount() argument
1514 getRepeatedField(final FieldDescriptor field, final int index) getRepeatedField() argument
1525 hasField(final FieldDescriptor field) hasField() argument
1535 setField(final FieldDescriptor field, final Object value) setField() argument
1549 clearField(final FieldDescriptor field) clearField() argument
1562 setRepeatedField(final FieldDescriptor field, final int index, final Object value) setRepeatedField() argument
1576 addRepeatedField(final FieldDescriptor field, final Object value) addRepeatedField() argument
1595 verifyContainingType(final FieldDescriptor field) verifyContainingType() argument
2058 isMapFieldEnabled(FieldDescriptor field) isMapFieldEnabled() argument
2140 getField(final FieldDescriptor field) getField() argument
2287 protected final FieldDescriptor field; global() field in GeneratedMessage.FieldAccessorTable.SingularFieldAccessor
2542 private final FieldDescriptor field; global() field in GeneratedMessage.FieldAccessorTable.MapFieldAccessor
[all...]
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DProto2MessageInfoFactory.java101 * including looking up each field by name. This is done for benchmarking purposes, so that we get
115 Field bitField0 = field("bitField0_"); in lookupFieldsByName()
121 field("fieldDouble1_"), 1, FieldType.DOUBLE, bitField0, 0x00000001, false, null)); in lookupFieldsByName()
124 field("fieldFloat2_"), 2, FieldType.FLOAT, bitField0, 0x00000002, false, null)); in lookupFieldsByName()
127 field("fieldInt643_"), 3, FieldType.INT64, bitField0, 0x00000004, false, null)); in lookupFieldsByName()
130 field("fieldUint644_"), 4, FieldType.UINT64, bitField0, 0x00000008, false, null)); in lookupFieldsByName()
133 field("fieldInt325_"), 5, FieldType.INT32, bitField0, 0x00000010, false, null)); in lookupFieldsByName()
136 field("fieldFixed646_"), 6, FieldType.FIXED64, bitField0, 0x00000020, false, null)); in lookupFieldsByName()
139 field("fieldFixed327_"), 7, FieldType.FIXED32, bitField0, 0x00000040, false, null)); in lookupFieldsByName()
142 field("fieldBool8 in lookupFieldsByName()
872 private static Field field(String name) { field() method in Proto2MessageInfoFactory
876 private static Field field(Class<?> clazz, String name) { field() method in Proto2MessageInfoFactory
[all...]
/third_party/node/deps/npm/node_modules/jackspeak/dist/esm/
H A Dindex.js274 for (const [field, value] of Object.entries(values)) {
275 const my = this.#configSet[field];
279 throw new Error('unexpected field in config set: ' + field);
302 for (const [field, my] of Object.entries(this.#configSet)) {
303 const ek = toEnvKey(this.#envPrefix, field);
387 for (const [field, c] of Object.entries(this.#configSet)) {
388 if (c.default !== undefined && !(field in p.values)) {
390 p.values[field] = c.default;
393 for (const [field, valu
[all...]
/third_party/node/deps/npm/node_modules/jackspeak/dist/commonjs/
H A Dindex.js282 for (const [field, value] of Object.entries(values)) {
283 const my = this.#configSet[field];
287 throw new Error('unexpected field in config set: ' + field);
310 for (const [field, my] of Object.entries(this.#configSet)) {
311 const ek = toEnvKey(this.#envPrefix, field);
395 for (const [field, c] of Object.entries(this.#configSet)) {
396 if (c.default !== undefined && !(field in p.values)) {
398 p.values[field] = c.default;
401 for (const [field, valu
[all...]
/third_party/python/Modules/_ctypes/
H A Dcfield.c35 * Expects the size, index and offset for the current field in *psize and
37 * field in *poffset, the alignment requirements for the current field in
38 * *palign, and returns a field descriptor for this field.
42 * bitsize != 0: this is a bit field.
84 /* continue bit field */ in PyCField_FromDesc()
91 /* expand bit field */ in PyCField_FromDesc()
100 /* not a bit field */ in PyCField_FromDesc()
183 self->offset = *poffset - size; /* poffset is already updated for the NEXT field */ in PyCField_FromDesc()
531 short field; h_set_sw() local
579 unsigned short field; H_set_sw() local
628 int field; i_set_sw() local
725 unsigned int field; I_set_sw() local
774 long field; l_set_sw() local
823 unsigned long field; L_set_sw() local
872 long long field; q_set_sw() local
920 unsigned long long field; Q_set_sw() local
[all...]
/third_party/protobuf/java/lite/src/test/java/com/google/protobuf/
H A DProto2MessageLiteInfoFactory.java228 * info, including looking up each field by name. This is done for benchmarking purposes, so that
242 Field bitField0 = field(Proto2MessageLite.class, "bitField0_"); in lookupFieldsByName()
248 field(Proto2MessageLite.class, "fieldDouble1_"), in lookupFieldsByName()
257 field(Proto2MessageLite.class, "fieldFloat2_"), in lookupFieldsByName()
266 field(Proto2MessageLite.class, "fieldInt643_"), in lookupFieldsByName()
275 field(Proto2MessageLite.class, "fieldUint644_"), in lookupFieldsByName()
284 field(Proto2MessageLite.class, "fieldInt325_"), in lookupFieldsByName()
293 field(Proto2MessageLite.class, "fieldFixed646_"), in lookupFieldsByName()
302 field(Proto2MessageLite.class, "fieldFixed327_"), in lookupFieldsByName()
311 field(Proto2MessageLit in lookupFieldsByName()
1312 private static Field field(Class<?> clazz, String name) { field() method in Proto2MessageLiteInfoFactory
[all...]
/third_party/protobuf/src/google/protobuf/util/
H A Dmessage_differencer.cc72 // Report that a field has been added into Message2.
80 // Report that a field has been deleted from Message1.
88 // Report that the value of a field has been modified.
100 // When comparing a repeated field as map, MultipleFieldMapKeyComparator can
102 // Two elements of a repeated field will be regarded as having the same key
103 // iff they have the same value for every specified key field.
104 // Note that you can also specify only one field as key.
142 const FieldDescriptor* field = key_field_path[path_index]; in IsMatchInternal() local
145 if (field->is_repeated()) { in IsMatchInternal()
147 message1, message2, field, in IsMatchInternal()
316 CheckRepeatedFieldComparisons( const FieldDescriptor* field, const RepeatedFieldComparison& new_comparison) CheckRepeatedFieldComparisons() argument
334 TreatAsSet(const FieldDescriptor* field) TreatAsSet() argument
339 TreatAsSmartSet(const FieldDescriptor* field) TreatAsSmartSet() argument
349 TreatAsList(const FieldDescriptor* field) TreatAsList() argument
354 TreatAsSmartList(const FieldDescriptor* field) TreatAsSmartList() argument
359 TreatAsMap(const FieldDescriptor* field, const FieldDescriptor* key) TreatAsMap() argument
378 TreatAsMapWithMultipleFieldsAsKey( const FieldDescriptor* field, const std::vector<const FieldDescriptor*>& key_fields) TreatAsMapWithMultipleFieldsAsKey() argument
390 TreatAsMapWithMultipleFieldPathsAsKey( const FieldDescriptor* field, const std::vector<std::vector<const FieldDescriptor*> >& key_field_paths) TreatAsMapWithMultipleFieldPathsAsKey() argument
427 TreatAsMapUsingKeyComparator( const FieldDescriptor* field, const MapKeyComparator* key_comparator) TreatAsMapUsingKeyComparator() argument
443 IgnoreField(const FieldDescriptor* field) IgnoreField() argument
447 SetFractionAndMargin(const FieldDescriptor* field, double fraction, double margin) SetFractionAndMargin() argument
1066 CompareFieldValue(const Message& message1, const Message& message2, const FieldDescriptor* field, int index1, int index2) CompareFieldValue() argument
1074 CompareFieldValueUsingParentFields( const Message& message1, const Message& message2, const FieldDescriptor* field, int index1, int index2, std::vector<SpecificField>* parent_fields) CompareFieldValueUsingParentFields() argument
1127 IsTreatedAsSet(const FieldDescriptor* field) IsTreatedAsSet() argument
1136 IsTreatedAsSmartSet(const FieldDescriptor* field) IsTreatedAsSmartSet() argument
1145 IsTreatedAsSmartList(const FieldDescriptor* field) IsTreatedAsSmartList() argument
1154 IsTreatedAsSubset(const FieldDescriptor* field) IsTreatedAsSubset() argument
1159 IsIgnored( const Message& message1, const Message& message2, const FieldDescriptor* field, const std::vector<SpecificField>& parent_fields) IsIgnored() argument
1175 IsUnknownFieldIgnored( const Message& message1, const Message& message2, const SpecificField& field, const std::vector<SpecificField>& parent_fields) IsUnknownFieldIgnored() argument
1717 GetFieldComparisonResult( const Message& message1, const Message& message2, const FieldDescriptor* field, int index1, int index2, const FieldContext* field_context) GetFieldComparisonResult() argument
1804 const FieldDescriptor* field = specific_field.field; PrintValue() local
[all...]
/third_party/openssl/ohos_lite/include/openssl/
H A Dasn1t.h321 # define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
322 (flags), (tag), offsetof(stname, field),\
323 #field, ASN1_ITEM_ref(type) }
327 # define ASN1_IMP_EX(stname, field, type, tag, ex) \
328 ASN1_EX_TYPE(ASN1_TFLG_IMPLICIT | (ex), tag, stname, field, type)
330 # define ASN1_EXP_EX(stname, field, type, tag, ex) \
331 ASN1_EX_TYPE(ASN1_TFLG_EXPLICIT | (ex), tag, stname, field, type)
333 /* Any defined by macros: the field used is in the table itself */
343 # define ASN1_SIMPLE(stname, field, type) ASN1_EX_TYPE(0,0, stname, field, typ
[all...]
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
H A DFieldMaskTree.java48 * a field path in the FieldMask.
93 * Adds a field path to the tree. In a FieldMask, every field path matches the specified field as
94 * well as all its sub-fields. For example, a field path "foo.bar" matches field "foo.bar" and
95 * also "foo.bar.baz", etc. When adding a field path to the tree, redundant sub-paths will be
97 * exists, which will turn the tree node for "foo.bar" to a leaf node. Likewise, if the field path
130 /** Merges all field paths in a FieldMask into this tree. */
142 * <p>When removing a field pat
[all...]
/third_party/gn/src/base/json/
H A Djson_value_converter.cc11 int* field) const { in Convert()
12 return value.GetAsInteger(field); in Convert()
16 std::string* field) const { in Convert()
17 return value.GetAsString(field); in Convert()
21 std::u16string* field) const { in Convert()
22 return value.GetAsString(field); in Convert()
26 double* field) const { in Convert()
27 return value.GetAsDouble(field); in Convert()
31 bool* field) const { in Convert()
32 return value.GetAsBoolean(field); in Convert()
[all...]
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/
H A Dasn1t.h40 * These are the possible values for the itype field of the
50 * For SEQUENCE types the templates field points
51 * to the members, the size field is the
54 * For CHOICE types the templates field points
56 * and the 'size' field is the offset of the
59 * The 'funcs' field is used for application-specific
70 * structure. In this case the 'utype' field
364 # define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
365 (flags), (tag), offsetof(stname, field),\
366 #field, ASN1_ITEM_re
[all...]
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/
H A Dasn1t.h40 * These are the possible values for the itype field of the
50 * For SEQUENCE types the templates field points
51 * to the members, the size field is the
54 * For CHOICE types the templates field points
56 * and the 'size' field is the offset of the
59 * The 'funcs' field is used for application-specific
70 * structure. In this case the 'utype' field
364 # define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
365 (flags), (tag), offsetof(stname, field),\
366 #field, ASN1_ITEM_re
[all...]
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm_avx2/include/openssl/
H A Dasn1t.h40 * These are the possible values for the itype field of the
50 * For SEQUENCE types the templates field points
51 * to the members, the size field is the
54 * For CHOICE types the templates field points
56 * and the 'size' field is the offset of the
59 * The 'funcs' field is used for application-specific
70 * structure. In this case the 'utype' field
364 # define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
365 (flags), (tag), offsetof(stname, field),\
366 #field, ASN1_ITEM_re
[all...]
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/
H A Dasn1t.h40 * These are the possible values for the itype field of the
50 * For SEQUENCE types the templates field points
51 * to the members, the size field is the
54 * For CHOICE types the templates field points
56 * and the 'size' field is the offset of the
59 * The 'funcs' field is used for application-specific
70 * structure. In this case the 'utype' field
364 # define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
365 (flags), (tag), offsetof(stname, field),\
366 #field, ASN1_ITEM_re
[all...]

Completed in 26 milliseconds

12345678910>>...73