HomeSort by relevance Sort by last modified time
    Searched defs:mcontext (Results 1 - 5 of 5) sorted by null

  /external/pcre/dist2/src/
pcre2_context.c 182 pcre2_match_context *mcontext = PRIV(memctl_malloc)( local
184 if (mcontext == NULL) return NULL;
185 *mcontext = PRIV(default_match_context);
187 *((pcre2_memctl *)mcontext) = *((pcre2_memctl *)gcontext);
188 return mcontext;
251 pcre2_match_context_copy(pcre2_match_context *mcontext)
254 mcontext->memctl.malloc(sizeof(pcre2_real_match_context),
255 mcontext->memctl.memory_data);
257 memcpy(new, mcontext, sizeof(pcre2_real_match_context));
296 pcre2_match_context_free(pcre2_match_context *mcontext)
    [all...]
  /external/v8/src/libsampler/
sampler.cc 460 mcontext_t& mcontext = ucontext->uc_mcontext; local
464 state->pc = reinterpret_cast<void*>(mcontext.gregs[REG_EIP]);
465 state->sp = reinterpret_cast<void*>(mcontext.gregs[REG_ESP]);
466 state->fp = reinterpret_cast<void*>(mcontext.gregs[REG_EBP]);
468 state->pc = reinterpret_cast<void*>(mcontext.gregs[REG_RIP]);
469 state->sp = reinterpret_cast<void*>(mcontext.gregs[REG_RSP]);
470 state->fp = reinterpret_cast<void*>(mcontext.gregs[REG_RBP]);
475 state->pc = reinterpret_cast<void*>(mcontext.gregs[R15]);
476 state->sp = reinterpret_cast<void*>(mcontext.gregs[R13]);
477 state->fp = reinterpret_cast<void*>(mcontext.gregs[R11])
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
infinite_recursion.py 2091 class mcontext(Structure): class in inherits:Structure
    [all...]
  /external/python/cpython2/Lib/lib2to3/tests/data/
infinite_recursion.py 2091 class mcontext(Structure): class in inherits:Structure
    [all...]
  /external/python/cpython3/Lib/lib2to3/tests/data/
infinite_recursion.py 2091 class mcontext(Structure): class in inherits:Structure
    [all...]

Completed in 2384 milliseconds