HomeSort by: relevance | last modified time | path
    Searched defs:bytesize (Results 1 - 23 of 23) sorted by relevancy

  /src/external/bsd/top/dist/machine/
m_sunos4.c 275 static int bytesize; variable
383 bytesize = epages - pages;
384 count = bytesize / sizeof(struct page);
472 (void) getkval(pages, (int *)physpage, bytesize, "array _page");
  /src/usr.bin/ftp/
ftp_var.h 243 GLOBAL int bytesize; /* local byte size in binary */ variable
  /src/sys/fs/nfs/common/
nfs_commonsubs.c 402 int rem, bytesize; local
409 bytesize = NFSX_UNSIGNED + siz + rem;
447 return (bytesize);
488 int fullsiz, rem, bytesize = 0; local
500 bytesize = NFSX_V2FH;
507 bytesize = 2 * NFSX_UNSIGNED + fullsiz;
511 bytesize = NFSX_UNSIGNED + fullsiz;
516 return (bytesize);
2551 int cnt, i, bytesize; local
2556 bytesize = (cnt + 1) * NFSX_UNSIGNED
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
genmodes.cc 58 unsigned int bytesize; /* storage size in addressable units */ member in struct:mode_data
294 validate_field (m, bytesize);
330 m->bytesize = 0;
340 m->bytesize = 4;
377 m->bytesize = m->component->bytesize;
389 m->bytesize = 2 * m->component->bytesize;
406 m->bytesize = m->ncomponents * m->component->bytesize;
    [all...]
expmed.cc 1860 poly_uint64 bytesize = bits_to_bytes_round_up (bitnum + bitsize);
1861 op0 = adjust_bitfield_address_size (op0, BLKmode, bytenum, bytesize);
1856 poly_uint64 bytesize = bits_to_bytes_round_up (bitnum + bitsize); local
expr.cc 6680 poly_uint64 bytesize;
6686 && multiple_p (bitsize, BITS_PER_UNIT, &bytesize)
6710 store_constructor (exp, target, cleared, bytesize, reverse);
7554 poly_int64 bytesize = bits_to_bytes_round_up (bitsize);
7558 gen_int_mode (bytesize, Pmode),
7597 poly_int64 bytesize = exact_div (bitsize, BITS_PER_UNIT);
7598 store_constructor (exp, to_rtx, 0, bytesize, reverse);
11392 poly_int64 bytesize = bits_to_bytes_round_up (bitsize);
11395 gen_int_mode (bytesize, Pmode),
6666 poly_uint64 bytesize; local
7540 poly_int64 bytesize = bits_to_bytes_round_up (bitsize); local
7583 poly_int64 bytesize = exact_div (bitsize, BITS_PER_UNIT); local
11372 poly_int64 bytesize = bits_to_bytes_round_up (bitsize); local
  /src/external/gpl3/gcc/dist/gcc/
genmodes.cc 58 unsigned int bytesize; /* storage size in addressable units */ member in struct:mode_data
295 validate_field (m, bytesize);
331 m->bytesize = 0;
341 m->bytesize = 4;
378 m->bytesize = m->component->bytesize;
390 m->bytesize = 2 * m->component->bytesize;
407 m->bytesize = m->ncomponents * m->component->bytesize;
    [all...]
expmed.cc 1873 poly_uint64 bytesize = bits_to_bytes_round_up (bitnum + bitsize);
1874 op0 = adjust_bitfield_address_size (op0, BLKmode, bytenum, bytesize);
1869 poly_uint64 bytesize = bits_to_bytes_round_up (bitnum + bitsize); local
expr.cc 7364 poly_uint64 bytesize;
7370 && multiple_p (bitsize, BITS_PER_UNIT, &bytesize)
7394 store_constructor (exp, target, cleared, bytesize, reverse);
8268 poly_int64 bytesize = bits_to_bytes_round_up (bitsize);
8272 gen_int_mode (bytesize, Pmode),
8311 poly_int64 bytesize = exact_div (bitsize, BITS_PER_UNIT);
8312 store_constructor (exp, to_rtx, 0, bytesize, reverse);
12212 poly_int64 bytesize = bits_to_bytes_round_up (bitsize);
12215 gen_int_mode (bytesize, Pmode),
7350 poly_uint64 bytesize; local
8254 poly_int64 bytesize = bits_to_bytes_round_up (bitsize); local
8297 poly_int64 bytesize = exact_div (bitsize, BITS_PER_UNIT); local
12192 poly_int64 bytesize = bits_to_bytes_round_up (bitsize); local
  /src/external/gpl3/gdb/dist/gdb/
value.c 3381 LONGEST bytesize;
3406 bytesize = (bitpos + bitsize + 7) / 8;
3407 oword = extract_unsigned_integer (addr, bytesize, byte_order);
3411 bitpos = bytesize * 8 - bitpos - bitsize;
3416 store_unsigned_integer (addr, bytesize, byte_order, oword);
3374 LONGEST bytesize; local
xtensa-tdep.c 372 int bytesize = reg->byte_size; local
373 int bitsize = bytesize * 8;
380 for (i = 0; i < bytesize; i++)
383 mem |= (buffer[bytesize - i - 1] << 24);
388 for (i = 0; i < bytesize; i++)
397 bytesize & 3 == 0 -> nothing to do, we use the full 32 bits,
398 bytesize & 3 == x -> shift (4-x) * 8. */
400 *ptr = mem >> (((0 - bytesize) & 3) * 8);
456 int bytesize = reg->byte_size; local
457 int bitsize = bytesize * 8
    [all...]
arm-tdep.c 6558 char bytesize[12] = {2, 2, 2, 2, 8, 1, 8, 1, 8, 2, 8, 2}; local
6582 if (bytesize[opcode] == 8)
6589 if (bytesize[opcode] == 8)
6596 dsc->u.ldst.xfersize = bytesize[opcode];
  /src/external/gpl3/gdb.old/dist/gdb/
value.c 3340 LONGEST bytesize;
3365 bytesize = (bitpos + bitsize + 7) / 8;
3366 oword = extract_unsigned_integer (addr, bytesize, byte_order);
3370 bitpos = bytesize * 8 - bitpos - bitsize;
3375 store_unsigned_integer (addr, bytesize, byte_order, oword);
3333 LONGEST bytesize; local
xtensa-tdep.c 372 int bytesize = reg->byte_size; local
373 int bitsize = bytesize * 8;
380 for (i = 0; i < bytesize; i++)
383 mem |= (buffer[bytesize - i - 1] << 24);
388 for (i = 0; i < bytesize; i++)
397 bytesize & 3 == 0 -> nothing to do, we use the full 32 bits,
398 bytesize & 3 == x -> shift (4-x) * 8. */
400 *ptr = mem >> (((0 - bytesize) & 3) * 8);
456 int bytesize = reg->byte_size; local
457 int bitsize = bytesize * 8
    [all...]
arm-tdep.c 6561 char bytesize[12] = {2, 2, 2, 2, 8, 1, 8, 1, 8, 2, 8, 2}; local
6585 if (bytesize[opcode] == 8)
6592 if (bytesize[opcode] == 8)
6599 dsc->u.ldst.xfersize = bytesize[opcode];
  /src/external/gpl3/gcc.old/dist/gcc/config/tilegx/
tilegx.cc 1976 HOST_WIDE_INT bytesize = bitsize / BITS_PER_UNIT;
1986 i < bytesize;
1972 HOST_WIDE_INT bytesize = bitsize \/ BITS_PER_UNIT; local
  /src/external/gpl3/gcc.old/dist/gcc/config/tilepro/
tilepro.cc 1704 HOST_WIDE_INT bytesize = bitsize / BITS_PER_UNIT;
1710 for (i = 0, shift_amt = 0; i < bytesize; i++, shift_amt += BITS_PER_UNIT)
1700 HOST_WIDE_INT bytesize = bitsize \/ BITS_PER_UNIT; local
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
trans-stmt.cc 4180 gfc_do_allocate (tree bytesize, tree size, tree * pdata, stmtblock_t * pblock,
4195 if (gfc_can_put_var_on_stack (bytesize) && INTEGER_CST_P (size))
4205 tmp = gfc_call_malloc (pblock, TREE_TYPE (tmpvar), bytesize);
4566 tree bytesize; local
4572 bytesize = fold_build2_loc (input_location, MULT_EXPR,
4575 bytesize = size;
4578 tmp = gfc_do_allocate (bytesize, size, ptemp1, block, type);
trans-intrinsic.cc 8037 tree bytesize; local
8040 bytesize = build_int_cst (gfc_array_index_type,
8044 bytesize,
  /src/external/gpl3/gcc/dist/gcc/fortran/
trans-stmt.cc 4277 gfc_do_allocate (tree bytesize, tree size, tree * pdata, stmtblock_t * pblock,
4292 if (gfc_can_put_var_on_stack (bytesize) && INTEGER_CST_P (size))
4302 tmp = gfc_call_malloc (pblock, TREE_TYPE (tmpvar), bytesize);
4663 tree bytesize; local
4669 bytesize = fold_build2_loc (input_location, MULT_EXPR,
4672 bytesize = size;
4675 tmp = gfc_do_allocate (bytesize, size, ptemp1, block, type);
trans-intrinsic.cc 8060 tree bytesize; local
8063 bytesize = build_int_cst (gfc_array_index_type,
8067 bytesize,
  /src/external/gpl3/gcc.old/dist/gcc/config/ia64/
ia64.cc 5280 int bytesize;
5284 bytesize = int_size_in_bytes (valtype);
5287 if (bytesize == 0)
5289 for (i = 0; offset < bytesize; i++)
5272 int bytesize; local
  /src/external/gpl3/gcc/dist/gcc/config/ia64/
ia64.cc 5291 int bytesize;
5295 bytesize = int_size_in_bytes (valtype);
5298 if (bytesize == 0)
5300 for (i = 0; offset < bytesize; i++)
5283 int bytesize; local

Completed in 255 milliseconds