Lines Matching defs:e
510 * need to use a register for temporary calculation (e.g. index type
654 * (i.e. merge the result with those high elements)
2964 * It is possible to trigger an alignment fault pre-LSE2, e.g. with an
3943 int e;
3944 for (e = 0; e < elements; e++) {
3948 do_vec_ld(s, tt, e, clean_addr, mop);
4034 int e;
4035 for (e = 0; e < elements; e++) {
4039 do_vec_st(s, tt, e, clean_addr, mop);
4587 /* The input should be a value in the bottom e bits (with higher
4589 * of size e in a 64 bit integer.
4591 static uint64_t bitfield_replicate(uint64_t mask, unsigned int e)
4593 assert(e != 0);
4594 while (e < 64) {
4595 mask |= mask << e;
4596 e *= 2;
4615 unsigned e, levels, s, r;
4621 * are vectors of identical elements of size e = 2, 4, 8, 16, 32 or
4623 * of between 1 and e-1 non-zero bits, rotated within the
4624 * element by between 0 and e-1 bits.
4638 * In all cases the rotation is by immr % e (and immr is 6 bits).
4647 e = 1 << len;
4649 levels = e - 1;
4659 * by r within the element (which is e bits wide)...
4663 mask = (mask >> r) | (mask << (e - r));
4664 mask &= MAKE_64BIT_MASK(0, e);
4667 mask = bitfield_replicate(mask, e);
7357 handle_fp_compare(s, a->esz, a->rn, a->rm, a->z, a->e);
7381 handle_fp_compare(s, a->esz, a->rn, a->rm, false, a->e);