Home | History | Annotate | Download | only in profviz

Lines Matching refs:alignSize

298     type.alignSize = 0;
302 var size, alignSize;
305 alignSize = Runtime.getAlignSize(field, size);
308 alignSize = Runtime.getAlignSize(null, Types.types[field].alignSize);
312 alignSize = 1;
316 if (type.packed) alignSize = 1;
317 type.alignSize = Math.max(type.alignSize, alignSize);
318 var curr = Runtime.alignMemory(type.flatSize, alignSize); // if necessary, place this on aligned memory
326 type.flatSize = Runtime.alignMemory(type.flatSize, type.alignSize);