Home
last modified time | relevance | path

Searched refs:bytesize (Results 1 – 25 of 27) sorted by relevance

12

/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgenmodes.cc58 unsigned int bytesize; /* storage size in addressable units */ member
294 validate_field (m, bytesize); in validate_mode()
330 m->bytesize = 0; in complete_mode()
340 m->bytesize = 4; in complete_mode()
377 m->bytesize = m->component->bytesize; in complete_mode()
389 m->bytesize = 2 * m->component->bytesize; in complete_mode()
406 m->bytesize = m->ncomponents * m->component->bytesize; in complete_mode()
417 alignment = m->component->bytesize; in complete_mode()
419 alignment = m->bytesize; in complete_mode()
523 ncomponents = width / m->bytesize; in make_vector_modes()
[all …]
H A Dexpr.cc6666 poly_uint64 bytesize; in store_constructor_field() local
6672 && multiple_p (bitsize, BITS_PER_UNIT, &bytesize) in store_constructor_field()
6696 store_constructor (exp, target, cleared, bytesize, reverse); in store_constructor_field()
7540 poly_int64 bytesize = bits_to_bytes_round_up (bitsize); in store_field() local
7544 gen_int_mode (bytesize, Pmode), in store_field()
7583 poly_int64 bytesize = exact_div (bitsize, BITS_PER_UNIT); in store_field() local
7584 store_constructor (exp, to_rtx, 0, bytesize, reverse); in store_field()
11372 poly_int64 bytesize = bits_to_bytes_round_up (bitsize); in expand_expr_real_1() local
11375 gen_int_mode (bytesize, Pmode), in expand_expr_real_1()
H A Dexpmed.cc1856 poly_uint64 bytesize = bits_to_bytes_round_up (bitnum + bitsize); in extract_bit_field_1() local
1857 op0 = adjust_bitfield_address_size (op0, BLKmode, bytenum, bytesize); in extract_bit_field_1()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgenmodes.c58 unsigned int bytesize; /* storage size in addressable units */ member
292 validate_field (m, bytesize); in validate_mode()
328 m->bytesize = 0; in complete_mode()
338 m->bytesize = 4; in complete_mode()
367 m->bytesize = m->component->bytesize; in complete_mode()
379 m->bytesize = 2 * m->component->bytesize; in complete_mode()
396 m->bytesize = m->ncomponents * m->component->bytesize; in complete_mode()
407 alignment = m->component->bytesize; in complete_mode()
409 alignment = m->bytesize; in complete_mode()
513 ncomponents = width / m->bytesize; in make_vector_modes()
[all …]
H A Dexpr.c6318 poly_uint64 bytesize; in store_constructor_field() local
6324 && multiple_p (bitsize, BITS_PER_UNIT, &bytesize) in store_constructor_field()
6348 store_constructor (exp, target, cleared, bytesize, reverse); in store_constructor_field()
7179 poly_int64 bytesize = bits_to_bytes_round_up (bitsize); in store_field() local
7183 gen_int_mode (bytesize, Pmode), in store_field()
7222 poly_int64 bytesize = exact_div (bitsize, BITS_PER_UNIT); in store_field() local
7223 store_constructor (exp, to_rtx, 0, bytesize, reverse); in store_field()
10976 poly_int64 bytesize = bits_to_bytes_round_up (bitsize); in expand_expr_real_1() local
10979 gen_int_mode (bytesize, Pmode), in expand_expr_real_1()
H A Dexpmed.c1844 poly_uint64 bytesize = bits_to_bytes_round_up (bitnum + bitsize); in extract_bit_field_1() local
1845 op0 = adjust_bitfield_address_size (op0, BLKmode, bytenum, bytesize); in extract_bit_field_1()
/netbsd-src/external/gpl3/binutils/dist/bfd/
H A Dmep-relocs.pl130 if (length($mask) == 8) { $bytesize = 0; }
131 elsif (length($mask) == 16) { $bytesize = 1; }
132 elsif (length($mask) == 32) { $bytesize = 2; }
143 $c, $bytesize, $bits, $left, $right, $pcrel, $overflow, $mask);
/netbsd-src/external/gpl3/binutils.old/dist/bfd/
H A Dmep-relocs.pl130 if (length($mask) == 8) { $bytesize = 0; }
131 elsif (length($mask) == 16) { $bytesize = 1; }
132 elsif (length($mask) == 32) { $bytesize = 2; }
143 $c, $bytesize, $bits, $left, $right, $pcrel, $overflow, $mask);
/netbsd-src/external/bsd/top/dist/machine/
H A Dm_sunos4.c275 static int bytesize; variable
383 bytesize = epages - pages;
384 count = bytesize / sizeof(struct page);
472 (void) getkval(pages, (int *)physpage, bytesize, "array _page");
/netbsd-src/sys/fs/nfs/common/
H A Dnfs_commonsubs.c402 int rem, bytesize; in nfsm_strtom() local
409 bytesize = NFSX_UNSIGNED + siz + rem; in nfsm_strtom()
447 return (bytesize); in nfsm_strtom()
488 int fullsiz, rem, bytesize = 0; in nfsm_fhtom() local
500 bytesize = NFSX_V2FH; in nfsm_fhtom()
507 bytesize = 2 * NFSX_UNSIGNED + fullsiz; in nfsm_fhtom()
511 bytesize = NFSX_UNSIGNED + fullsiz; in nfsm_fhtom()
516 return (bytesize); in nfsm_fhtom()
2551 int cnt, i, bytesize; in nfsrv_putattrbit() local
2556 bytesize = (cnt + 1) * NFSX_UNSIGNED; in nfsrv_putattrbit()
[all …]
/netbsd-src/usr.bin/ftp/
H A Dftp_var.h251 GLOBAL int bytesize; /* local byte size in binary */
242 GLOBAL int bytesize; /* local byte size in binary */ global() variable
H A Dutil.c160 bytesize = 8; in setpeer()
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Dtrans-stmt.cc4180 gfc_do_allocate (tree bytesize, tree size, tree * pdata, stmtblock_t * pblock, in gfc_do_allocate() argument
4195 if (gfc_can_put_var_on_stack (bytesize) && INTEGER_CST_P (size)) in gfc_do_allocate()
4205 tmp = gfc_call_malloc (pblock, TREE_TYPE (tmpvar), bytesize); in gfc_do_allocate()
4566 tree bytesize; in allocate_temp_for_forall_nest_1() local
4572 bytesize = fold_build2_loc (input_location, MULT_EXPR, in allocate_temp_for_forall_nest_1()
4575 bytesize = size; in allocate_temp_for_forall_nest_1()
4578 tmp = gfc_do_allocate (bytesize, size, ptemp1, block, type); in allocate_temp_for_forall_nest_1()
H A Dtrans-intrinsic.cc8055 tree bytesize; in size_of_string_in_bytes() local
8058 bytesize = build_int_cst (gfc_array_index_type, in size_of_string_in_bytes()
8062 bytesize, in size_of_string_in_bytes()
H A DChangeLog-20074724 * decl.c (gfc_match_old_kind_spec): Document kind/bytesize
4810 * decl.c (gfc_match_old_kind_spec): Documented kind/bytesize
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dtrans-stmt.c4144 gfc_do_allocate (tree bytesize, tree size, tree * pdata, stmtblock_t * pblock, in gfc_do_allocate() argument
4159 if (gfc_can_put_var_on_stack (bytesize) && INTEGER_CST_P (size)) in gfc_do_allocate()
4169 tmp = gfc_call_malloc (pblock, TREE_TYPE (tmpvar), bytesize); in gfc_do_allocate()
4530 tree bytesize; in allocate_temp_for_forall_nest_1() local
4536 bytesize = fold_build2_loc (input_location, MULT_EXPR, in allocate_temp_for_forall_nest_1()
4539 bytesize = size; in allocate_temp_for_forall_nest_1()
4542 tmp = gfc_do_allocate (bytesize, size, ptemp1, block, type); in allocate_temp_for_forall_nest_1()
H A Dtrans-intrinsic.c7973 tree bytesize; in size_of_string_in_bytes() local
7976 bytesize = build_int_cst (gfc_array_index_type, in size_of_string_in_bytes()
7980 bytesize, in size_of_string_in_bytes()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/tilepro/
H A Dtilepro.cc1700 HOST_WIDE_INT bytesize = bitsize / BITS_PER_UNIT; in tilepro_expand_unaligned_store() local
1706 for (i = 0, shift_amt = 0; i < bytesize; i++, shift_amt += BITS_PER_UNIT) in tilepro_expand_unaligned_store()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/tilepro/
H A Dtilepro.c1700 HOST_WIDE_INT bytesize = bitsize / BITS_PER_UNIT; in tilepro_expand_unaligned_store() local
1706 for (i = 0, shift_amt = 0; i < bytesize; i++, shift_amt += BITS_PER_UNIT) in tilepro_expand_unaligned_store()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/tilegx/
H A Dtilegx.c1971 HOST_WIDE_INT bytesize = bitsize / BITS_PER_UNIT; in tilegx_expand_unaligned_store() local
1981 i < bytesize; in tilegx_expand_unaligned_store()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/tilegx/
H A Dtilegx.cc1972 HOST_WIDE_INT bytesize = bitsize / BITS_PER_UNIT; in tilegx_expand_unaligned_store() local
1982 i < bytesize; in tilegx_expand_unaligned_store()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/ia64/
H A Dia64.cc5272 int bytesize; in ia64_function_value() local
5276 bytesize = int_size_in_bytes (valtype); in ia64_function_value()
5279 if (bytesize == 0) in ia64_function_value()
5281 for (i = 0; offset < bytesize; i++) in ia64_function_value()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/ia64/
H A Dia64.c5272 int bytesize; in ia64_function_value() local
5276 bytesize = int_size_in_bytes (valtype); in ia64_function_value()
5279 if (bytesize == 0) in ia64_function_value()
5281 for (i = 0; offset < bytesize; i++) in ia64_function_value()
/netbsd-src/libexec/ftpd/
H A Dftpd.c2608 cprintf(stdout, " %d", bytesize); in statcmd()
/netbsd-src/external/gpl3/gdb.old/dist/gdb/
H A DChangeLog-2010876 * value.c (modify_field): Update comment. New variable bytesize.

12