HomeSort by: relevance | last modified time | path
    Searched defs:type_align (Results 1 - 16 of 16) sorted by relevancy

  /src/external/gpl3/gcc/dist/libobjc/
encoding.c 1207 int type_align = bfld_type_align; local
1210 type_align = MIN (type_align, maximum_field_alignment);
1212 type_align = MIN (type_align, __CHAR_BIT__);
1215 layout->record_align = MAX (layout->record_align, type_align);
  /src/external/gpl3/gcc.old/dist/libobjc/
encoding.c 1202 int type_align = bfld_type_align; local
1205 type_align = MIN (type_align, maximum_field_alignment);
1207 type_align = MIN (type_align, __CHAR_BIT__);
1210 layout->record_align = MAX (layout->record_align, type_align);
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-warn.cc 3053 unsigned int type_align = min_align_of_type (type); local
3056 if (record_align < type_align)
3060 size_int (type_align)))
  /src/external/gpl3/gcc/dist/gcc/
stor-layout.cc 639 if (TYPE_ALIGN (type) > DECL_ALIGN (decl))
641 SET_DECL_ALIGN (decl, TYPE_ALIGN (type));
767 && known_align >= TYPE_ALIGN (type)
768 && DECL_ALIGN (decl) >= TYPE_ALIGN (type))
884 rli->record_align = MAX (BITS_PER_UNIT, TYPE_ALIGN (t));
1111 unsigned int type_align = TYPE_ALIGN (type);
1113 type_align = desired_align;
1115 type_align = MAX (type_align, desired_align)
1107 unsigned int type_align = TYPE_ALIGN (type); local
1126 unsigned int type_align = TYPE_ALIGN (type); local
1416 unsigned int type_align = TYPE_ALIGN (type); local
1462 unsigned int type_align = TYPE_ALIGN (type); local
1628 unsigned int type_align = BITS_PER_UNIT; local
    [all...]
targhooks.cc 326 tree type_align; local
329 type_align = size_int (TYPE_ALIGN_UNIT (type));
330 if (tree_int_cst_lt (type_align, sizetype_size))
333 cookie_size = type_align;
1524 return TYPE_ALIGN (type);
2561 if (boundary < TYPE_ALIGN (type))
builtins.cc 272 align = TYPE_ALIGN (TREE_TYPE (exp));
326 TYPE_ALIGN of a pointer indirection to derive alignment.
348 align = TYPE_ALIGN (TREE_TYPE (exp));
5371 set_mem_align (dstb, TYPE_ALIGN (targetm.fn_abi_va_list (cfun->decl)));
5374 set_mem_align (srcb, TYPE_ALIGN (targetm.fn_abi_va_list (cfun->decl)));
7218 unsigned int mode_align, type_align;
7240 type_align = mode_align;
7242 type_align = val;
7263 type_align = TYPE_ALIGN (ttype)
7216 unsigned int mode_align, type_align; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-warn.cc 2959 unsigned int type_align = min_align_of_type (type); local
2962 if (record_align < type_align)
2966 size_int (type_align)))
3030 unsigned int type_align = min_align_of_type (type); local
3032 if (rhs_align < type_align)
3040 rhstype, rhs_align, type, type_align))
  /src/external/gpl3/gcc.old/dist/gcc/
stor-layout.cc 611 if (TYPE_ALIGN (type) > DECL_ALIGN (decl))
613 SET_DECL_ALIGN (decl, TYPE_ALIGN (type));
739 && known_align >= TYPE_ALIGN (type)
740 && DECL_ALIGN (decl) >= TYPE_ALIGN (type))
856 rli->record_align = MAX (BITS_PER_UNIT, TYPE_ALIGN (t));
1083 unsigned int type_align = TYPE_ALIGN (type);
1085 type_align = desired_align;
1087 type_align = MAX (type_align, desired_align)
1079 unsigned int type_align = TYPE_ALIGN (type); local
1098 unsigned int type_align = TYPE_ALIGN (type); local
1388 unsigned int type_align = TYPE_ALIGN (type); local
1434 unsigned int type_align = TYPE_ALIGN (type); local
1600 unsigned int type_align = BITS_PER_UNIT; local
    [all...]
targhooks.cc 323 tree type_align; local
326 type_align = size_int (TYPE_ALIGN_UNIT (type));
327 if (tree_int_cst_lt (type_align, sizetype_size))
330 cookie_size = type_align;
1466 return TYPE_ALIGN (type);
2415 if (boundary < TYPE_ALIGN (type))
builtins.cc 269 align = TYPE_ALIGN (TREE_TYPE (exp));
323 TYPE_ALIGN of a pointer indirection to derive alignment.
345 align = TYPE_ALIGN (TREE_TYPE (exp));
4909 set_mem_align (dstb, TYPE_ALIGN (targetm.fn_abi_va_list (cfun->decl)));
4912 set_mem_align (srcb, TYPE_ALIGN (targetm.fn_abi_va_list (cfun->decl)));
6475 unsigned int mode_align, type_align;
6497 type_align = mode_align;
6499 type_align = val;
6520 type_align = TYPE_ALIGN (ttype)
6473 unsigned int mode_align, type_align; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
gdbtypes.c 3596 type_align (struct type *type)
3630 align = type_align (type->target_type ());
3642 ULONGEST f_align = type_align (type->field (i).type ());
3595 type_align (struct type *type) function
gdbarch-gen.c 259 gdbarch_type_align_ftype *type_align = default_type_align; member in struct:gdbarch
531 /* Skip verify of type_align, invalid_p == 0. */
1390 "gdbarch_dump: type_align = <%s>\n",
1391 host_address_to_string (gdbarch->type_align));
5452 gdb_assert (gdbarch->type_align != NULL);
5455 return gdbarch->type_align (gdbarch, type);
5460 gdbarch_type_align_ftype type_align)
5462 gdbarch->type_align = type_align;
  /src/external/gpl3/gdb.old/dist/gdb/
gdbtypes.c 3561 type_align (struct type *type)
3595 align = type_align (type->target_type ());
3607 ULONGEST f_align = type_align (type->field (i).type ());
3560 type_align (struct type *type) function
gdbarch.c 257 gdbarch_type_align_ftype *type_align = default_type_align; member in struct:gdbarch
526 /* Skip verify of type_align, invalid_p == 0 */
1378 "gdbarch_dump: type_align = <%s>\n",
1379 host_address_to_string (gdbarch->type_align));
5403 gdb_assert (gdbarch->type_align != NULL);
5406 return gdbarch->type_align (gdbarch, type);
5411 gdbarch_type_align_ftype type_align)
5413 gdbarch->type_align = type_align;
  /src/external/gpl3/gcc/dist/gcc/config/i386/
i386.cc 3578 && (!TYPE_USER_ALIGN (type) || TYPE_ALIGN (type) > 128))
3580 if (TYPE_ALIGN (type) < 128)
3663 if (TYPE_ALIGN (type) < 128)
3700 return TYPE_ALIGN (type) >= 128;
3717 align = TYPE_ALIGN (type);
4840 unsigned int type_align;
4902 type_align = TYPE_ALIGN (type);
4934 && ((needed_intregs && TYPE_ALIGN (type) > 64)
4935 || TYPE_ALIGN (type) > 128))
4827 unsigned int type_align; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
i386.cc 3477 && (!TYPE_USER_ALIGN (type) || TYPE_ALIGN (type) > 128))
3479 if (TYPE_ALIGN (type) < 128)
3562 if (TYPE_ALIGN (type) < 128)
3599 return TYPE_ALIGN (type) >= 128;
3616 align = TYPE_ALIGN (type);
4723 unsigned int type_align;
4783 type_align = TYPE_ALIGN (type);
4815 && ((needed_intregs && TYPE_ALIGN (type) > 64)
4816 || TYPE_ALIGN (type) > 128))
4710 unsigned int type_align; local
    [all...]

Completed in 80 milliseconds