| /external/openssl/crypto/txt_db/ |
| txt_db.h | 66 #include <openssl/stack.h>
|
| /external/openssl/include/openssl/ |
| txt_db.h | 66 #include <openssl/stack.h>
|
| /external/skia/legacy/src/core/ |
| SkClipStack.cpp | 210 SkClipStack::B2FIter::B2FIter(const SkClipStack& stack) { 211 this->reset(stack); 239 void SkClipStack::B2FIter::reset(const SkClipStack& stack) { 240 fIter.reset(stack.fDeque);
|
| /external/skia/tests/ |
| ClipCacheTest.cpp | 68 // create a clip stack that will (trivially) reduce to a single rect that 70 SkClipStack stack; local 71 stack.clipDevRect(clipRect, SkRegion::kReplace_Op, false); 76 stack.getConservativeBounds(0, 0, kXSize, kYSize, 86 clipData.fClipStack = &stack; 99 // verify that the top state of the stack matches the passed in state
|
| /external/v8/src/ |
| regexp-stack.h | 36 // Maintains a per-v8thread stack area that can be used by irregexp 37 // implementation for its backtracking stack. 38 // Since there is only one stack area, the Irregexp implementation is not 43 // Create and delete an instance to control the life-time of a growing stack. 45 // Initializes the stack memory area if necessary. 47 ~RegExpStackScope(); // Releases the stack if it has grown. 49 RegExpStack* stack() const { return regexp_stack_; } function in class:v8::internal::RegExpStackScope 60 // Number of allocated locations on the stack below the limit. 61 // No sequence of pushes must be longer that this without doing a stack-limit 65 // Gives the top of the memory used as stack [all...] |
| /external/valgrind/main/coregrind/ |
| m_stacks.c | 3 /*--- Stack management. m_stacks.c ---*/ 41 The stack 43 The stack's segment seems to be dynamically extended downwards by 44 the kernel as the stack pointer moves down. Initially, a 1-page 45 (4k) stack is allocated. When SP moves below that for the first 48 upwards to the current valid stack. It then extends the stack 53 That means that Valgrind can't spot when the stack segment is being 55 update stack permissions around SP, so we need to spot all writes 58 The deal is: when SP is assigned a lower value, the stack is bein 263 Stack* stack = find_stack_by_addr(SP); local [all...] |
| /external/valgrind/main/coregrind/m_syswrap/ |
| syscall-ppc32-linux.S | 78 /* make a stack frame */ 128 /* pop off stack frame */ 158 /* Let the linker know we don't need an executable stack */ 159 .section .note.GNU-stack,"",@progbits
|
| syscall-ppc64-linux.S | 86 /* make a stack frame */ 136 /* pop off stack frame */ 165 /* Let the linker know we don't need an executable stack */ 166 .section .note.GNU-stack,"",@progbits
|
| /external/valgrind/main/massif/tests/ |
| deep-B.stderr.exp | 47 Massif: stack allocs: 0 48 Massif: stack frees: 0
|
| realloc.stderr.exp | 37 Massif: stack allocs: 0 38 Massif: stack frees: 0
|
| /external/valgrind/main/memcheck/tests/x86/ |
| pushfpopf_s.S | 18 # save possibly undef flags on stack
|
| /external/webkit/Tools/gdb/ |
| webkit.py | 311 stack = [] 313 stack.append([val, 318 while len(stack) > 0: 319 pair = stack.pop()
|
| /ndk/build/tools/ |
| dev-cleanup.sh | 49 rm -f $DIR/ndk-stack*
|
| /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
| symtab.h | 50 struct obstack stack; member in struct:ht
|
| /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
| symtab.h | 50 struct obstack stack; member in struct:ht
|
| /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
| symtab.h | 50 struct obstack stack; member in struct:ht
|
| /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
| symtab.h | 50 struct obstack stack; member in struct:ht
|
| /frameworks/native/libs/utils/ |
| RefBase.cpp | 46 // folder where stack traces are saved when DEBUG_REFS is enabled 113 refs->stack.dump(LOG_TAG); 127 refs->stack.dump(LOG_TAG); 134 CallStack stack(LOG_TAG); 200 snprintf(name, 100, DEBUG_REFS_CALLSTACK_PATH "/%p.stack", this); 205 ALOGD("STACK TRACE for %p saved in %s", this, name); 207 else ALOGE("FAILED TO PRINT STACK TRACE for %p in %s: %s", this, 218 CallStack stack; member in struct:android::RefBase::weakref_impl::ref_entry 235 ref->stack.update(2); 270 CallStack stack(LOG_TAG) [all...] |
| /dalvik/hit/src/com/android/hit/ |
| HprofParser.java | 412 StackTrace stack = mState.getStackTrace(thread.mStackTrace); local 414 threadSerialNumber, stack); 438 StackTrace stack = mState.getStackTrace(stackSerialNumber); local 497 ClassObj theClass = new ClassObj(id, stack, mClassNames.get(id)); 518 StackTrace stack = mState.getStackTrace(stackId); local 521 ClassInstance instance = new ClassInstance(id, stack, classId); 533 StackTrace stack = mState.getStackTrace(stackId); local 542 ArrayInstance array = new ArrayInstance(id, stack, Types.OBJECT, 555 StackTrace stack = mState.getStackTrace(stackId); local 564 ArrayInstance array = new ArrayInstance(id, stack, type, numElements [all...] |
| /external/compiler-rt/lib/asan/ |
| asan_interceptors.cc | 41 // that no extra frames are created, and stack trace contains 71 offset2, length2, &stack); \ 127 AsanThread *t = AsanThread::Create(current_tid, start_routine, arg, &stack); 155 static void ClearShadowMemoryForContextStack(uptr stack, uptr ssize) { 158 uptr bottom = stack & ~(PageSize - 1); 159 ssize += stack - bottom; 175 // Clear shadow memory for new context (it may share stack 177 uptr stack, ssize; local 178 ReadContextStack(ucp, &stack, &ssize); 179 ClearShadowMemoryForContextStack(stack, ssize) [all...] |
| /external/libffi/src/mips/ |
| ffi.c | 51 FFI_ASSERT(argp <= &stack[bytes]); \ 52 if (argp == &stack[bytes]) \ 54 argp = stack; \ 62 /* ffi_prep_args is called by the assembly routine once stack space 65 static void ffi_prep_args(char *stack, 77 on the stack. We reorder stuff on the stack here to 80 argp = &stack[bytes - (8 * sizeof(ffi_arg))]; 82 argp = stack; 84 argp = stack; [all...] |
| /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
| Test.java | 290 * Gets the failure message to show from the stack trace. 294 * @param stack the full stack trace 297 static String getFailureMessageFromStackTrace(String stack) { 298 // return the first two lines of stack as failure message 299 int endPoint = stack.indexOf('\n'); 301 int nextLine = stack.indexOf('\n', endPoint + 1); 303 return stack.substring(0, nextLine); 306 return stack;
|
| /external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
| ValidateLimitations.cpp | 12 bool IsLoopIndex(const TIntermSymbol* symbol, const TLoopStack& stack) { 13 for (TLoopStack::const_iterator i = stack.begin(); i != stack.end(); ++i) { 31 ValidateConstIndexExpr(const TLoopStack& stack) 32 : mValid(true), mLoopStack(stack) {}
|
| /external/webkit/Source/WebCore/inspector/front-end/ |
| TextEditorModel.js | 290 _doUndo: function(stack, callback) 293 for (var i = stack.length - 1; i >= 0; --i) { 294 var command = stack[i]; 295 stack.length = i; 300 if (i > 0 && stack[i - 1].explicit)
|
| /external/checkpolicy/ |
| module_compiler.c | 48 /* keep track of the last item added to the stack */ 92 /* reset the scoping stack */ 104 /* Given the current parse stack, returns 1 if a declaration would be 107 * current scope stack then this would return a 0. 601 /* Given the current parse stack, returns 1 if a requirement would be 1225 static int is_scope_in_stack(scope_datum_t * scope, scope_stack_t * stack) 1228 if (stack == NULL) { 1231 if (stack->type == 1) { 1232 avrule_decl_t *decl = stack->decl; 1243 /* not within scope of this stack, so try its parent * [all...] |