HomeSort by relevance Sort by last modified time
    Searched refs:num_regs (Results 1 - 13 of 13) sorted by null

  /ndk/sources/host-tools/sed-4.2.1/testsuite/
bug-regex7.c 44 regs.num_regs = 0;
60 else if (regs.num_regs <= n || regs.start[n] != -1 || regs.end[n] != -1)
85 else if (regs.num_regs <= n || regs.start[n] != -1 || regs.end[n] != -1)
bug-regex10.c 39 regs.num_regs = 1;
tst-regex2.c 168 if (regs.num_regs != 2 + (i == 0 ? 0 : i == 1 ? 7 : 70))
170 printf ("\nincorrect num_regs %d\n", regs.num_regs);
181 if (regs.start[regs.num_regs - 1] != -1
182 || regs.end[regs.num_regs - 1] != -1)
184 puts ("\nincorrect regs.{start,end}[num_regs - 1]");
  /external/qemu/
gdbstub.h 31 int num_regs, const char *xml, int g_pos);
gdbstub.c 259 int num_regs; member in struct:GDBRegisterState
    [all...]
  /bionic/libc/tools/
gensyscalls.py 421 num_regs = count_arm_param_registers(syscall_params)
423 t["asm-thumb"] = self.thumb_genstub(syscall_func,num_regs,"__NR_"+syscall_name)
426 t["asm-arm"] = self.arm_eabi_genstub(syscall_func,num_regs,"__NR_"+syscall_name)
428 t["asm-arm"] = self.arm_genstub(syscall_func,num_regs,"__NR_"+syscall_name)
431 num_regs = count_generic_param_registers(syscall_params)
433 t["asm-x86"] = self.x86_genstub_cid(syscall_func, num_regs, "__NR_"+syscall_name, t["cid"])
435 t["asm-x86"] = self.x86_genstub(syscall_func, num_regs, "__NR_"+syscall_name)
441 num_regs = count_generic_param_registers(syscall_params)
442 t["asm-sh"] = self.superh_genstub(syscall_func,num_regs,"__NR_"+syscall_name)
  /ndk/sources/host-tools/sed-4.2.1/sed/
regexp.c 180 /* We need one extra element beyond `num_regs' for the `-1' marker GNU code
188 regs->num_regs = need_regs;
190 else if (need_regs > regs->num_regs)
195 regs->num_regs = need_regs;
204 for ( ; i < regs->num_regs; ++i)
sed.h 138 unsigned num_regs; member in struct:re_registers
  /external/v8/src/arm/
simulator-arm.cc 1568 int num_regs = count_bits(rlist); local
1601 int num_regs; local
    [all...]
simulator-arm.h 241 int num_regs,
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex.h 530 __re_size_t _REG_RM_NAME (num_regs);
609 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
612 allocated with malloc, and must each be at least `NUM_REGS * sizeof
615 If NUM_REGS == 0, then subsequent matches should allocate their own
regexec.c 460 && regs->num_regs <= bufp->re_nsub, 0))
462 nregs = regs->num_regs;
520 /* We need one extra element beyond `num_regs' for the `-1' marker GNU code
535 regs->num_regs = need_regs;
541 if (BE (need_regs > regs->num_regs, 0))
555 regs->num_regs = need_regs;
562 assert (regs->num_regs >= nregs);
572 for ( ; i < regs->num_regs; ++i)
578 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
582 be at least NUM_REGS * sizeof (regoff_t) bytes long
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
regex.h 421 unsigned num_regs;
495 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
498 allocated with malloc, and must each be at least `NUM_REGS * sizeof
501 If NUM_REGS == 0, then subsequent matches should allocate their own
417 unsigned num_regs; member in struct:re_registers

Completed in 1744 milliseconds