Lines Matching +defs:lo +defs:size
451 // We intentionally use a lower size for thunkSectionSpacing than the maximum
915 uint16_t lo = read16(ctx, buf + 2);
917 ((lo & 0x0800) << 8) | // J2
918 ((lo & 0x2000) << 5) | // J1
920 ((lo & 0x07ff) << 1)); // imm11:0
927 uint16_t lo = read16(ctx, buf + 2);
929 ((lo & 0x7ff) << 1)); // imm11:0
937 uint16_t lo = read16(ctx, buf + 2);
939 (~((lo ^ (hi << 3)) << 10) & 0x00800000) | // I1
940 (~((lo ^ (hi << 1)) << 11) & 0x00400000) | // I2
942 ((lo & 0x007ff) << 1)); // imm11:0
963 uint16_t lo = read16(ctx, buf + 2);
966 ((lo & 0x7000) >> 4) | // imm3
967 (lo & 0x00ff)); // imm8
1011 uint16_t lo = read16(ctx, buf + 2);
1013 (lo & 0x7000) >> 4 | // imm3
1014 (lo & 0x00ff); // imm8
1126 uint64_t start = 0, width = 0, size = sec->getSize();
1149 toLittleEndianInstructions(buf, start, size, width);
1208 for (size_t i = firstGlobal, end = eSyms.size(); i != end; ++i) {
1216 sym->size = eSym.st_size;
1241 << this << "' does not have correct size of " << ACLESESYM_SIZE
1321 for (size_t i = 0, e = syms.size(); i != e; ++i) {
1338 impLibMaxAddr = sym->value + sym->size;
1394 (getVA() + s->offset + s->size));
1399 addSyntheticLocal(ctx, "$t", STT_NOTYPE, /*off=*/0, /*size=*/0, *this);
1406 return entries.size() * entsize;
1432 s->offset = i * s->size;
1434 s->sym->type, s->offset | 1, s->size, this)
1481 osec->size = isec->getSize();
1484 off = osec->offset + osec->size;
1488 const auto shnum = osIsPairs.size() + 1;