Lines Matching defs:upper
1328 uint32_t inst, upper, lower, sign, j1, j2;
1350 upper = TO_NATIVE(*(uint16_t *)loc);
1352 offset = sign_extend32(((upper & 0x000f) << 12) |
1353 ((upper & 0x0400) << 1) |
1361 * S = upper[10]
1362 * imm6 = upper[5:0]
1368 upper = TO_NATIVE(*(uint16_t *)loc);
1371 sign = (upper >> 10) & 1;
1375 ((upper & 0x03f) << 12) |
1383 * S = upper[10]
1384 * imm10 = upper[9:0]
1392 upper = TO_NATIVE(*(uint16_t *)loc);
1395 sign = (upper >> 10) & 1;
1401 ((upper & 0x03ff) << 12) |