/freebsd/contrib/llvm-project/lldb/source/Plugins/RegisterTypeBuilder/ |
H A D | RegisterTypeBuilderClang.cpp | 69 CompilerType field_type = field_uint_type; in GetRegisterType() local 89 field_type = field_enum_type; in GetRegisterType() 91 field_type = type_system->CreateEnumerationType( in GetRegisterType() 95 type_system->StartTagDeclarationDefinition(field_type); in GetRegisterType() 100 field_type, decl, enumerator.m_name.c_str(), in GetRegisterType() 104 type_system->CompleteTagDeclarationDefinition(field_type); in GetRegisterType() 110 field_type, lldb::eAccessPublic, in GetRegisterType()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | ProcessStructReader.h | 57 CompilerType field_type = struct_type.GetFieldAtIndex( in ProcessStructReader() local 62 auto size = field_type.GetByteSize(nullptr); in ProcessStructReader() 67 m_fields.insert({name, FieldImpl{field_type, byte_index, in ProcessStructReader()
|
/freebsd/crypto/openssl/crypto/ec/ |
H A D | ec_oct.c | 37 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 D | ec_curve.c | 26 int field_type, /* either NID_X9_62_prime_field or member 3178 } else if (data->field_type == NID_X9_62_prime_field) { in ec_group_new_from_data() 3345 int ret = -1, nid, len, field_type, param_len; in ossl_ec_curve_nid_from_params() local 3357 field_type = EC_GROUP_get_field_type(group); in ossl_ec_curve_nid_from_params() 3417 if (data->field_type == field_type in ossl_ec_curve_nid_from_params()
|
H A D | ec_backend.c | 161 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 D | ec_asn1.c | 230 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()
|
H A D | ec_lib.c | 297 return meth->field_type; in EC_METHOD_get_field_type() 340 if (group->meth->field_type == NID_X9_62_characteristic_two_field) { in ec_guess_cofactor() 502 return group->meth->field_type; in EC_GROUP_get_field_type() 831 if (group->meth->field_type != NID_X9_62_prime_field) { in EC_POINT_set_Jprojective_coordinates_GFp() 848 if (group->meth->field_type != NID_X9_62_prime_field) { in EC_POINT_get_Jprojective_coordinates_GFp()
|
/freebsd/contrib/unbound/dnstap/ |
H A D | dnstap_fstrm.c | 206 uint32_t field_type = sldns_read_uint32(pos); in fstrm_describe_control() local 212 if(field_type == FSTRM_CONTROL_FIELD_TYPE_CONTENT_TYPE) { in fstrm_describe_control() 226 (unsigned int)field_type, in fstrm_describe_control()
|
/freebsd/contrib/ncurses/form/ |
H A D | fld_type.c | 92 field_type(const FIELD *field) in field_type() function
|
H A D | form.priv.h | 230 #define returnFieldType(code) TRACE_RETURN1(code,field_type)
|
H A D | llib-lformtw | 363 #undef field_type 364 FIELDTYPE *field_type(
|
H A D | llib-lformt | 363 #undef field_type 364 FIELDTYPE *field_type(
|
H A D | llib-lformw | 363 #undef field_type 364 FIELDTYPE *field_type(
|
H A D | llib-lform | 363 #undef field_type 364 FIELDTYPE *field_type(
|
H A D | form.h | 391 extern FORM_EXPORT(FIELDTYPE *) field_type (const FIELD *);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | LibCxxUnorderedMap.cpp | 160 CompilerType field_type = m_element_type.GetFieldAtIndex( in GetChildAtIndex() local 162 CompilerType actual_type = field_type.GetTypedefedType(); in GetChildAtIndex()
|
/freebsd/sys/dev/aic7xxx/aicasm/ |
H A D | aicasm_gram.y | 86 static void process_field(unsigned int field_type, symbol_t *sym, int mask); 1379 process_field(unsigned int field_type, symbol_t *sym, int value) 1389 sym->type = field_type; 1392 if (field_type != ENUM_ENTRY) { 1393 if (field_type != MASK && value == 0) { 1404 } else if (sym->type != field_type) {
|
/freebsd/contrib/ncurses/misc/ |
H A D | form.ref | 58 "field_type" @58 ;NONAME
|
H A D | form.def | 49 "field_type" @58 NONAME
|
/freebsd/crypto/openssl/providers/implementations/keymgmt/ |
H A D | ec_kmgmt.c | 985 char *field_type; member 1110 COPY_UTF8_PARAM(params, OSSL_PKEY_PARAM_EC_FIELD_TYPE, gctx->field_type); in ec_gen_set_params() 1159 } else if (gctx->field_type != NULL) { in ec_gen_set_group_from_params() 1161 gctx->field_type, 0)) in ec_gen_set_group_from_params() 1359 OPENSSL_free(gctx->field_type); in ec_gen_cleanup()
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBType.cpp | 575 CompilerType field_type(this_type.GetFieldAtIndex( in GetFieldAtIndex() local 577 if (field_type.IsValid()) { in GetFieldAtIndex() 582 new TypeMemberImpl(TypeImplSP(new TypeImpl(field_type)), bit_offset, in GetFieldAtIndex()
|
/freebsd/lib/ncurses/form/ |
H A D | Makefile | 126 form_field_validation.3 field_type.3 \
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
H A D | SymbolFileCTF.cpp | 544 Type *field_type = ResolveTypeUID(field.type); in CompleteType() local 545 assert(field_type && "field must be complete"); in CompleteType() 546 const uint32_t field_size = field_type->GetByteSize(nullptr).value_or(0); in CompleteType() 548 field_type->GetFullCompilerType(), in CompleteType()
|
/freebsd/sys/dev/ice/ |
H A D | ice_flow.c | 1162 * @field_type: type of the field 1183 enum ice_flow_fld_match_type field_type, u16 val_loc, 1187 if (field_type == ICE_FLOW_FLD_TYPE_RANGE) in ice_flow_set_fld_ext() 1190 seg->fields[fld].type = field_type; in ice_flow_set_fld_ext() 1188 ice_flow_set_fld_ext(struct ice_flow_seg_info * seg,enum ice_flow_field fld,enum ice_flow_fld_match_type field_type,u16 val_loc,u16 mask_loc,u16 last_loc) ice_flow_set_fld_ext() argument
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFASTParserClang.cpp | 3821 auto field_type = m_ast.CreateRecordType( in ParseRustVariantPart() local 3828 m_ast.StartTagDeclarationDefinition(field_type); in ParseRustVariantPart() 3833 field_type, "$discr$", discriminant_type->GetFullCompilerType(), in ParseRustVariantPart() 3838 m_ast.AddFieldToRecordType(field_type, "value", in ParseRustVariantPart() 3842 m_ast.CompleteTagDeclarationDefinition(field_type); in ParseRustVariantPart() 3850 field_type, default_accesibility, 0); in ParseRustVariantPart()
|