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

<<11121314151617181920>>

  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_module_group_util.cc 21 #include <stack>
246 // Stack of HLO instructions visited in DFS order.
247 std::stack<HloInstruction*> stack; local
248 stack.push(root);
250 while (!stack.empty()) {
251 HloInstruction* hlo = stack.top();
274 stack.pop();
286 stack.pop();
309 stack.push(predecessor)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cPickle.c 80 #define TUPLE1 '\x85' /* build 1-tuple from stack top */
81 #define TUPLE2 '\x86' /* build 2-tuple from two topmost stack items */
82 #define TUPLE3 '\x87' /* build 3-tuple from three topmost stack items */
188 PyErr_SetString(UnpicklingError, "unpickling stack underflow");
241 * must be an lvalue holding PyObject*. On stack underflow, UnpicklingError
254 * D. If the Pdata stack can't be grown to hold the new value, both
256 * of O after: _PUSH transfers ownership of O from the caller to the stack
261 /* Push O on stack D, giving ownership of O to the stack. */
271 /* Push O on stack D, pushing a new reference. */
370 Pdata *stack; member in struct:Unpicklerobject
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cPickle.c 80 #define TUPLE1 '\x85' /* build 1-tuple from stack top */
81 #define TUPLE2 '\x86' /* build 2-tuple from two topmost stack items */
82 #define TUPLE3 '\x87' /* build 3-tuple from three topmost stack items */
188 PyErr_SetString(UnpicklingError, "unpickling stack underflow");
242 * must be an lvalue holding PyObject*. On stack underflow, UnpicklingError
255 * D. If the Pdata stack can't be grown to hold the new value, both
257 * of O after: _PUSH transfers ownership of O from the caller to the stack
262 /* Push O on stack D, giving ownership of O to the stack. */
272 /* Push O on stack D, pushing a new reference. */
372 Pdata *stack; member in struct:Unpicklerobject
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shlex.py 60 "Push a token onto the stack popped by the get_token method"
66 "Push an input source onto the lexer's input source stack."
80 "Pop the input source stack."
89 "Get a token from the input stream (or from stack if it's nonempty)"
  /external/compiler-rt/lib/asan/
asan_linux.cc 159 void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
161 *stack = (uptr)ucp->uc_stack.ss_sp;
165 void ReadContextStack(void *context, uptr *stack, uptr *ssize) {
asan_report.cc 162 PrintShadowByte(str, " Stack left redzone: ",
164 PrintShadowByte(str, " Stack mid redzone: ",
166 PrintShadowByte(str, " Stack right redzone: ",
168 PrintShadowByte(str, " Stack partial redzone: ",
170 PrintShadowByte(str, " Stack after return: ",
172 PrintShadowByte(str, " Stack use after scope: ",
456 Printf("Address %p is located in stack of thread T%d%s", addr, t->tid(),
459 // Try to fetch precise stack frame for this access.
468 // We print this frame as a stack trace with one element.
470 // The frame numbers may be different than those in the stack trace printe
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common_libcdep.cc 49 void ReportErrorSummary(const char *error_type, StackTrace *stack) {
53 if (stack->size == 0) {
57 // Currently, we include the first stack frame into the report summary.
59 uptr pc = StackTrace::GetPreviousInstructionPc(stack->trace[0]);
87 // If stack depot has grown 10% since last time, print it too.
  /external/google-breakpad/src/processor/
minidump_processor_unittest.cc 31 // corresponding symbol file, and checks the stack frames for correctness.
421 CallStack *stack = state.threads()->at(0); local
422 ASSERT_TRUE(stack);
423 ASSERT_EQ(stack->frames()->size(), 4U);
425 ASSERT_TRUE(stack->frames()->at(0)->module);
426 ASSERT_EQ(stack->frames()->at(0)->module->base_address(), 0x400000U);
427 ASSERT_EQ(stack->frames()->at(0)->module->code_file(), "c:\\test_app.exe");
428 ASSERT_EQ(stack->frames()->at(0)->function_name,
430 ASSERT_EQ(stack->frames()->at(0)->source_file_name, "c:\\test_app.cc");
431 ASSERT_EQ(stack->frames()->at(0)->source_line, 58)
    [all...]
  /external/python/cpython2/Lib/idlelib/
PyParse.py 390 stack = [] # stack of open bracket indices
391 push_stack = stack.append
413 bracketing.append((p, len(stack)))
419 if stack:
420 del stack[-1]
423 bracketing.append((p, len(stack)))
434 bracketing.append((p, len(stack)+1))
437 bracketing.append((p, len(stack)))
442 bracketing.append((p, len(stack)+1)
    [all...]
  /external/python/cpython2/Lib/
shlex.py 60 "Push a token onto the stack popped by the get_token method"
66 "Push an input source onto the lexer's input source stack."
80 "Pop the input source stack."
89 "Get a token from the input stream (or from stack if it's nonempty)"
  /external/python/cpython3/Lib/idlelib/
pyparse.py 395 stack = [] # stack of open bracket indices
396 push_stack = stack.append
418 bracketing.append((p, len(stack)))
424 if stack:
425 del stack[-1]
428 bracketing.append((p, len(stack)))
439 bracketing.append((p, len(stack)+1))
442 bracketing.append((p, len(stack)))
447 bracketing.append((p, len(stack)+1)
    [all...]
  /external/python/cpython3/Lib/
shlex.py 69 "Push a token onto the stack popped by the get_token method"
75 "Push an input source onto the lexer's input source stack."
89 "Pop the input source stack."
98 "Get a token from the input stream (or from stack if it's nonempty)"
pickle.py 102 MARK = b'(' # push special markobject on stack
104 POP = b'0' # discard topmost stack item
105 POP_MARK = b'1' # discard stack top through topmost markobject
106 DUP = b'2' # duplicate top stack item
115 BINPERSID = b'Q' # " " " ; " " " " stack
116 REDUCE = b'R' # apply callable to argtuple, both on stack
122 APPEND = b'a' # append stack top to list below it
125 DICT = b'd' # build a dict from stack items
127 APPENDS = b'e' # extend list on stack by topmost stack slic
    [all...]
  /external/skia/src/sksl/
SkSLCFGGenerator.h 15 #include <stack>
164 std::stack<BlockId> fLoopContinues;
165 std::stack<BlockId> fLoopExits;
  /external/skqp/src/sksl/
SkSLCFGGenerator.h 15 #include <stack>
164 std::stack<BlockId> fLoopContinues;
165 std::stack<BlockId> fLoopExits;
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
hlo_execution_profiler.cc 19 #include <stack>
35 void InitAndStartTimer(std::stack<std::unique_ptr<se::Timer>>* timers,
41 uint64 GetCyclesTaken(std::stack<std::unique_ptr<se::Timer>>* timers,
  /external/u-boot/lib/libfdt/
fdt_region.c 35 int stack[FDT_MAX_DEPTH] = { 0 }; local
86 stack[depth] = want;
100 want = stack[depth--];
279 * @depth: Current stack depth
300 * Work down the stack looking for supernodes that we didn't include.
303 * marked them as included (on the stack) already.
306 if (!info->stack[i].included) {
307 start = info->stack[i].offset;
315 info->stack[i].included = 1;
320 if (!info->stack[i].want
    [all...]
  /external/google-styleguide/cpplint/
cpplint.py 336 'stack.h',
386 'stack',
    [all...]
  /external/u-boot/scripts/kconfig/
symbol.c 1094 * When we check for recursive dependencies we use a stack to save
1096 * The entries are located on the call stack so no need to free memory.
1097 * Note insert() remove() must always match to properly clear the stack.
1106 static void dep_stack_insert(struct dep_stack *stack, struct symbol *sym)
1108 memset(stack, 0, sizeof(*stack));
1110 check_top->next = stack;
1111 stack->prev = check_top;
1112 stack->sym = sym;
1113 check_top = stack;
1130 struct dep_stack *stack; local
1245 struct dep_stack stack; local
1280 struct dep_stack stack; local
1325 struct dep_stack stack; local
    [all...]
  /external/antlr/runtime/C/src/
antlr3collections.c 79 // Interface functions for Stack
81 static void antlr3StackFree (pANTLR3_STACK stack);
82 static void * antlr3StackPop (pANTLR3_STACK stack);
83 static void * antlr3StackGet (pANTLR3_STACK stack, ANTLR3_INTKEY key);
84 static ANTLR3_BOOLEAN antlr3StackPush (pANTLR3_STACK stack, void * element, void (ANTLR3_CDECL *freeptr)(void *));
85 static ANTLR3_UINT32 antlr3StackSize (pANTLR3_STACK stack);
86 static void * antlr3StackPeek (pANTLR3_STACK stack);
966 pANTLR3_STACK stack; local
970 stack = (pANTLR3_STACK)ANTLR3_MALLOC((size_t)sizeof(ANTLR3_STACK));
972 if (stack == NULL
    [all...]
  /device/google/marlin/camera/QCamera2/HAL/test/
Android.mk 42 $(LOCAL_HAL_TOP)/QCamera2/stack/common \
43 $(LOCAL_HAL_TOP)/QCamera2/stack/mm-camera-interface/inc \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
inspect_fodder.py 16 st = inspect.stack()
  /device/linaro/bootloader/edk2/ArmPlatformPkg/PrePeiCore/Arm/
SwitchStack.asm 20 ; This allows the caller to switch the stack and return
22 ; @param StackDelta Signed amount by which to modify the stack pointer
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
SwitchStack.S 28 # (rdi) EntryPoint - Entry point with new stack.
31 # (rcx) NewStack - Pointer to new stack.
SwitchStack.asm 27 ; (rcx) EntryPoint - Entry point with new stack.
30 ; (r9) NewStack - Pointer to new stack.

Completed in 2305 milliseconds

<<11121314151617181920>>