HomeSort by relevance Sort by last modified time
    Searched full:ext_arg (Results 1 - 9 of 9) sorted by null

  /external/strace/linux/mips/
get_syscall_args.c 13 tcp->u_arg[0] = tcp->ext_arg[0] = mips_REG_A0;
14 tcp->u_arg[1] = tcp->ext_arg[1] = mips_REG_A1;
15 tcp->u_arg[2] = tcp->ext_arg[2] = mips_REG_A2;
16 tcp->u_arg[3] = tcp->ext_arg[3] = mips_REG_A3;
17 tcp->u_arg[4] = tcp->ext_arg[4] = mips_REG_A4;
18 tcp->u_arg[5] = tcp->ext_arg[5] = mips_REG_A5;
  /external/strace/linux/x86_64/
get_syscall_args.c 14 tcp->ext_arg[0] = x86_64_regs.rdi;
15 tcp->ext_arg[1] = x86_64_regs.rsi;
16 tcp->ext_arg[2] = x86_64_regs.rdx;
17 tcp->ext_arg[3] = x86_64_regs.r10;
18 tcp->ext_arg[4] = x86_64_regs.r8;
19 tcp->ext_arg[5] = x86_64_regs.r9;
  /external/chromium-trace/catapult/third_party/coverage/coverage/
bytecode.py 48 ext_arg = 0
56 bc.arg = ext_arg + self[offset+1] + 256*self[offset+2]
68 ext_arg = bc.arg * 256*256
70 ext_arg = 0
  /external/strace/
lseek.c 44 * which means that on x32 we need to use tcp->ext_arg[N] to get offset argument.
55 /* tcp->ext_arg is not initialized for i386 personality */
60 offset = tcp->ext_arg[1];
99 * for hi and lo. We would need to use tcp->ext_arg[N] on x32...
io.c 201 tprintf("%llu", (unsigned long long) tcp->ext_arg[arg]);
mem.c 147 offset = tcp->ext_arg[5];
util.c 261 *val = tcp->ext_arg[arg_no];
265 *val = tcp->ext_arg[arg_no];
defs.h 293 long long ext_arg[MAX_ARGS]; member in struct:tcb
ChangeLog-CVS 783 (struct tcb): Add ext_arg for MIPS N32.
786 * file.c (sys_lseek): Use ext_arg for MIPS N32.
791 (sys_mmap): Use ext_arg for MIPS N32.
    [all...]

Completed in 136 milliseconds