Home | History | Annotate | Download | only in config

Lines Matching defs:bytes

336     int pointer_size;       /* size in bytes of a pointer */
1185 /* Output COUNT bytes to a memory location. */
1201 /* Count the number of bytes required for records. */
1234 char bytes[20];
1239 bytes[0] = (UNW_R2 | (mask >> 1));
1240 bytes[1] = (((mask & 0x01) << 7) | grsave);
1241 count += output_leb128 (bytes + 2, rlen, 0);
1242 (*f) (count, bytes, NULL);
1249 char bytes[20];
1260 bytes[0] = (UNW_R3 | r);
1261 count = output_leb128 (bytes + 1, rlen, 0);
1262 (*f) (count + 1, bytes, NULL);
1276 char bytes[2];
1278 bytes[0] = UNW_P2 | (brmask >> 1);
1279 bytes[1] = (((brmask & 1) << 7) | gr);
1280 (*f) (2, bytes, NULL);
1286 char bytes[2];
1330 bytes[0] = (UNW_P3 | (r >> 1));
1331 bytes[1] = (((r & 1) << 7) | reg);
1332 (*f) (2, bytes, NULL);
1345 char bytes[4];
1348 bytes[0] = UNW_P5;
1349 bytes[1] = ((grmask << 4) | ((frmask & 0x000f0000) >> 16));
1350 bytes[2] = ((frmask & 0x0000ff00) >> 8);
1351 bytes[3] = (frmask & 0x000000ff);
1352 (*f) (4, bytes, NULL);
1375 char bytes[20];
1378 count += output_leb128 (bytes + 1, w1, 0);
1383 count += output_leb128 (bytes + count, w2 >> 4, 0);
1433 bytes[0] = (UNW_P7 | r);
1434 (*f) (count, bytes, NULL);
1440 char bytes[20];
1443 bytes[0] = UNW_P8;
1506 bytes[1] = r;
1507 count += output_leb128 (bytes + 2, t, 0);
1508 (*f) (count, bytes, NULL);
1514 char bytes[3];
1515 bytes[0] = UNW_P9;
1516 bytes[1] = (grmask & 0x0f);
1517 bytes[2] = (gr & 0x7f);
1518 (*f) (3, bytes, NULL);
1524 char bytes[3];
1525 bytes[0] = UNW_P10;
1526 bytes[1] = (abi & 0xff);
1527 bytes[2] = (context & 0xff);
1528 (*f) (3, bytes, NULL);
1553 char bytes[20];
1560 bytes[0] = (UNW_B2 | (ecount & 0x1f));
1561 count += output_leb128 (bytes + 1, t, 0);
1562 (*f) (count, bytes, NULL);
1568 char bytes[20];
1575 bytes[0] = UNW_B3;
1576 count += output_leb128 (bytes + 1, t, 0);
1577 count += output_leb128 (bytes + count, ecount, 0);
1578 (*f) (count, bytes, NULL);
1584 char bytes[20];
1598 bytes[0] = (UNW_B4 | (r << 3));
1599 count += output_leb128 (bytes + 1, label, 0);
1600 (*f) (count, bytes, NULL);
1621 char bytes[20];
1624 bytes[0] = UNW_X1;
1630 bytes[1] = ((r << 7) | format_ab_reg (ab, reg));
1631 count += output_leb128 (bytes + 2, t, 0);
1632 count += output_leb128 (bytes + count, w1, 0);
1633 (*f) (count, bytes, NULL);
1645 char bytes[20];
1647 bytes[0] = UNW_X2;
1648 bytes[1] = (((x & 1) << 7) | format_ab_reg (ab, reg));
1649 bytes[2] = (((y & 1) << 7) | (treg & 0x7f));
1650 count += output_leb128 (bytes + 3, t, 0);
1651 (*f) (count, bytes, NULL);
1663 char bytes[20];
1666 bytes[0] = UNW_X3;
1672 bytes[1] = ((r << 7) | (qp & 0x3f));
1673 bytes[2] = format_ab_reg (ab, reg);
1674 count += output_leb128 (bytes + 3, t, 0);
1675 count += output_leb128 (bytes + count, w1, 0);
1676 (*f) (count, bytes, NULL);
1689 char bytes[20];
1691 bytes[0] = UNW_X4;
1692 bytes[1] = (qp & 0x3f);
1693 bytes[2] = (((x & 1) << 7) | format_ab_reg (ab, reg));
1694 bytes[3] = (((y & 1) << 7) | (treg & 0x7f));
1695 count += output_leb128 (bytes + 4, t, 0);
1696 (*f) (count, bytes, NULL);
2606 /* Determine the size of a record list in bytes. */
3030 /* Fill the padding bytes with zeros. */
6605 /* Check to see if this bundle is at an offset that is a multiple of 16-bytes
7538 md.pointer_size = 8; /* pointers are 8 bytes */
7539 md.pointer_size_shift = 3; /* alignment is 8 bytes = 2^2 */
7543 md.pointer_size = 4; /* pointers are 4 bytes */
7544 md.pointer_size_shift = 2; /* alignment is 4 bytes = 2^2 */
11613 of type TYPE, and store the appropriate bytes in *LIT. The number
11690 int bytes;
11700 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
11704 if (!bytes && fragp->tc_frag_data)
11725 if (bytes & 15)
11727 int fix = bytes & 15;
11730 bytes -= fix;
12005 /* VMS note header is 24 bytes long. */