HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 876 - 900 of 2132) sorted by null

<<31323334353637383940>>

  /external/tensorflow/tensorflow/contrib/seq2seq/python/kernel_tests/
loss_test.py 43 self.logits = array_ops.stack(logits, axis=1)
48 self.targets = array_ops.stack(targets, axis=1)
53 self.weights = array_ops.stack(weights, axis=1)
187 self.weights = array_ops.stack(weights, axis=1)
237 weights = array_ops.stack(weights, axis=1)
  /external/libaom/libaom/third_party/x86inc/
x86inc.asm 214 ; into registers at the start, and make no other use of the stack. Luckily that
218 ; %1 = number of arguments. loads them from stack if needed.
221 ; %4 = (optional) stack size to be allocated. The stack will be aligned before
222 ; allocating the specified stack size. If the required stack alignment is
223 ; larger than the known stack alignment the stack will be manually aligned
224 ; and an extra register will be allocated to hold the original stack
226 ; register as stack pointer, request a negative stack size
    [all...]
  /external/libvpx/libvpx/third_party/x86inc/
x86inc.asm 214 ; into registers at the start, and make no other use of the stack. Luckily that
218 ; %1 = number of arguments. loads them from stack if needed.
221 ; %4 = (optional) stack size to be allocated. The stack will be aligned before
222 ; allocating the specified stack size. If the required stack alignment is
223 ; larger than the known stack alignment the stack will be manually aligned
224 ; and an extra register will be allocated to hold the original stack
226 ; register as stack pointer, request a negative stack size
    [all...]
  /art/runtime/arch/mips/
quick_entrypoints_mips.S 36 * Allocates ARG_SLOT_SIZE bytes at the bottom of the stack for arg slots.
37 * Reserves FRAME_SIZE_SAVE_ALL_CALLEE_SAVES + ARG_SLOT_SIZE bytes on the stack
87 sw $t0, 0($sp) # Place Method* at bottom of stack.
89 addiu $sp, $sp, -ARG_SLOT_SIZE # reserve argument slots on the stack
99 * Allocates ARG_SLOT_SIZE bytes at the bottom of the stack for arg slots.
100 * Reserves FRAME_SIZE_SAVE_REFS_ONLY + ARG_SLOT_SIZE bytes on the stack
134 sw $t0, 0($sp) # Place Method* at bottom of stack.
136 addiu $sp, $sp, -ARG_SLOT_SIZE # reserve argument slots on the stack
141 addiu $sp, $sp, ARG_SLOT_SIZE # remove argument slots on the stack
239 * Allocates ARG_SLOT_SIZE bytes at the bottom of the stack for arg slots
    [all...]
  /device/linaro/bootloader/edk2/IntelFspPkg/FspSecCore/Ia32/
FspApiEntry.s 225 # Define the data length that we saved on the stack top
262 # No memory available, stack is hard-coded and used for return address
307 # esp -> stack with paramters
487 # Enable FSP STACK
500 # Save API entry/exit timestamp into stack
513 # Terminator for the data on stack
534 # region specified by the boot loader and also setup a temporary stack to be
692 # Stack must be ready
727 # FspInit and FspMemoryInit APIs, setup the initial stack frame
744 # Create a Task Frame in the stack for the Boot Loader
    [all...]
  /cts/tests/tests/keystore/src/android/server/am/
WindowManagerState.java 159 final WindowStack stack = new WindowStack(stackProto); local
160 mStacks.add(stack);
161 stacks.add(stack);
162 allWindows.addAll(stack.getWindows());
276 for (WindowStack stack : mStacks) {
277 if (stackId == stack.mStackId) {
278 return stack;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
gettext.py 112 stack = ['']
115 stack.append('')
117 if len(stack) == 1:
122 s = expr.sub(repl, stack.pop())
123 stack[-1] += '(%s)' % s
125 stack[-1] += c
126 plural = expr.sub(repl, stack.pop())
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
gettext.py 110 stack = ['']
113 stack.append('')
115 if len(stack) == 1:
120 s = expr.sub(repl, stack.pop())
121 stack[-1] += '(%s)' % s
123 stack[-1] += c
124 plural = expr.sub(repl, stack.pop())
  /external/compiler-rt/lib/lsan/
lsan_common.cc 184 ScanRangeForPointers(begin, end, frontier, "FAKE STACK", kReachable);
212 // If unable to get SP, consider the entire stack to be reachable.
221 LOG_THREADS("Stack at %p-%p (SP = %p).\n", stack_begin, stack_end, sp);
223 // SP is outside the recorded stack range (e.g. the thread is running a
224 // signal handler on alternate stack, or swapcontext was used).
225 // Again, consider the entire stack range to be reachable.
226 LOG_THREADS("WARNING: stack pointer not in stack range.\n");
234 LOG_THREADS("Skipped %d guard page(s) to obtain stack %p-%p.\n",
237 // Shrink the stack range to ignore out-of-scope values
391 StackTrace stack = StackDepotGet(m.stack_trace_id()); local
518 StackTrace stack = StackDepotGet(stack_trace_id); local
    [all...]
  /external/libchrome/third_party/jinja2/
lexer.py 613 stack = ['root']
616 stack.append(state + '_begin')
619 statetokens = self.rules[stack[-1]]
705 stack.pop()
710 stack.append(key)
719 stack.append(new_state)
720 statetokens = self.rules[stack[-1]]
721 # we are still at the same position and no stack change.
726 'stack change' % regex)
  /external/libnetfilter_conntrack/src/conntrack/
bsf.c 11 #include "internal/stack.h"
165 int jump_true, int pos, struct stack *s)
184 int jump_false, int pos, struct stack *s)
327 struct stack *s;
435 struct stack *s;
494 struct stack *s;
579 struct stack *s;
684 struct stack *s;
  /external/libunwind/doc/
libunwind.tex 66 \Prog{Libunwind} is very easy to use when unwinding a stack from
68 you want to unwind the stack while executing in some function
73 to the current frame, that is, the stack frame that corresponds to the
75 be moved ``up'' (towards earlier stack frames) by calling
84 ``down'' direction (towards newer stack frames), this effect can be
86 that sometimes has to move ``down'' by one stack frame could maintain
98 registers that were preserved for the current stack frame (as
108 \emph{caller-saved} (``scratch'') registers are preserved in the stack
113 (IP), sometimes also known as the ``program counter'', and the stack
120 execution at an arbitrary stack frame. As you might guess, this i
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2tensorrt/segment/
segment.cc 250 // Stack of work to do.
255 std::vector<Work> stack(start.size());
257 stack[i] = Work{start[i], false};
263 while (!stack.empty()) {
264 Work w = stack.back();
265 stack.pop_back();
278 if (leave) stack.push_back(Work{n, true});
288 stack.push_back(Work{node, false});
  /external/tensorflow/tensorflow/contrib/autograph/examples/benchmarks/
cartpole_benchmark.py 160 discounted_rewards = ag.stack(discounted_rewards)
166 g = ag.stack(grad_list[i])
180 return ag.stack(step_counts)
200 return ag.stack(mean_steps_per_iteration)
346 discounted_rewards = tf.stack(discounted_rewards)
351 g = tf.stack(grad_list[i])
362 return tf.stack(step_counts)
  /external/selinux/libsepol/cil/src/
cil_tree.c 338 char *stack[COND_EXPR_MAXDEPTH] = {}; local
348 rc = cil_expr_to_string(curr->data, &stack[pos]);
355 stack[pos] = curr->data;
359 stack[pos] = ((struct cil_symtab_datum *)curr->data)->name;
412 len = strlen(stack[pos-1]) + strlen(op_str) + 4;
414 snprintf(expr_str, len, "(%s %s)", op_str, stack[pos-1]);
415 free(stack[pos-1]);
416 stack[pos-1] = NULL;
423 len = strlen(stack[pos-1]) + strlen(stack[pos-2]) + strlen(op_str) + 5
    [all...]
  /external/libaom/libaom/tools/
cpplint.py 260 'stack.h',
309 'stack',
    [all...]
  /external/libvpx/libvpx/tools/
cpplint.py 260 'stack.h',
309 'stack',
    [all...]
  /external/syzkaller/vendor/golang.org/x/net/trace/
events.go 138 el.stack = make([]uintptr, 32)
139 n := runtime.Callers(2, el.stack)
140 el.stack = el.stack[:n]
257 // Call stack where this event log was created.
258 stack []uintptr
277 el.stack = nil
363 func (el *eventLog) Stack() string {
366 printStackRecord(tw, el.stack)
372 // for a single stack trace
    [all...]
  /external/libffi/src/mips/
ffi.c 56 FFI_ASSERT(argp <= &stack[bytes]); \
57 if (argp == &stack[bytes]) \
59 argp = stack; \
67 /* ffi_prep_args is called by the assembly routine once stack space
70 static void ffi_prep_args(char *stack,
82 on the stack. We reorder stuff on the stack here to
85 argp = &stack[bytes - (8 * sizeof(ffi_arg))];
87 argp = stack;
89 argp = stack;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
SipProviderImpl.java 39 import gov.nist.javax.sip.stack.HopImpl;
40 import gov.nist.javax.sip.stack.MessageChannel;
41 import gov.nist.javax.sip.stack.SIPClientTransaction;
42 import gov.nist.javax.sip.stack.SIPDialog;
43 import gov.nist.javax.sip.stack.SIPDialogErrorEvent;
44 import gov.nist.javax.sip.stack.SIPDialogEventListener;
45 import gov.nist.javax.sip.stack.SIPServerTransaction;
46 import gov.nist.javax.sip.stack.SIPTransaction;
47 import gov.nist.javax.sip.stack.SIPTransactionErrorEvent;
48 import gov.nist.javax.sip.stack.SIPTransactionEventListener
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/mips/
ffi.c 56 FFI_ASSERT(argp <= &stack[bytes]); \
57 if (argp == &stack[bytes]) \
59 argp = stack; \
67 /* ffi_prep_args is called by the assembly routine once stack space
70 static void ffi_prep_args(char *stack,
82 on the stack. We reorder stuff on the stack here to
85 argp = &stack[bytes - (8 * sizeof(ffi_arg))];
87 argp = stack;
89 argp = stack;
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi_arm_wince/
sysv.asm 104 ; and adjust stack
173 ; Store the argument registers on the stack
175 ; Push the return address onto the stack
190 ; At this point the return value is on the stack
223 add sp, sp, #16 ; remove saved argument registers {a1-a4} from the stack
  /external/tensorflow/tensorflow/python/debug/lib/
stepper.py 221 Uses non-recursive implementation to prevent stack overflow for deep
305 stack = []
308 stack.append(node)
309 for node in stack:
312 while stack:
313 curr_node = stack.pop()
328 stack.extend(pushes)
739 Uses non-recursive implementation to avoid stack overflow on deep networks.
770 stack = [source_element]
773 while stack
    [all...]
  /external/tensorflow/tensorflow/c/
c_api_experimental.cc 181 // node stack that returns a sequence of 3 floats, and sets `dataset_name` to
260 // node stack that reads a Imagenet TFRecordFile dataset from `file_path`, and
    [all...]
  /external/fonttools/Lib/fontTools/misc/
psCharStrings.py 317 stack = self.operandStack[:]
319 return stack
420 del self.operandStack[-(numOps-numBlends):] # Leave the default operands on the stack.
813 stack = self.operandStack
814 stack[-1], stack[-2] = stack[-2], stack[-1]
826 # We must add a parameter to the stack if we are flexing
833 # We must add a parameter to the stack if we are flexin
    [all...]

Completed in 2078 milliseconds

<<31323334353637383940>>