| /external/libffi/src/or1k/ |
| ffi.c | 30 /* ffi_prep_args is called by the assembly routine once stack space 33 void* ffi_prep_args(char *stack, extended_cif *ecif) 35 char *stacktemp = stack; 47 *(void **) stack = ecif->rvalue; 48 stack += 4; 54 /* variadic args are saved on stack */ 58 stack = stacktemp + 24; 66 *(void **)stack = *argv; 70 *(signed int *) stack = (signed int)*(SINT8 *)(* argv); 74 *(unsigned int *) stack = (unsigned int)*(UINT8 *)(* argv) [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
| misc.py | 31 class Stack:
33 self.stack = []
34 self.pop = self.stack.pop
36 return len(self.stack)
38 self.stack.append(elt)
40 return self.stack[-1]
42 return self.stack[index]
|
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
| ASN1OutputStream.java | 90 byte[] stack = new byte[5]; 91 int pos = stack.length; 93 stack[--pos] = (byte)(tagNo & 0x7F); 98 stack[--pos] = (byte)(tagNo & 0x7F | 0x80); 102 write(stack, pos, stack.length - pos);
|
| /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/ |
| ASN1OutputStream.java | 92 byte[] stack = new byte[5]; 93 int pos = stack.length; 95 stack[--pos] = (byte)(tagNo & 0x7F); 100 stack[--pos] = (byte)(tagNo & 0x7F | 0x80); 104 write(stack, pos, stack.length - pos);
|
| /external/deqp-deps/SPIRV-Tools/source/val/ |
| construct.cpp | 83 std::vector<BasicBlock*> stack; local 84 stack.push_back(const_cast<BasicBlock*>(header)); 85 while (!stack.empty()) { 86 BasicBlock* block = stack.back(); 87 stack.pop_back(); 121 stack.push_back(succ);
|
| /external/python/cpython2/Lib/compiler/ |
| misc.py | 31 class Stack: 33 self.stack = [] 34 self.pop = self.stack.pop 36 return len(self.stack) 38 self.stack.append(elt) 40 return self.stack[-1] 42 return self.stack[index]
|
| /external/strace/m4/ |
| st_demangle.m4 | 32 [use libiberty to demangle symbols in stack trace])], 73 AC_MSG_CHECKING([whether to enable symbols demangling in stack trace]) 75 AC_DEFINE([USE_DEMANGLE], 1, [Do symbols demangling in stack trace])
|
| /external/swiftshader/third_party/SPIRV-Tools/source/val/ |
| construct.cpp | 83 std::vector<BasicBlock*> stack; local 84 stack.push_back(const_cast<BasicBlock*>(header)); 85 while (!stack.empty()) { 86 BasicBlock* block = stack.back(); 87 stack.pop_back(); 121 stack.push_back(succ);
|
| /external/toolchain-utils/binary_search_tool/full_bisect_test/ |
| chromeos_build.sh | 18 x86_64-cros-linux-gnu-gcc -c stack.c -o work/stack.o 21 x86_64-cros-linux-gnu-gcc -o bin-trees work/main.o work/preorder.o work/inorder.o work/build.o work/preorder_norecurse.o work/inorder_norecurse.o work/stack.o
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| pickle.py | 102 MARK = '(' # push special markobject on stack
104 POP = '0' # discard topmost stack item
105 POP_MARK = '1' # discard stack top through topmost markobject
106 DUP = '2' # duplicate top stack item
115 BINPERSID = 'Q' # " " " ; " " " " stack
116 REDUCE = 'R' # apply callable to argtuple, both on stack
122 APPEND = 'a' # append stack top to list below it
125 DICT = 'd' # build a dict from stack items
127 APPENDS = 'e' # extend list on stack by topmost stack slice [all...] |
| /external/python/cpython2/Lib/ |
| pickle.py | 102 MARK = '(' # push special markobject on stack 104 POP = '0' # discard topmost stack item 105 POP_MARK = '1' # discard stack top through topmost markobject 106 DUP = '2' # duplicate top stack item 115 BINPERSID = 'Q' # " " " ; " " " " stack 116 REDUCE = 'R' # apply callable to argtuple, both on stack 122 APPEND = 'a' # append stack top to list below it 125 DICT = 'd' # build a dict from stack items 127 APPENDS = 'e' # extend list on stack by topmost stack slic [all...] |
| /cts/hostsidetests/jvmti/base/jni/ |
| redefine.cpp | 19 #include <stack> 72 std::stack<std::vector<unsigned char>> stack; local 73 redefinitions_[name] = std::move(stack); 79 auto stack = redefinitions_.find(name); local 80 if (stack == redefinitions_.end() || stack->second.empty()) { 83 *data = stack->second.top(); 90 auto stack = redefinitions_.find(name); local 91 if (stack == redefinitions_.end() || stack->second.empty()) [all...] |
| /art/runtime/arch/arm/ |
| jni_entrypoints_arm.S | 31 sub sp, #12 @ pad stack pointer to align frame 35 add sp, #12 @ restore stack pointer
|
| /cts/tests/framework/base/windowmanager/util/src/android/server/wm/ |
| ActivityManagerState.java | 128 logE("No focused stack found..."); 238 final ActivityStack stack = getStackById(mTopFocusedStackId); local 239 return stack != null ? stack.getActivityType() : ACTIVITY_TYPE_UNDEFINED; 243 final ActivityStack stack = getStackById(mTopFocusedStackId); local 244 return stack != null ? stack.getWindowingMode() : WINDOWING_MODE_UNDEFINED; 283 for (ActivityStack stack : mStacks) { 285 && activityType != stack.getActivityType()) { 289 && windowingMode != stack.getWindowingMode()) 358 final ActivityStack stack = display.mStacks.get(i); local [all...] |
| /development/samples/ApiDemos/src/com/example/android/apis/app/ |
| IncomingMessageInterstitial.java | 50 * Perform a switch to the app. A new activity stack is started, replacing 58 // Build the new activity stack, launch it, and finish this UI. 59 Intent[] stack = IncomingMessage.makeMessageIntentStack(this, from, msg); local 60 startActivities(stack);
|
| /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/ |
| DisablePaging64.S | 42 mov 0x28(%rsp), %edi # rdi <- New stack
47 sub %rax, %rdi # rdi <- use stack to hold transition code
49 push %rcx # save rcx to stack
52 movsb # copy transition code to (new stack - 64byte) below 4G
59 push %rcx # push Cs to stack
60 push %r10 # push address of transition code on stack
61 .byte 0x48, 0xcb # retq: Use far return to load CS register from stack
64 mov %eax,%esp # set up new stack
|
| /external/boringssl/src/decrepit/ssl/ |
| ssl_decrepit.c | 123 int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack, 156 !SSL_add_file_cert_subjects_to_stack(stack, buf)) {
|
| /external/compiler-rt/lib/sanitizer_common/ |
| sanitizer_stackdepot.cc | 27 uptr stack[1]; // [size] member in struct:__sanitizer::StackDepotNode 31 // We use these bits to store the per-stack use counter. 45 if (stack[i] != args.trace[i]) return false; 78 internal_memcpy(stack, args.trace, size * sizeof(uptr)); 81 return args_type(&stack[0], size, tag); 111 u32 StackDepotPut(StackTrace stack) { 112 StackDepotHandle h = theDepot.Put(stack); 116 StackDepotHandle StackDepotPut_WithHandle(StackTrace stack) { 117 return theDepot.Put(stack);
|
| sanitizer_stackdepot.h | 23 // StackDepot efficiently stores huge amounts of stack traces. 38 u32 StackDepotPut(StackTrace stack); 39 StackDepotHandle StackDepotPut_WithHandle(StackTrace stack); 40 // Retrieves a stored stack trace by the id. 48 // StackDepot, but the snapshot is only guaranteed to contain those stack traces
|
| /external/compiler-rt/lib/sanitizer_common/tests/ |
| sanitizer_stacktrace_test.cc | 59 // Mark the last fp point back up to terminate the stack trace. 77 // Should get all on-stack retaddrs and start_pc. 91 // Should get all on-stack retaddrs up to the 4th slot and start_pc. 104 // Should get all on-stack retaddrs up to the 4th slot and start_pc. 128 // The next FP points to unreadable memory inside the stack limits, but below 144 // The stack should be truncated at the NULL pointer (and not include it). 155 BufferedStackTrace stack; 158 stack.Unwind(0, pc, bp, 0, 0, 0, false); 159 EXPECT_EQ(0U, stack.size); 160 EXPECT_EQ(0U, stack.top_frame_bp) [all...] |
| /external/elfutils/tests/ |
| run-linkmap-cut.sh | 28 # .../elfutils/src/stack: dwfl_thread_getframes tid 3130 at 0x3fdf821d64 in /usr/lib64/libc-2.18.so: no matching address range 29 testrun ${abs_top_builddir}/src/stack --core=linkmap-cut.core -e linkmap-cut -m >bt || true
|
| /external/llvm/test/MC/ELF/ |
| section.s | 5 .section .note.GNU-stack,"",@progbits 9 .section src/stack.c,"",@progbits 12 // CHECK: Name: .note.GNU-stack 16 // CHECK: Name: src/stack.c
|
| /external/pdfium/core/fpdfapi/parser/ |
| cpdf_object_walker.h | 9 #include <stack> 56 std::stack<std::unique_ptr<SubobjectIterator>> stack_;
|
| /external/pdfium/core/fxcrt/css/ |
| cfx_csssyntaxparser.h | 10 #include <stack> 72 std::stack<CFX_CSSSyntaxMode> m_ModeStack;
|
| /external/skia/tools/viewer/ |
| BisectSlide.h | 15 #include <stack> 52 std::stack<std::pair<SkTArray<FoundPath>, SkTArray<FoundPath>>> fPathHistory;
|