HomeSort by: relevance | last modified time | path
    Searched defs:esize (Results 1 - 25 of 43) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/libquadmath/printf/
mul_n.c 128 mp_size_t esize = size - 1; /* even size */ local
131 MPN_MUL_N_RECURSE (prodp, up, vp, esize, tspace);
132 cy_limb = mpn_addmul_1 (prodp + esize, up, esize, vp[esize]);
133 prodp[esize + esize] = cy_limb;
134 cy_limb = mpn_addmul_1 (prodp + esize, vp, size, up[esize]);
136 prodp[esize + size] = cy_limb
    [all...]
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
mul_n.c 128 mp_size_t esize = size - 1; /* even size */ local
131 MPN_MUL_N_RECURSE (prodp, up, vp, esize, tspace);
132 cy_limb = mpn_addmul_1 (prodp + esize, up, esize, vp[esize]);
133 prodp[esize + esize] = cy_limb;
134 cy_limb = mpn_addmul_1 (prodp + esize, vp, size, up[esize]);
136 prodp[esize + size] = cy_limb
    [all...]
  /src/external/gpl3/gdb/dist/sim/arm/
arminit.c 284 int esize = (TFLAG ? 0 : 4); local
310 SETABORT (IBIT, state->prog32Sig ? ABORT32MODE : SVC26MODE, esize);
322 SETABORT (IBIT, state->prog32Sig ? IRQ32MODE : IRQ26MODE, esize);
328 SETABORT (INTBITS, state->prog32Sig ? FIQ32MODE : FIQ26MODE, esize);
  /src/external/gpl3/gdb.old/dist/sim/arm/
arminit.c 284 int esize = (TFLAG ? 0 : 4); local
310 SETABORT (IBIT, state->prog32Sig ? ABORT32MODE : SVC26MODE, esize);
322 SETABORT (IBIT, state->prog32Sig ? IRQ32MODE : IRQ26MODE, esize);
328 SETABORT (INTBITS, state->prog32Sig ? FIQ32MODE : FIQ26MODE, esize);
  /src/sys/dev/ieee1394/
fwdma.h 56 bus_size_t esize; member in struct:fwdma_alloc_multi
66 int offset = am->esize * index;
75 int offset = am->esize * index;
86 off = (am->esize * start) % am->ssize;
87 eoff = (am->esize * end) % am->ssize;
88 seg = &am->seg[am->esize * start / am->ssize];
89 eseg = &am->seg[am->esize * end / am->ssize];
105 off, eoff - off + am->esize, op);
  /src/sys/kern/
subr_hash.c 62 size_t esize; local
66 esize = sizeof(*hashtbl_list);
69 esize = sizeof(*hashtbl_pslist);
72 esize = sizeof(*hashtbl_slist);
75 esize = sizeof(*hashtbl_tailq);
80 return esize;
97 size_t esize; local
107 esize = hash_list_size(htype);
109 p = kmem_alloc(hashsize * esize, waitok ? KM_SLEEP : KM_NOSLEEP);
145 const size_t esize = hash_list_size(htype) local
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
mdtest.c 243 unsigned int esize; local
292 EVP_DigestFinal_ex(ectx, res, &esize);
295 if (hash->hsize != esize) {
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/instmem/
nouveau_nvkm_subdev_instmem_nv50.c 156 bus_size_t esize; local
184 esize = nvkm_memory_size(&eobj->base.memory);
192 bus_space_unmap(ebst, ebsh, esize);
  /src/sys/external/bsd/drm2/dist/drm/radeon/
r100_track.h 26 unsigned esize; member in struct:r100_cs_track_array
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-convert.cc 471 dinteger_t esize = ebtype->nextOf ()->size (); local
476 if (esize != tsize)
480 if (tsize == 0 || (dim * esize) % tsize != 0)
486 dim = (dim * esize) / tsize;
  /src/sys/arch/aarch64/aarch64/
db_trace.c 222 int esize, len; local
225 esize = (1 << len);
226 imms &= (esize - 1);
227 immr &= (esize - 1);
228 result = rotate(esize, (1ULL << (imms + 1)) - 1, immr);
229 while (esize < bitwidth) {
230 result |= (result << esize);
231 esize <<= 1;
disasm.c 679 int esize, len; local
688 esize = (1 << len);
689 imms &= (esize - 1);
690 if (imms == (uint64_t)(esize - 1))
701 int esize, len; local
704 esize = (1 << len);
705 imms &= (esize - 1);
706 immr &= (esize - 1);
707 result = rotate(esize, (1ULL << (imms + 1)) - 1, immr);
708 while (esize < bitwidth)
    [all...]
  /src/sys/dev/i2o/
iop.c 1165 int esize, size, rv; local
1168 esize = le32toh(sc->sc_status.expectedlctsize);
1169 lct = malloc(esize, M_DEVBUF, M_WAITOK);
1170 if ((rv = iop_lct_get0(sc, lct, esize, 0)) != 0) {
1176 if (esize != size) {
  /src/sys/uvm/
uvm_map.c 5426 const u_int esize = uimin(sizeof(*vme), elem_size); local
5430 error = sysctl_copyout(l, &vme[i], dp, esize);
  /src/external/bsd/jemalloc/dist/src/
arena.c 334 size_t esize = usize + sz_large_pad; local
337 arena_get_ehooks(arena), esize, alignment);
338 edata_t *edata = pa_alloc(tsdn, &arena->pa_shard, esize, alignment,
  /src/external/bsd/jemalloc.old/dist/src/
extent.c 458 size_t esize, size_t alignment) {
461 size_t max_size = esize + PAGE_CEILING(alignment) - PAGE;
463 if (max_size < esize) {
475 * with sizes in [esize, max_size).
477 extent = extents_fit_alignment(extents, esize, max_size,
873 size_t esize = size + pad; local
887 extent_size_get(extent) < esize ||
895 extent = extents_fit_locked(tsdn, arena, extents, esize,
944 size_t esize = size + pad; local
948 if (extent_size_get(*extent) < leadsize + esize) {
1234 size_t esize = size + pad; local
1423 size_t esize = size + pad; local
    [all...]
  /src/external/gpl3/binutils/dist/opcodes/
aarch64-asm.c 485 int esize = aarch64_get_qualifier_esize (opnd0_qualifier); local
486 assert (esize == 4 || esize == 2 || esize == 1);
489 if (esize == 1)
492 if (esize == 4)
583 int esize = aarch64_get_qualifier_esize (inst->operands[0].qualifier); local
588 res = aarch64_logical_immediate_p (imm, esize, &value);
1289 unsigned int esize = aarch64_get_qualifier_esize (info->qualifier); local
1292 (info->reglane.index * 2 + 1) * esize);
1391 unsigned int esize; local
1408 unsigned int esize; local
    [all...]
aarch64-dis.c 936 decoded value in *RESULT if so. ESIZE is the number of bytes in the
939 decode_limm (uint32_t esize, aarch64_insn value, int64_t *result)
973 if (simd_size > esize * 8)
1002 *result = imm & ~((uint64_t) -1 << (esize * 4) << (esize * 4));
1014 uint32_t esize;
1019 esize = aarch64_get_qualifier_esize (inst->operands[0].qualifier);
1020 return decode_limm (esize, value, &info->imm.value);
2313 int esize = aarch64_get_qualifier_esize (inst->operands[0].qualifier);
2315 && aarch64_sve_dupm_mov_immediate_p (info->imm.value, esize));
1013 uint32_t esize; local
2312 int esize = aarch64_get_qualifier_esize (inst->operands[0].qualifier); local
    [all...]
aarch64-opc.c 1363 ESIZE is the number of bytes in the decoded immediate value.
1368 aarch64_logical_immediate_p (uint64_t value, int esize, aarch64_insn *encoding)
1376 DEBUG_TRACE ("enter with 0x%" PRIx64 "(%" PRIi64 "), esize: %d", value,
1377 value, esize);
1387 upper = (uint64_t) -1 << (esize * 4) << (esize * 4);
1393 for (i = esize * 8; i < 64; i *= 2)
2852 int esize = aarch64_get_qualifier_esize (opnds[0].qualifier);
2861 if (!aarch64_wide_constant_p (imm, esize == 4, NULL))
2869 if (!aarch64_logical_immediate_p (imm, esize, NULL)
2850 int esize = aarch64_get_qualifier_esize (opnds[0].qualifier); local
2955 int esize = aarch64_get_qualifier_esize (opnds[0].qualifier); local
3234 int esize = aarch64_get_qualifier_esize (opnds[0].qualifier); local
3247 int esize = aarch64_get_qualifier_esize (opnds[0].qualifier); local
    [all...]
  /src/external/gpl3/binutils.old/dist/opcodes/
aarch64-asm.c 487 int esize = aarch64_get_qualifier_esize (opnd0_qualifier); local
488 assert (esize == 4 || esize == 2 || esize == 1);
491 if (esize == 1)
494 if (esize == 4)
585 int esize = aarch64_get_qualifier_esize (inst->operands[0].qualifier); local
590 res = aarch64_logical_immediate_p (imm, esize, &value);
1292 unsigned int esize = aarch64_get_qualifier_esize (info->qualifier); local
1295 (info->reglane.index * 2 + 1) * esize);
1379 unsigned int esize; local
1396 unsigned int esize; local
    [all...]
aarch64-dis.c 935 decoded value in *RESULT if so. ESIZE is the number of bytes in the
938 decode_limm (uint32_t esize, aarch64_insn value, int64_t *result)
972 if (simd_size > esize * 8)
1001 *result = imm & ~((uint64_t) -1 << (esize * 4) << (esize * 4));
1013 uint32_t esize;
1018 esize = aarch64_get_qualifier_esize (inst->operands[0].qualifier);
1019 return decode_limm (esize, value, &info->imm.value);
2307 int esize = aarch64_get_qualifier_esize (inst->operands[0].qualifier);
2309 && aarch64_sve_dupm_mov_immediate_p (info->imm.value, esize));
1011 uint32_t esize; local
2305 int esize = aarch64_get_qualifier_esize (inst->operands[0].qualifier); local
    [all...]
  /src/external/gpl3/gdb/dist/opcodes/
aarch64-asm.c 487 int esize = aarch64_get_qualifier_esize (opnd0_qualifier); local
488 assert (esize == 4 || esize == 2 || esize == 1);
491 if (esize == 1)
494 if (esize == 4)
585 int esize = aarch64_get_qualifier_esize (inst->operands[0].qualifier); local
590 res = aarch64_logical_immediate_p (imm, esize, &value);
1292 unsigned int esize = aarch64_get_qualifier_esize (info->qualifier); local
1295 (info->reglane.index * 2 + 1) * esize);
1379 unsigned int esize; local
1396 unsigned int esize; local
    [all...]
  /src/external/gpl3/gdb.old/dist/opcodes/
aarch64-asm.c 466 int esize = aarch64_get_qualifier_esize (opnd0_qualifier); local
467 assert (esize == 4 || esize == 2 || esize == 1);
470 if (esize == 1)
473 if (esize == 4)
564 int esize = aarch64_get_qualifier_esize (inst->operands[0].qualifier); local
569 res = aarch64_logical_immediate_p (imm, esize, &value);
1271 unsigned int esize = aarch64_get_qualifier_esize (info->qualifier); local
1273 insert_fields (code, (info->reglane.index * 2 + 1) * esize, 0
1287 unsigned int esize = aarch64_get_qualifier_esize (info->qualifier); local
1373 unsigned int esize; local
1390 unsigned int esize; local
    [all...]
  /src/external/gpl3/binutils/dist/bfd/
ecoff.c 3531 bfd_size_type esize;
3548 esize = symhdr->iextMax * external_ext_size;
3549 external_ext = _bfd_malloc_and_read (abfd, esize, esize);
3550 if (external_ext == NULL && esize != 0)
3522 bfd_size_type esize; local
  /src/external/gpl3/binutils.old/dist/bfd/
ecoff.c 3521 bfd_size_type esize;
3538 esize = symhdr->iextMax * external_ext_size;
3539 external_ext = _bfd_malloc_and_read (abfd, esize, esize);
3540 if (external_ext == NULL && esize != 0)
3512 bfd_size_type esize; local

Completed in 76 milliseconds

1 2