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

  /external/selinux/libsepol/cil/src/
cil_stack.c 42 struct cil_stack *new_stack = cil_malloc(sizeof(*new_stack)); local
43 new_stack->stack = cil_malloc(sizeof(*(new_stack->stack)) * CIL_STACK_INIT_SIZE);
44 new_stack->size = CIL_STACK_INIT_SIZE;
45 new_stack->pos = -1;
46 *stack = new_stack;
  /art/runtime/
thread_linux.cc 26 static void SigAltStack(stack_t* new_stack, stack_t* old_stack) {
27 if (sigaltstack(new_stack, old_stack) == -1) {
  /external/tensorflow/tensorflow/tools/common/
traverse.py 50 new_stack = stack + [root]
59 if any(child is item for item in new_stack): # `in`, but using `is`
63 _traverse_internal(child, visit, new_stack, child_path)
  /external/google-breakpad/src/client/linux/handler/
exception_handler.cc 128 // InstallAlternateStackLocked will store the newly installed stack in new_stack
131 stack_t new_stack; member in namespace:google_breakpad::__anon22537
142 memset(&new_stack, 0, sizeof(new_stack));
153 new_stack.ss_sp = calloc(1, kSigStackSize);
154 new_stack.ss_size = kSigStackSize;
156 if (sys_sigaltstack(&new_stack, NULL) == -1) {
157 free(new_stack.ss_sp);
175 if (current_stack.ss_sp == new_stack.ss_sp) {
187 free(new_stack.ss_sp)
    [all...]
  /external/mesa3d/src/mesa/main/
matrix.c 249 GLmatrix *new_stack = realloc(stack->Stack, local
250 sizeof(*new_stack) * new_stack_size);
252 if (!new_stack) {
258 _math_matrix_ctr(&new_stack[i]);
260 stack->Stack = new_stack;
  /external/v8/benchmarks/spinning-balls/
splay-tree.js 308 var new_stack = new Array(stack.length * 2);
316 new_stack[new_length++] = l;
320 new_stack[new_length++] = r;
323 stack = new_stack;
  /external/python/cpython3/Lib/
contextlib.py 391 new_stack = type(self)()
392 new_stack._exit_callbacks = self._exit_callbacks
394 return new_stack
  /external/libcups/filter/
interpret.c 83 static _cups_ps_stack_t *new_stack(void);
533 if ((st = new_stack()) == NULL)
889 * 'new_stack()' - Create a new stack.
893 new_stack(void) function
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/services/spd/trusty/
trusty.c 60 struct args trusty_init_context_stack(void **sp, void *new_stack);
  /external/selinux/libsepol/src/
services.c 92 char **new_stack = stack; local
100 new_stack = realloc(stack, new_stack_len * sizeof(*stack));
101 if (!new_stack) {
106 stack = new_stack;
    [all...]
module_to_cil.c 450 void *new_stack; local
453 new_stack = realloc(stack->stack, sizeof(*stack->stack) * (stack->size * 2));
454 if (new_stack == NULL) {
457 stack->stack = new_stack;
    [all...]
  /external/python/cpython3/Lib/test/
test_contextlib.py 671 new_stack = stack.pop_all()
674 new_stack.close()
    [all...]
  /external/tensorflow/tensorflow/python/framework/
ops.py     [all...]
  /external/v8/src/wasm/
wasm-interpreter.cc     [all...]

Completed in 381 milliseconds