Home
last modified time | relevance | path

Searched refs:length_size (Results 1 – 13 of 13) sorted by relevance

/netbsd/external/gpl3/gdb/dist/gdb/
H A Dp-lang.c99 int *length_size, int *string_pos, in is_pascal_string_type() argument
115 if (length_size) in is_pascal_string_type()
116 *length_size = TYPE_LENGTH (type->field (0).type ()); in is_pascal_string_type()
135 if (length_size) in is_pascal_string_type()
136 *length_size = TYPE_LENGTH (type->field (1).type ()); in is_pascal_string_type()
H A Dp-valprint.c79 int length_pos, length_size, string_pos; in pascal_value_print_inner() local
203 if (is_pascal_string_type (elttype, &length_pos, &length_size, in pascal_value_print_inner()
212 buffer = (gdb_byte *) xmalloc (length_size); in pascal_value_print_inner()
213 read_memory (addr + length_pos, buffer, length_size); in pascal_value_print_inner()
214 string_length = extract_unsigned_integer (buffer, length_size, in pascal_value_print_inner()
316 if (is_pascal_string_type (type, &length_pos, &length_size, in pascal_value_print_inner()
320 length_size, byte_order); in pascal_value_print_inner()
H A DChangeLog-200210298 changed. Args length_pos, length_size, string_pos, char_size
/netbsd/external/gpl3/gdb.old/dist/gdb/
H A Dp-lang.c99 int *length_size, int *string_pos, in is_pascal_string_type() argument
115 if (length_size) in is_pascal_string_type()
116 *length_size = TYPE_LENGTH (type->field (0).type ()); in is_pascal_string_type()
135 if (length_size) in is_pascal_string_type()
136 *length_size = TYPE_LENGTH (type->field (1).type ()); in is_pascal_string_type()
H A Dp-valprint.c79 int length_pos, length_size, string_pos; in pascal_value_print_inner() local
203 if (is_pascal_string_type (elttype, &length_pos, &length_size, in pascal_value_print_inner()
212 buffer = (gdb_byte *) xmalloc (length_size); in pascal_value_print_inner()
213 read_memory (addr + length_pos, buffer, length_size); in pascal_value_print_inner()
214 string_length = extract_unsigned_integer (buffer, length_size, in pascal_value_print_inner()
316 if (is_pascal_string_type (type, &length_pos, &length_size, in pascal_value_print_inner()
320 length_size, byte_order); in pascal_value_print_inner()
H A DChangeLog-200210298 changed. Args length_pos, length_size, string_pos, char_size
/netbsd/external/mpl/dhcp/dist/common/
H A Dtables.c1111 dhcp_universe.length_size = 1; in initialize_common_option_spaces()
1152 nwip_universe.length_size = 1; in initialize_common_option_spaces()
1198 fqdn_universe.length_size = 1; in initialize_common_option_spaces()
1246 vendor_class_universe.length_size = 1; in initialize_common_option_spaces()
1293 vendor_universe.length_size = 1; in initialize_common_option_spaces()
1340 isc_universe.length_size = 2; in initialize_common_option_spaces()
1386 dhcpv6_universe.length_size = 2; in initialize_common_option_spaces()
1427 vsio_universe.length_size = 0; in initialize_common_option_spaces()
1468 isc6_universe.length_size = 0; in initialize_common_option_spaces()
1512 fqdn6_universe.length_size = 0; in initialize_common_option_spaces()
H A Doptions.c154 if ((offset + universe->length_size) > length) {
169 else if (universe->length_size == 0)
181 offset += universe->length_size;
914 total_len = ds.len + universe->tag_size + universe->length_size; in vsio_options()
927 if (universe->length_size == 1) { in vsio_options()
929 } else if (universe->length_size == 2) { in vsio_options()
933 } else if (universe->length_size == 4) { in vsio_options()
3019 (dst->len + universe->length_size + in append_option()
3041 tmp.len += universe->length_size; in append_option()
H A Dparse.c1453 nu -> length_size = lsize;
/netbsd/external/mpl/dhcp/dist/client/
H A Dclient_tables.c59 client_universe.length_size = 1; /* Never used ... */ in initialize_client_option_spaces()
H A Ddhclient.c3227 len += dhcpv6_universe.tag_size + dhcpv6_universe.length_size; in send_dhcpv4_query()
3253 ofs += dhcpv6_universe.length_size; in send_dhcpv4_query()
/netbsd/external/mpl/dhcp/dist/server/
H A Dstables.c476 agent_universe.length_size = 1; in initialize_server_option_spaces()
518 server_universe.length_size = 1; /* Never used ... */ in initialize_server_option_spaces()
/netbsd/external/mpl/dhcp/dist/includes/
H A Dtree.h336 int tag_size, length_size; member