| /src/sbin/gpt/ |
| map.c | 252 off_t alignsize, prevsize; local 304 alignsize = size; 306 alignsize = (size + alignment) / alignment * alignment; 308 if (alignsize < m->map_size) { /* shrinking */ 310 m->map_size = alignsize; 312 o = map_create(m->map_start + alignsize, 313 prevsize - alignsize, MAP_TYPE_UNUSED); 323 return alignsize; 325 n->map_start -= alignsize; 326 n->map_size += alignsize; [all...] |
| map.c | 252 off_t alignsize, prevsize; local 304 alignsize = size; 306 alignsize = (size + alignment) / alignment * alignment; 308 if (alignsize < m->map_size) { /* shrinking */ 310 m->map_size = alignsize; 312 o = map_create(m->map_start + alignsize, 313 prevsize - alignsize, MAP_TYPE_UNUSED); 323 return alignsize; 325 n->map_start -= alignsize; 326 n->map_size += alignsize; [all...] |
| /src/external/gpl2/dtc/dist/ |
| dtc.c | 20 int alignsize; /* Additional padding to blob accroding to the alignsize */ variable 180 alignsize = 0; 209 alignsize = strtol(optarg, NULL, 0); 210 if (!is_power_of_2(alignsize)) 212 alignsize);
|
| dtc.c | 20 int alignsize; /* Additional padding to blob accroding to the alignsize */ variable 180 alignsize = 0; 209 alignsize = strtol(optarg, NULL, 0); 210 if (!is_power_of_2(alignsize)) 212 alignsize);
|
| /src/external/gpl3/gcc.old/dist/gcc/d/ |
| d-target.cc | 211 Target::alignsize (Type *type) function in class:Target 223 unsigned int align = type->alignsize () * BITS_PER_UNIT;
|
| d-target.cc | 211 Target::alignsize (Type *type) function in class:Target 223 unsigned int align = type->alignsize () * BITS_PER_UNIT;
|
| types.cc | 589 STRUCTSIZE and ALIGNSIZE. Apply any type attributes ATTRS and compute 593 finish_aggregate_type (unsigned structsize, unsigned alignsize, tree type) 598 SET_TYPE_ALIGN (type, alignsize * BITS_PER_UNIT); 599 TYPE_PACKED (type) = (alignsize == 1); 1092 unsigned alignsize = t->sym->alignment.isDefault () local 1093 ? t->sym->alignsize : t->sym->alignment.get (); 1097 SET_TYPE_ALIGN (t->ctype, alignsize * BITS_PER_UNIT); 1098 TYPE_PACKED (t->ctype) = (alignsize == 1); 1104 finish_aggregate_type (structsize, alignsize, t->ctype); 1155 finish_aggregate_type (t->sym->structsize, t->sym->alignsize, basetype) [all...] |
| types.cc | 589 STRUCTSIZE and ALIGNSIZE. Apply any type attributes ATTRS and compute 593 finish_aggregate_type (unsigned structsize, unsigned alignsize, tree type) 598 SET_TYPE_ALIGN (type, alignsize * BITS_PER_UNIT); 599 TYPE_PACKED (type) = (alignsize == 1); 1092 unsigned alignsize = t->sym->alignment.isDefault () local 1093 ? t->sym->alignsize : t->sym->alignment.get (); 1097 SET_TYPE_ALIGN (t->ctype, alignsize * BITS_PER_UNIT); 1098 TYPE_PACKED (t->ctype) = (alignsize == 1); 1104 finish_aggregate_type (structsize, alignsize, t->ctype); 1155 finish_aggregate_type (t->sym->structsize, t->sym->alignsize, basetype) [all...] |
| modules.cc | 552 size_t alignsize = MAX (TYPE_ALIGN_UNIT (type), local 554 finish_aggregate_type (offset, alignsize, type);
|
| modules.cc | 552 size_t alignsize = MAX (TYPE_ALIGN_UNIT (type), local 554 finish_aggregate_type (offset, alignsize, type);
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| aggregate.h | 77 unsigned alignsize; // size of struct for alignment purposes member in class:AggregateDeclaration
|
| aggregate.h | 77 unsigned alignsize; // size of struct for alignment purposes member in class:AggregateDeclaration
|