| /external/google-breakpad/src/client/linux/microdump_writer/ |
| microdump_writer.cc | 195 const void* stack; local 198 if (!dumper_->GetStackInfo(&stack, &stack_len, stack_pointer)) { 199 // The stack pointer might not be available. In this case we don't hard 200 // fail, just produce a (almost useless) microdump w/o a stack section. 207 LogAppend(reinterpret_cast<uintptr_t>(stack)); 218 dumper_->CopyFromProcess(*stack_copy, thread_id, stack, stack_len); 220 // Dump the content of the stack, splicing it into chunks which size is 226 LogAppend(reinterpret_cast<uintptr_t>(stack) + stack_off);
|
| /external/google-breakpad/src/testing/gtest/test/ |
| gtest_xml_output_unittest.py | 68 Expected: 1%(stack)s]]></failure> 76 Expected: 1%(stack)s]]></failure> 79 Expected: 2%(stack)s]]></failure> 87 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]><![CDATA[</top>%(stack)s]]></failure> 94 Invalid characters in brackets []%(stack)s]]></failure> 129 </testsuites>""" % {'stack': STACK_TRACE_TEMPLATE}
|
| /external/gtest/test/ |
| gtest_xml_output_unittest.py | 69 Expected: 1%(stack)s]]></failure> 77 Expected: 1%(stack)s]]></failure> 80 Expected: 2%(stack)s]]></failure> 88 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]><![CDATA[</top>%(stack)s]]></failure> 95 Invalid characters in brackets []%(stack)s]]></failure> 130 </testsuites>""" % {'stack': STACK_TRACE_TEMPLATE}
|
| /external/libavc/common/arm/ |
| ih264_intra_pred_luma_8x8_a9q.s | 105 stmfd sp!, {r4-r12, r14} @store register values to stack 139 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack 196 stmfd sp!, {r4-r12, r14} @store register values to stack 210 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack 269 stmfd sp!, {r14} @store register values to stack 290 ldmfd sp!, {pc} @restoring registers from stack 349 stmfd sp!, {r4, r14} @store register values to stack 403 ldmfd sp!, {r4, pc} @Restoring registers from stack 459 stmfd sp!, {r4-r12, r14} @store register values to stack 498 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack [all...] |
| /external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
| gtest_xml_output_unittest.py | 69 Expected: 1%(stack)s]]></failure> 77 Expected: 1%(stack)s]]></failure> 80 Expected: 2%(stack)s]]></failure> 88 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]><![CDATA[</top>%(stack)s]]></failure> 95 Invalid characters in brackets []%(stack)s]]></failure> 130 </testsuites>""" % {'stack': STACK_TRACE_TEMPLATE}
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
| NotificationHeaderViewWrapper.java | 43 import java.util.Stack; 130 Stack<View> stack = new Stack<>(); local 131 stack.push(mView); 132 while (!stack.isEmpty()) { 133 View child = stack.pop(); 139 stack.push(group.getChildAt(i));
|
| /ndk/sources/third_party/googletest/googletest/test/ |
| gtest_xml_output_unittest.py | 68 Expected: 1%(stack)s]]></failure> 76 Expected: 1%(stack)s]]></failure> 79 Expected: 2%(stack)s]]></failure> 87 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]><![CDATA[</top>%(stack)s]]></failure> 94 Invalid characters in brackets []%(stack)s]]></failure> 129 </testsuites>""" % {'stack': STACK_TRACE_TEMPLATE}
|
| /art/runtime/ |
| instrumentation.cc | 212 // need to push a DEX pc into the dex_pcs_ list to match size of instrumentation stack. 252 // Insert frame at the right position so we do not corrupt the instrumentation stack. 253 // Instrumentation stack frames are in descending frame id order. 293 // Create method enter events for all methods currently on the thread's stack. We only do this 393 std::deque<instrumentation::InstrumentationStackFrame>* stack = thread->GetInstrumentationStack(); local 394 if (stack->size() > 0) { 400 CHECK_EQ(visitor.frames_removed_, stack->size()); 401 while (stack->size() > 0) { 402 stack->pop_front(); 616 // Restore stack only if there is no method currently deoptimized 1037 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); local 1054 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); local 1115 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); local [all...] |
| /external/selinux/checkpolicy/ |
| module_compiler.c | 49 /* keep track of the last item added to the stack */ 93 /* reset the scoping stack */ 105 /* Given the current parse stack, returns 1 if a declaration would be 108 * current scope stack then this would return a 0. 602 /* Given the current parse stack, returns 1 if a requirement would be 1226 static int is_scope_in_stack(scope_datum_t * scope, scope_stack_t * stack) 1229 if (stack == NULL) { 1232 if (stack->type == 1) { 1233 avrule_decl_t *decl = stack->decl; 1244 /* not within scope of this stack, so try its parent * [all...] |
| /external/valgrind/coregrind/m_debuginfo/ |
| d3basics.c | 499 FAIL("evaluate_Dwarf3_Expr: stack overflow(1)"); \ 501 stack[sp] = (_arg); \ 508 FAIL("evaluate_Dwarf3_Expr: stack underflow(1)"); \ 509 _lval = stack[sp]; \ 516 Addr stack[N_EXPR_STACK]; /* stack of addresses, as per D3 spec */ local 566 /* end of expr - return expr on the top of stack. */ 568 /* stack empty. Bad. */ 569 FAIL("evaluate_Dwarf3_Expr: stack empty at end of expr"); 612 FAIL("evaluate_Dwarf3_Expr: DW_OP_{implicit,stack}_value [all...] |
| /development/perftests/panorama/feature_mos/src/mosaic/ |
| Delaunay.cpp | 372 int stack[DM]; local 409 // Now to recurse on shorter partition, store longer partition on stack 413 break; // empty stack && both partitions < QQ so break 415 sj = stack[--m]; 416 si = stack[--m]; 423 stack[m++] = si; 424 stack[m++] = sL; 432 break; // empty stack && both partitions < QQ so break 434 sj = stack[--m]; 435 si = stack[--m] [all...] |
| /external/bison/data/ |
| glr.c | 30 # Stack parameters. 547 if the built-in stack extension method is used). 557 /* Minimum number of free items on the stack allowed after an 560 stack is expanded, thus insuring that all necessary pointers get 687 /** Preceding state in this stack */ 729 /** Type of the items in the GLR stack. The yyisState field 826 * and top stack item YYVSP. YYLVALP points to place to put semantic 1043 * stack #K of *STACKP. */ 1068 /** Initialize SET to a singleton set containing an empty stack. */ 1094 /** Initialize STACK to a single empty stack, with total maximu [all...] |
| /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
| Delaunay.cpp | 372 int stack[DM]; local 409 // Now to recurse on shorter partition, store longer partition on stack 413 break; // empty stack && both partitions < QQ so break 415 sj = stack[--m]; 416 si = stack[--m]; 423 stack[m++] = si; 424 stack[m++] = sL; 432 break; // empty stack && both partitions < QQ so break 434 sj = stack[--m]; 435 si = stack[--m] [all...] |
| /external/speex/libspeex/ |
| ltp.c | 79 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack) 142 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack) 173 void open_loop_nbest_pitch(spx_word16_t *sw, int start, int end, int len, int *pitch, spx_word16_t *gain, int N, char *stack) 245 pitch_xcorr(sw, sw-end, corr, len, end-start+1, stack); 360 char *stack, 419 iir_mem16(e, ak, e, nsf, p, mm, stack); 422 filter_mem16(e, awk1, awk2, e, nsf, p, mm, stack); 542 char *stack, 609 open_loop_nbest_pitch(sw, start, end, nsf, nbest, NULL, N, stack); 622 bits, stack, exc2, r, new_target, &cdbk_index, plc_tuning, *cumul_gain, scaledown) [all...] |
| /external/v8/tools/ |
| logreader.js | 140 * Processes stack record. 144 * @param {Array.<string>} stack String representation of a stack. 145 * @return {Array.<number>} Processed stack. 147 LogReader.prototype.processStack = function(pc, func, stack) { 150 for (var i = 0, n = stack.length; i < n; ++i) { 151 var frame = stack[i];
|
| /art/tools/ |
| cpplint.py | 245 'pair.h', 'pthread_alloc', 'queue', 'set', 'set.h', 'sstream', 'stack', 263 'ropeimpl.h', 'SFile.h', 'slist', 'slist.h', 'stack.h', 'stdexcept', [all...] |
| /external/compiler-rt/lib/sanitizer_common/scripts/ |
| cpplint.py | 241 'pair.h', 'pthread_alloc', 'queue', 'set', 'set.h', 'sstream', 'stack', 259 'ropeimpl.h', 'SFile.h', 'slist', 'slist.h', 'stack.h', 'stdexcept', [all...] |
| /external/ImageMagick/coders/ |
| gif.c | 113 *stack; 181 if (lzw_info->stack != (LZWStack *) NULL) 183 if (lzw_info->stack->codes != (size_t *) NULL) 184 lzw_info->stack->codes=(size_t *) RelinquishMagickMemory( 185 lzw_info->stack->codes); 186 lzw_info->stack=(LZWStack *) RelinquishMagickMemory(lzw_info->stack); 247 lzw_info->stack=(LZWStack *) AcquireMagickMemory(sizeof(*lzw_info->stack)); 248 if (lzw_info->stack == (LZWStack *) NULL 110 *stack; member in struct:_LZWInfo [all...] |
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
| TestFmwk.java | 95 // We don't need to include useless stack trace information for 103 //Stack trace 390 } else if (!params.stack.included) { 408 double deltaSec = (double)(System.currentTimeMillis() - params.stack.millis)/1000; 413 params.stack.appendPath(params.timeLog); 858 params.stack.appendPath(descBuf); 1172 public State stack; field in class:TestFmwk.TestParams [all...] |
| /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
| TestFmwk.java | 94 // We don't need to include useless stack trace information for 102 //Stack trace 389 } else if (!params.stack.included) { 407 double deltaSec = (double)(System.currentTimeMillis() - params.stack.millis)/1000; 412 params.stack.appendPath(params.timeLog); 857 params.stack.appendPath(descBuf); 1171 public State stack; field in class:TestFmwk.TestParams [all...] |
| /external/libunwind/doc/ |
| unw_get_fpreg.tex | 20 register \Var{reg} in the stack frame identified by cursor \Var{cp} 26 type of frame that \Var{cp} is referring to. For ordinary stack 29 stack-pointer). However, for signal frames (see
|
| unw_get_reg.tex | 20 \Var{reg} in the stack frame identified by cursor \Var{cp} and stores 26 type of frame that \Var{cp} is referring to. For ordinary stack 29 stack-pointer). However, for signal frames (see
|
| unw_set_fpreg.tex | 20 \Var{reg} in the stack frame identified by cursor \Var{cp} to the 26 type of frame that \Var{cp} is referring to. For ordinary stack 29 stack-pointer). However, for signal frames (see
|
| unw_set_reg.tex | 20 \Var{reg} in the stack frame identified by cursor \Var{cp} to the 26 type of frame that \Var{cp} is referring to. For ordinary stack 29 stack-pointer). However, for signal frames (see
|
| /external/v8/test/mjsunit/regress/ |
| regress-2564.js | 55 assertEquals("success", e.stack); 91 assertEquals("success", e.stack); 121 assertEquals("success", e.stack);
|