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

  /src/external/gpl3/gcc.old/dist/gcc/
sparseset.cc 30 unsigned int n_bytes = sizeof (struct sparseset_def) local
33 sparseset set = XNEWVAR (struct sparseset_def, n_bytes);
39 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_DEFINED (set, n_bytes));
lra.cc 682 size_t n_bytes;
688 n_bytes = sizeof (struct lra_static_insn_data)
691 data = XNEWVAR (struct lra_static_insn_data, n_bytes);
680 size_t n_bytes; local
  /src/external/gpl3/binutils/dist/opcodes/
s12z-dis.c 345 int n_bytes = local
394 return n_bytes;
s12z-opc.c 3105 int n_bytes = 0;
3118 n_bytes++;
3136 n_bytes += n;
3139 n_bytes += 1;
3141 return n_bytes;
3096 int n_bytes = 0; local
  /src/external/gpl3/binutils.old/dist/opcodes/
s12z-dis.c 345 int n_bytes = local
394 return n_bytes;
s12z-opc.c 3105 int n_bytes = 0;
3118 n_bytes++;
3136 n_bytes += n;
3139 n_bytes += 1;
3141 return n_bytes;
3096 int n_bytes = 0; local
  /src/common/include/rpc/
xdr.h 323 char *n_bytes; member in struct:netobj
  /src/sys/external/bsd/dwc2/dist/
dwc2_hcdddma.c 118 qh->n_bytes = kmem_zalloc(sizeof(u32) * dwc2_max_desc_num(qh), KM_SLEEP);
119 if (!qh->n_bytes) {
136 kmem_free(qh->n_bytes, sizeof(u32) * dwc2_max_desc_num(qh));
137 qh->n_bytes = NULL;
550 qh->n_bytes[idx] = max_xfer_size;
552 qh->n_bytes[idx] = frame_desc->length;
555 dma_desc->status = qh->n_bytes[idx] << HOST_DMA_ISOC_NBYTES_SHIFT &
710 qh->n_bytes[n_desc] = len;
916 frame_desc->actual_length = qh->n_bytes[idx] - remain;
920 frame_desc->actual_length = qh->n_bytes[idx] - remain
1148 u32 n_bytes; local
    [all...]
dwc2_hcd.h 265 * @n_bytes: Xfer Bytes array. Each element corresponds to a transfer
307 u32 *n_bytes; member in struct:dwc2_qh
  /src/external/gpl3/binutils/dist/include/opcode/
msp430-decode.h 119 int n_bytes; /* Opcode size in BYTES. */ member in struct:__anon8322
rl78.h 169 int n_bytes; member in struct:__anon8333
rx.h 248 int n_bytes; member in struct:__anon8338
  /src/external/gpl3/binutils.old/dist/include/opcode/
msp430-decode.h 119 int n_bytes; /* Opcode size in BYTES. */ member in struct:__anon9786
rl78.h 169 int n_bytes; member in struct:__anon9797
rx.h 248 int n_bytes; member in struct:__anon9802
  /src/external/gpl3/binutils/dist/gas/config/
tc-s12z.c 447 lex_opr (uint8_t *buffer, int *n_bytes, expressionS *exp,
455 *n_bytes = 0;
469 *n_bytes = 1;
476 *n_bytes = 1;
491 *n_bytes = 2;
496 *n_bytes = 4;
503 for (i = 1; i < *n_bytes ; ++i)
505 buffer[i] = c >> (8 * (*n_bytes - i - 1));
517 *n_bytes = 4;
531 *n_bytes = 1
870 int n_bytes; local
1198 int n_bytes; local
1638 int n_bytes; local
1738 int n_bytes; local
1808 int n_bytes; local
1824 int n_bytes; local
1894 int n_bytes; local
1968 int n_bytes = 3; local
2094 int n_bytes = 2; local
2358 int n_bytes; local
2421 int n_bytes; local
2598 int n_bytes; local
2658 int n_bytes; local
2849 int n_bytes; local
2964 int n_bytes; local
3013 int n_bytes; local
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-s12z.c 447 lex_opr (uint8_t *buffer, int *n_bytes, expressionS *exp,
455 *n_bytes = 0;
469 *n_bytes = 1;
476 *n_bytes = 1;
491 *n_bytes = 2;
496 *n_bytes = 4;
503 for (i = 1; i < *n_bytes ; ++i)
505 buffer[i] = c >> (8 * (*n_bytes - i - 1));
517 *n_bytes = 4;
531 *n_bytes = 1
870 int n_bytes; local
1198 int n_bytes; local
1638 int n_bytes; local
1738 int n_bytes; local
1808 int n_bytes; local
1824 int n_bytes; local
1894 int n_bytes; local
1968 int n_bytes = 3; local
2094 int n_bytes = 2; local
2358 int n_bytes; local
2421 int n_bytes; local
2598 int n_bytes; local
2658 int n_bytes; local
2849 int n_bytes; local
2964 int n_bytes; local
3013 int n_bytes; local
    [all...]
  /src/sys/dev/pci/
xmm7360.c 559 int n_packets, n_bytes, max_size, sequence; member in struct:mux_frame
1096 frame->n_bytes = 0;
1104 if (frame->n_bytes == 0)
1109 while (frame->n_bytes & 3)
1110 frame->n_bytes++;
1112 BUG_ON(frame->n_bytes + total_length > frame->max_size);
1115 *frame->last_tag_next = frame->n_bytes;
1117 if (frame->n_bytes == 0) {
1126 frame->n_bytes += sizeof(struct mux_first_header);
1128 struct mux_next_header *hdr = (struct mux_next_header *)(&frame->data[frame->n_bytes]);
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/avr/
avr.cc 256 Return true if the least significant N_BYTES bytes of XVAL all have a
261 avr_popcount_each_byte (rtx xval, int n_bytes, int pop_mask)
268 for (int i = 0; i < n_bytes; i++)
3719 int n_bytes = GET_MODE_SIZE (mode);
3721 return (n_bytes > 2
3731 int n_bytes = GET_MODE_SIZE (mode);
3733 return (n_bytes > 1
3799 int n_bytes = GET_MODE_SIZE (GET_MODE (dest));
3816 switch (n_bytes)
3855 && n_bytes <= 4)
3718 int n_bytes = GET_MODE_SIZE (mode); local
3730 int n_bytes = GET_MODE_SIZE (mode); local
3798 int n_bytes = GET_MODE_SIZE (GET_MODE (dest)); local
3899 int n_bytes = GET_MODE_SIZE (GET_MODE (dest)); local
6222 int n_bytes = GET_MODE_SIZE (GET_MODE (xreg)); local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/pa/
pa.cc 3022 unsigned HOST_WIDE_INT n_bytes = INTVAL (operands[4]);
3035 operands[4] = GEN_INT (n_bytes - 16);
3047 if (n_bytes % 16 != 0)
3049 operands[4] = GEN_INT (n_bytes % 8);
3050 if (n_bytes % 16 >= 8)
3052 if (n_bytes % 8 != 0)
3054 if (n_bytes % 16 >= 8)
3056 if (n_bytes % 8 != 0)
3063 operands[4] = GEN_INT (n_bytes - 8);
3075 if (n_bytes % 8 != 0
3014 unsigned HOST_WIDE_INT n_bytes = INTVAL (operands[4]); local
3142 unsigned HOST_WIDE_INT n_bytes = INTVAL (XEXP (XVECEXP (pat, 0, 6), 0)); local
3178 unsigned HOST_WIDE_INT n_bytes = INTVAL (operands[2]); local
3284 unsigned HOST_WIDE_INT n_bytes = INTVAL (XEXP (XVECEXP (pat, 0, 3), 0)); local
    [all...]

Completed in 90 milliseconds