Home
last modified time | relevance | path

Searched refs:field_type (Results 1 - 25 of 80) sorted by relevance

1234

/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Drepeated_field.c64 int element_size = native_slot_size(self->field_type); in RepeatedField_subarray()
65 upb_fieldtype_t field_type = self->field_type; in RepeatedField_subarray() local
73 VALUE elem = native_slot_get(field_type, field_type_class, mem); in RepeatedField_subarray()
89 upb_fieldtype_t field_type = self->field_type; in RepeatedField_each() local
91 int element_size = native_slot_size(field_type); in RepeatedField_each()
97 VALUE val = native_slot_get(field_type, field_type_class, memory); in RepeatedField_each()
112 int element_size = native_slot_size(self->field_type); in RepeatedField_index()
113 upb_fieldtype_t field_type in RepeatedField_index() local
162 upb_fieldtype_t field_type = self->field_type; RepeatedField_index_set() local
172 upb_fieldtype_t field_type = self->field_type; RepeatedField_index_set() local
218 upb_fieldtype_t field_type = self->field_type; RepeatedField_push() local
241 upb_fieldtype_t field_type = self->field_type; RepeatedField_push_native() local
253 upb_fieldtype_t field_type = self->field_type; RepeatedField_index_native() local
268 upb_fieldtype_t field_type = self->field_type; RepeatedField_pop_one() local
351 upb_fieldtype_t field_type = self->field_type; RepeatedField_dup() local
372 upb_fieldtype_t field_type = self->field_type; RepeatedField_deep_copy() local
397 upb_fieldtype_t field_type = self->field_type; RepeatedField_to_ary() local
446 upb_fieldtype_t field_type = self->field_type; RepeatedField_eq() local
473 upb_fieldtype_t field_type = self->field_type; RepeatedField_hash() local
614 upb_fieldtype_t field_type = self->field_type; RepeatedField_mark() local
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dextension_set.h305 void* MutableRawRepeatedField(int number, FieldType field_type, bool packed,
940 static inline void Set(int number, FieldType field_type, ConstType value,
960 static inline void Add(int number, FieldType field_type, bool is_packed,
966 FieldType field_type,
999 inline void PrimitiveTypeTraits<TYPE>::Set(int number, FieldType field_type, \
1001 set->Set##METHOD(number, field_type, value, NULL); \
1016 int number, FieldType field_type, bool is_packed, TYPE value, \
1018 set->Add##METHOD(number, field_type, is_packed, value, NULL); \
1036 int number, FieldType field_type, bool is_packed, ExtensionSet* set) { \
1038 set->MutableRawRepeatedField(number, field_type, is_packe
1065 Set(int number, FieldType field_type, const std::string& value, ExtensionSet* set) Set() argument
1069 Mutable(int number, FieldType field_type, ExtensionSet* set) Mutable() argument
1099 Add(int number, FieldType field_type, bool , const std::string& value, ExtensionSet* set) Add() argument
1103 Add(int number, FieldType field_type, ExtensionSet* set) Add() argument
1113 MutableRepeated( int number, FieldType field_type, bool is_packed, ExtensionSet* set) MutableRepeated() argument
1148 Set(int number, FieldType field_type, ConstType value, ExtensionSet* set) Set() argument
1177 Add(int number, FieldType field_type, bool is_packed, ConstType value, ExtensionSet* set) Add() argument
1192 MutableRepeated(int number, FieldType field_type, bool is_packed, ExtensionSet* set) MutableRepeated() argument
1234 Mutable(int number, FieldType field_type, ExtensionSet* set) Mutable() argument
1239 SetAllocated(int number, FieldType field_type, MutableType message, ExtensionSet* set) SetAllocated() argument
1243 UnsafeArenaSetAllocated(int number, FieldType field_type, MutableType message, ExtensionSet* set) UnsafeArenaSetAllocated() argument
1285 Add(int number, FieldType field_type, ExtensionSet* set) Add() argument
1300 MutableRepeated(int number, FieldType field_type, bool is_packed, ExtensionSet* set) MutableRepeated() argument
[all...]
/third_party/node/deps/v8/src/torque/
H A Dtype-visitor.cc154 const Type* field_type = TypeVisitor::ComputeType(field.name_and_type.type); in ComputeType() local
155 if (!IsAllowedAsBitField(field_type)) { in ComputeType()
164 if (field_type->IsSubtypeOf(TypeOracle::GetBoolType())) { in ComputeType()
167 auto opt_field_type_size = SizeOf(field_type); in ComputeType()
169 ReportError("Size unknown for type ", field_type->ToString()); in ComputeType()
180 {field.name_and_type.name->value, field_type}, in ComputeType()
202 const Type* field_type = TypeVisitor::ComputeType(field.name_and_type.type); in ComputeType() local
203 if (field_type->IsConstexpr()) { in ComputeType()
205 "\" carries constexpr type \"", *field_type, "\""); in ComputeType()
210 {field.name_and_type.name->value, field_type}, in ComputeType()
430 const Type* field_type = ComputeType(field_expression.name_and_type.type); VisitClassFieldsAndMethods() local
[all...]
H A Dcsa-generator.cc950 const Type* field_type = instruction.bit_field.name_and_type.type; in EmitInstruction() local
956 bool field_is_pointer_size = IsPointerSizeIntegralType(field_type); in EmitInstruction()
957 DCHECK_IMPLIES(!field_is_pointer_size, Is32BitIntegralType(field_type)); in EmitInstruction()
964 decls() << " " << field_type->GetGeneratedTypeName() << " " << result_name in EmitInstruction()
975 << field_type->GetGeneratedTNodeTypeName() in EmitInstruction()
992 const Type* field_type = instruction.bit_field.name_and_type.type; in EmitInstruction() local
998 bool field_is_pointer_size = IsPointerSizeIntegralType(field_type); in EmitInstruction()
999 DCHECK_IMPLIES(!field_is_pointer_size, Is32BitIntegralType(field_type)); in EmitInstruction()
H A Dimplementation-visitor.cc3749 const Type* field_type = f.name_and_type.type; in GetSectionFor() local
3750 if (field_type == TypeOracle::GetVoidType()) { in GetSectionFor()
3756 if (auto field_as_struct = field_type->StructSupertype()) { in GetSectionFor()
3778 if ((field_type->IsSubtypeOf(TypeOracle::GetStrongTaggedType()) || in GetSectionFor()
3782 } else if (field_type->IsSubtypeOf(TypeOracle::GetTaggedType()) || in GetSectionFor()
4390 bool CanGenerateFieldAccessors(const Type* field_type) { in CanGenerateFieldAccessors() argument
4393 return field_type != TypeOracle::GetVoidType() && in CanGenerateFieldAccessors()
4394 field_type != TypeOracle::GetFloat64OrHoleType() && in CanGenerateFieldAccessors()
4395 !field_type->IsSubtypeOf(TypeOracle::GetExternalPointerType()); in CanGenerateFieldAccessors()
4404 const Type* field_type in GenerateFieldAccessors() local
4521 const Type* field_type = f.name_and_type.type; GetTypeNameForAccessor() local
4552 const Type* field_type = innermost_field.name_and_type.type; EmitLoadFieldStatement() local
4620 const Type* field_type = innermost_field.name_and_type.type; EmitStoreFieldStatement() local
4757 const Type* field_type = f.name_and_type.type; GenerateClassDefinitions() local
5141 const Type* field_type = leaf_field.name_and_type.type; GenerateFieldValueVerifier() local
5179 const Type* field_type = f.name_and_type.type; GenerateClassFieldVerifier() local
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dgl_nir_link_uniform_blocks.c322 const struct glsl_type *field_type; in iterate_type_count_variables() local
325 field_type = glsl_get_struct_field(type, i); in iterate_type_count_variables()
327 field_type = glsl_get_array_element(type); in iterate_type_count_variables()
329 if (glsl_type_is_leaf(field_type)) in iterate_type_count_variables()
332 iterate_type_count_variables(field_type, num_variables); in iterate_type_count_variables()
388 const struct glsl_type *field_type; in iterate_type_fill_variables() local
391 field_type = glsl_get_struct_field(type, i); in iterate_type_fill_variables()
395 field_type = glsl_get_array_element(type); in iterate_type_fill_variables()
398 if (glsl_type_is_leaf(field_type)) { in iterate_type_fill_variables()
399 fill_individual_variable(field_type, variable in iterate_type_fill_variables()
[all...]
H A Dgl_nir_link_uniforms.c928 const struct glsl_type *field_type; in find_and_update_named_uniform_storage() local
932 field_type = glsl_get_struct_field(type, i); in find_and_update_named_uniform_storage()
940 field_type = glsl_get_array_element(type); in find_and_update_named_uniform_storage()
949 field_type, stage, in find_and_update_named_uniform_storage()
1111 const struct glsl_type *field_type = glsl_get_struct_field(type, i); in build_type_tree_for_type() local
1113 build_type_tree_for_type(field_type); in build_type_tree_for_type()
1253 const struct glsl_type *field_type; in nir_link_uniform() local
1258 field_type = glsl_get_struct_field(type, i); in nir_link_uniform()
1297 field_type = glsl_get_array_element(type); in nir_link_uniform()
1305 field_type, in nir_link_uniform()
[all...]
H A Dgl_nir_link_uniform_initializers.c196 const struct glsl_type *field_type = glsl_get_struct_field(type, i); in set_uniform_initializer() local
197 set_uniform_initializer(data, field_type, val->elements[i]); in set_uniform_initializer()
/third_party/node/deps/v8/src/compiler/
H A Daccess-info.cc113 Type field_type, MapRef field_owner_map, base::Optional<MapRef> field_map, in DataField()
124 field_representation, field_type, field_owner_map, in DataField()
134 Type field_type, MapRef field_owner_map, base::Optional<MapRef> field_map, in FastDataConstant()
138 field_index, field_representation, field_type, in FastDataConstant()
219 Representation field_representation, Type field_type, in PropertyAccessInfo()
230 field_type_(field_type), in PropertyAccessInfo()
432 Type field_type = name.object()->IsPrivateBrand() ? Type::OtherInternal() in ComputeDataFieldAccessInfo() local
446 field_type = Type::SignedSmall(); in ComputeDataFieldAccessInfo()
451 field_type = type_cache_->kFloat64; in ComputeDataFieldAccessInfo()
479 field_type in ComputeDataFieldAccessInfo()
109 DataField( Zone* zone, MapRef receiver_map, ZoneVector<CompilationDependency const*>&& dependencies, FieldIndex field_index, Representation field_representation, Type field_type, MapRef field_owner_map, base::Optional<MapRef> field_map, base::Optional<JSObjectRef> holder, base::Optional<MapRef> transition_map) DataField() argument
130 FastDataConstant( Zone* zone, MapRef receiver_map, ZoneVector<CompilationDependency const*>&& dependencies, FieldIndex field_index, Representation field_representation, Type field_type, MapRef field_owner_map, base::Optional<MapRef> field_map, base::Optional<JSObjectRef> holder, base::Optional<MapRef> transition_map) FastDataConstant() argument
216 PropertyAccessInfo( Kind kind, base::Optional<JSObjectRef> holder, base::Optional<MapRef> transition_map, FieldIndex field_index, Representation field_representation, Type field_type, MapRef field_owner_map, base::Optional<MapRef> field_map, ZoneVector<MapRef>&& lookup_start_object_maps, ZoneVector<CompilationDependency const*>&& unrecorded_dependencies) PropertyAccessInfo() argument
1058 Type field_type = Type::NonInternal(); LookupSpecialFieldAccessor() local
1116 Type field_type = Type::NonInternal(); LookupTransition() local
[all...]
H A Daccess-info.h77 Type field_type, MapRef field_owner_map, base::Optional<MapRef> field_map,
84 Type field_type, MapRef field_owner_map, base::Optional<MapRef> field_map,
151 Type field_type() const { in field_type() function in v8::internal::compiler::final
188 Representation field_representation, Type field_type,
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DFieldDescriptor.php209 private static function isTypePackable($field_type)
211 return ($field_type !== GPBType::STRING &&
212 $field_type !== GPBType::GROUP &&
213 $field_type !== GPBType::MESSAGE &&
214 $field_type !== GPBType::BYTES);
/third_party/protobuf/benchmarks/util/
H A Dbig_query_utils.py54 'type': field_type,
56 } for (field_name, field_type, field_description) in table_schema]
74 'type': field_type,
76 } for (field_name, field_type, field_description) in table_schema]
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Dec_oct.c37 if (group->meth->field_type == NID_X9_62_prime_field) in EC_POINT_set_compressed_coordinates()
87 if (group->meth->field_type == NID_X9_62_prime_field) in EC_POINT_point2oct()
118 if (group->meth->field_type == NID_X9_62_prime_field) in EC_POINT_oct2point()
H A Dec_backend.c161 const char *field_type; in ec_group_explicit_todata() local
170 field_type = SN_X9_62_prime_field; in ec_group_explicit_todata()
176 field_type = SN_X9_62_characteristic_two_field; in ec_group_explicit_todata()
228 field_type)) { in ec_group_explicit_todata()
H A Dec_asn1.c230 int field_type; in ec_asn1_group2fieldid()
243 field_type = EC_GROUP_get_basis_type(group); in ec_asn1_group2fieldid()
245 if (field_type == 0) { in ec_asn1_group2fieldid()
250 if ((char_two->type = OBJ_nid2obj(field_type)) == NULL) { in ec_asn1_group2fieldid()
255 if (field_type == NID_X9_62_tpBasis) { in ec_asn1_group2fieldid()
270 } else if (field_type == NID_X9_62_ppBasis) { in ec_asn1_group2fieldid()
286 } else { /* field_type == NID_X9_62_onBasis */ in ec_asn1_group2fieldid()
/third_party/openssl/crypto/ec/
H A Dec_oct.c37 if (group->meth->field_type == NID_X9_62_prime_field) in EC_POINT_set_compressed_coordinates()
91 if (group->meth->field_type == NID_X9_62_prime_field) in EC_POINT_point2oct()
122 if (group->meth->field_type == NID_X9_62_prime_field) in EC_POINT_oct2point()
H A Dec_backend.c161 const char *field_type; in ec_group_explicit_todata() local
170 field_type = SN_X9_62_prime_field; in ec_group_explicit_todata()
176 field_type = SN_X9_62_characteristic_two_field; in ec_group_explicit_todata()
228 field_type)) { in ec_group_explicit_todata()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dbtree.h471 using field_type = typename Params::node_count_type;
511 // field_type position;
515 // field_type start;
518 // field_type finish;
525 // field_type max_count;
556 using layout_type = absl::container_internal::Layout<btree_node *, field_type,
634 field_type &mutable_finish() { return GetField<1>()[2]; }
639 void set_position(field_type v) { GetField<1>()[0] = v; }
640 void set_start(field_type v) { GetField<1>()[1] = v; }
641 void set_finish(field_type
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Dwire_format.py259 def IsTypePackable(field_type):
263 field_type: a FieldDescriptor::Type value.
268 return field_type not in NON_PACKABLE_TYPES
/third_party/rust/crates/syn/codegen/src/
H A Dhash.rs9 fn skip(field_type: &Type) -> bool { in skip()
10 match field_type { in skip()
H A Deq.rs9 fn always_eq(field_type: &Type) -> bool { in always_eq()
10 match field_type { in always_eq()
/third_party/node/deps/v8/src/wasm/
H A Dwasm-objects-inl.h552 wasm::ValueType field_type = type->field(field_index); in GetField() local
554 return ReadValueAt(isolate, obj, field_type, offset); in GetField()
562 wasm::ValueType field_type = type->field(field_index); in SetField() local
564 WriteValueAt(isolate, obj, field_type, offset, value); in SetField()
/third_party/protobuf/src/google/protobuf/util/internal/
H A Ddefault_value_objectwriter.cc285 // get the field_type in this case. in GetMapValueType()
345 const google::protobuf::Type* field_type = nullptr; in PopulateChildren() local
361 field_type = found_type; in PopulateChildren()
365 field_type = GetMapValueType(*found_type, typeinfo); in PopulateChildren()
385 field_type, kind, in PopulateChildren()
/third_party/mesa3d/src/compiler/
H A Dglsl_types.cpp1679 glsl_type::field_type(const char *name) const in field_type() function in glsl_type
2102 const struct glsl_type *field_type = this->fields.structure[i].type; in std140_base_alignment() local
2104 field_type->std140_base_alignment(field_row_major)); in std140_base_alignment()
2232 const struct glsl_type *field_type = this->fields.structure[i].type; in std140_size() local
2233 unsigned align = field_type->std140_base_alignment(field_row_major); in std140_size()
2236 if (field_type->is_unsized_array()) in std140_size()
2240 size += field_type->std140_size(field_row_major); in std140_size()
2244 if (field_type->is_struct() && (i + 1 < this->length)) in std140_size()
2427 const struct glsl_type *field_type = this->fields.structure[i].type; in std430_base_alignment() local
2429 field_type in std430_base_alignment()
2600 const struct glsl_type *field_type = this->fields.structure[i].type; std430_size() local
[all...]
/third_party/rust/crates/clap/clap_derive/src/
H A Ditem.rs1002 pub fn value_parser(&self, field_type: &Type) -> Method { in value_parser()
1006 let inner_type = inner_type(field_type); in value_parser()
1010 let inner_type = inner_type(field_type); in value_parser()
1025 pub fn action(&self, field_type: &Type) -> Method { in action()
1028 .map(|p| p.resolve(field_type)) in action()
1032 default_action(field_type, span) in action()
1039 default_action(field_type, span) in action()
1125 fn default_action(field_type: &Type, span: Span) -> Method { in default_action()
1126 let ty = Ty::from_syn_ty(field_type); in default_action()
1139 if is_simple_ty(field_type, "boo in default_action()
[all...]

Completed in 34 milliseconds

1234