Lines Matching refs:bytes

492   unsigned char *bytes;
635 /* The number of bytes displaced by fast tracepoints. It may subsume
885 several bytes at and after this pointer, so that traceframe
1253 /* The size in bytes of the buffer used to talk to the IPA helper
1375 trace_debug ("Want to allocate %ld+%ld bytes in trace buffer",
1600 trace_debug ("Allocated %d bytes", (int) amt);
1765 trace_debug ("Want to collect %s bytes at 0x%s (basereg %d)",
2214 /* Restore any bytes overwritten by tracepoints. */
2577 /* Reserve USED bytes from the jump space. */
2582 trace_debug ("claim_jump_space reserves %s bytes at %s",
3388 trace_debug ("Want to get trace buffer, %d bytes at offset 0x%s",
3413 /* Trim to the remaining bytes if we're close to the end. */
4036 trace_debug ("Want to collect %s bytes at 0x%s (basereg %d)",
4172 of bytes in expression, a comma, and then the bytes. */
4186 aexpr->bytes = xmalloc (xlen);
4187 convert_ascii_to_int (act, aexpr->bytes, xlen);
4192 /* Convert the bytes of an agent expression back into hex digits, so
4202 convert_int_to_ascii (aexpr->bytes, rslt, aexpr->length);
4243 unsigned char bytes[1];
4248 unsigned char bytes[2];
4253 unsigned char bytes[4];
4258 unsigned char bytes[8];
4276 op = aexpr->bytes[pc++];
4350 arg = aexpr->bytes[pc++];
4387 arg = aexpr->bytes[pc++];
4397 agent_mem_read (tframe, cnv.u8.bytes, (CORE_ADDR) top, 1);
4402 agent_mem_read (tframe, cnv.u16.bytes, (CORE_ADDR) top, 2);
4407 agent_mem_read (tframe, cnv.u32.bytes, (CORE_ADDR) top, 4);
4412 agent_mem_read (tframe, cnv.u64.bytes, (CORE_ADDR) top, 8);
4418 pc = (aexpr->bytes[pc] << 8) + (aexpr->bytes[pc + 1]);
4426 pc = (aexpr->bytes[pc] << 8) + (aexpr->bytes[pc + 1]);
4432 top = aexpr->bytes[pc++];
4438 top = aexpr->bytes[pc++];
4439 top = (top << 8) + aexpr->bytes[pc++];
4445 top = aexpr->bytes[pc++];
4446 top = (top << 8) + aexpr->bytes[pc++];
4447 top = (top << 8) + aexpr->bytes[pc++];
4448 top = (top << 8) + aexpr->bytes[pc++];
4454 top = aexpr->bytes[pc++];
4455 top = (top << 8) + aexpr->bytes[pc++];
4456 top = (top << 8) + aexpr->bytes[pc++];
4457 top = (top << 8) + aexpr->bytes[pc++];
4458 top = (top << 8) + aexpr->bytes[pc++];
4459 top = (top << 8) + aexpr->bytes[pc++];
4460 top = (top << 8) + aexpr->bytes[pc++];
4461 top = (top << 8) + aexpr->bytes[pc++];
4467 arg = aexpr->bytes[pc++];
4468 arg = (arg << 8) + aexpr->bytes[pc++];
4478 collect_register (regcache, regnum, cnv.u64.bytes);
4482 collect_register (regcache, regnum, cnv.u32.bytes);
4486 collect_register (regcache, regnum, cnv.u16.bytes);
4490 collect_register (regcache, regnum, cnv.u8.bytes);
4525 arg = aexpr->bytes[pc++];
4542 arg = aexpr->bytes[pc++];
4558 arg = aexpr->bytes[pc++];
4559 arg = (arg << 8) + aexpr->bytes[pc++];
4564 arg = aexpr->bytes[pc++];
4565 arg = (arg << 8) + aexpr->bytes[pc++];
4572 arg = aexpr->bytes[pc++];
4573 arg = (arg << 8) + aexpr->bytes[pc++];
4653 trace_debug ("%d bytes recorded", blocklen);
4699 at DATABASE, of DATASIZE bytes long, and call CALLBACK for each
4775 at DATABASE of DATASIZE bytes long. TFNUM is the traceframe
4887 trace_debug ("traceframe %d has %d bytes at %s",
5673 op = aexpr->bytes[pc];
5774 arg = aexpr->bytes[pc++];
5796 arg = aexpr->bytes[pc++];
5797 arg = (arg << 8) + aexpr->bytes[pc++];
5803 arg = aexpr->bytes[pc++];
5804 arg = (arg << 8) + aexpr->bytes[pc++];
5811 top = aexpr->bytes[pc++];
5817 top = aexpr->bytes[pc++];
5818 top = (top << 8) + aexpr->bytes[pc++];
5824 top = aexpr->bytes[pc++];
5825 top = (top << 8) + aexpr->bytes[pc++];
5826 top = (top << 8) + aexpr->bytes[pc++];
5827 top = (top << 8) + aexpr->bytes[pc++];
5833 top = aexpr->bytes[pc++];
5834 top = (top << 8) + aexpr->bytes[pc++];
5835 top = (top << 8) + aexpr->bytes[pc++];
5836 top = (top << 8) + aexpr->bytes[pc++];
5837 top = (top << 8) + aexpr->bytes[pc++];
5838 top = (top << 8) + aexpr->bytes[pc++];
5839 top = (top << 8) + aexpr->bytes[pc++];
5840 top = (top << 8) + aexpr->bytes[pc++];
5846 arg = aexpr->bytes[pc++];
5847 arg = (arg << 8) + aexpr->bytes[pc++];
5871 arg = aexpr->bytes[pc++];
5882 arg = aexpr->bytes[pc++];
5883 arg = (arg << 8) + aexpr->bytes[pc++];
5889 arg = aexpr->bytes[pc++];
5890 arg = (arg << 8) + aexpr->bytes[pc++];
5982 /* Allocate at least SIZE bytes of memory from the IPA heap, aligned
5983 to 8 bytes. */
6017 write_inferior_data_ptr (expr_addr + offsetof (struct agent_expr, bytes),
6019 write_inferior_memory (expr_bytes, expr->bytes, expr->length);