HomeSort by relevance Sort by last modified time
    Searched defs:stack (Results 451 - 475 of 1394) sorted by null

<<11121314151617181920>>

  /system/chre/host/msm/daemon/generated/
chre_slpi_stub.c 179 uint8_t* stack; member in struct:_allocator
212 if((_ALIGN_SIZE((uintptr_t)me->stackEnd, al) + size) < (uintptr_t)me->stack + me->nSize) {
234 static __inline void _allocator_init(_allocator* me, uint8_t* stack, int stackSize) {
235 me->stack = stack;
236 me->stackEnd = stack + stackSize;
  /system/extras/simpleperf/
record.h 115 const BranchStackItemType* stack; member in struct:PerfSampleBranchStackType
397 // all stack data is valid if dyn_size == 0.
  /toolchain/binutils/binutils-2.25/bfd/
coff-alpha.c 323 /* Push a value on the reloc evaluation stack. */
338 /* Store the value from the stack at the given address. Store it in
355 relocation stack. */
370 /* Shift the value on the top of the relocation stack right by the
721 /* The size of the stack for the relocation evaluator. */
747 bfd_vma stack[RELOC_STACKSIZE];
960 /* Push a value on the reloc evaluation stack. */
988 stack[tos++] = relocation;
993 /* Store a value from the reloc stack into a bitfield. */
1014 val |= (stack[--tos] & ((1 << size) - 1)) << offset
742 bfd_vma stack[RELOC_STACKSIZE]; local
1347 bfd_vma stack[RELOC_STACKSIZE]; local
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/doc/
chew.c 38 Two stacks are provided, a string stack and an integer stack.
46 ! - pop top of integer stack for address, pop next for value; store
47 @ - treat value on integer stack as the address of an integer; push
48 that integer on the integer stack after popping the "address"
74 internalmode - pop from integer stack, set `internalmode' to that value
75 print_stack_level - print current stack depth to stderr
77 [quoted string] - push string onto string stack
78 [word starting with digit] - push atol(str) onto integer stack
92 #define STACK 5
283 string_type stack[STACK]; variable
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
prdbg.c 42 /* Type stack. */
43 struct pr_stack *stack; member in struct:pr_handle
57 /* The type stack. */
61 /* Next element on the stack. */
303 info.stack = NULL;
334 /* Push a type on the type stack. */
350 n->next = info->stack;
351 info->stack = n;
356 /* Prepend a string onto the type on the top of the type stack. */
363 assert (info->stack != NULL)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
obj-coff.c 69 stack; typedef in typeref:struct:__anon108198
73 /* Stack stuff. */
75 static stack *
79 stack *st;
98 stack_push (stack *st, char *element)
112 stack_pop (stack *st)
1223 static stack *block_stack;
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/monkey/
MonkeyBase.java 411 String stack = kernelErrors.get(i).getStack(); local
412 if (stack != null) {
413 CLog.d("Kernel Error #%d: %s", i + 1, stack.split("\n")[0].trim());
417 String stack = kernelResets.get(i).getStack(); local
418 if (stack != null) {
419 CLog.d("Kernel Reset #%d: %s", i + 1, stack.split("\n")[0].trim());
  /cts/hostsidetests/services/activityandwindowmanager/util/src/android/server/cts/
WindowManagerState.java 200 final WindowStack stack = local
203 if (stack != null) {
204 mStacks.add(stack);
205 mDisplayStacks.get(currentDisplayId).add(stack);
476 for (WindowStack stack : mStacks) {
477 if (stackId == stack.mStackId) {
522 for (WindowStack stack : mStacks) {
523 if (stackId == stack.mStackId) {
524 return stack;
603 // Not a stack
609 final WindowStack stack = new WindowStack(); local
    [all...]
  /external/guice/lib/build/
easymock.jar 
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialog.java 29 package gov.nist.javax.sip.stack;
200 // Audit tag used by the SIP Stack audit
220 // the amount of time to keep this dialog around before the stack GC's it
444 SIPTransactionStack stack = dialog.sipStack; local
445 if (stack.isLoggingEnabled()) {
446 stack.getStackLogger().logDebug("resend 200 response from " + dialog);
    [all...]
  /frameworks/base/core/java/android/os/
StrictMode.java 152 // Only log a duplicate stack trace to the logs every second.
279 * our offending stack traces to the caller to ultimately handle
1168 Throwable stack = new Throwable(); local
    [all...]
  /bionic/tests/
pthread_test.cpp 160 void* stack = mmap(NULL, stack_size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); local
161 ASSERT_NE(MAP_FAILED, stack);
162 memset(stack, 0xff, stack_size);
166 ASSERT_EQ(0, pthread_attr_setstack(&attr, stack, stack_size));
175 ASSERT_EQ(0, munmap(stack, stack_size));
616 // If the joiner unmapped the thread's stack, that could lead to SIGSEGV in the thread.
619 void* stack = mmap(NULL, stack_size, PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, -1, 0); local
623 pthread_attr_setstack(&a, stack, stack_size);
628 ASSERT_EQ(0, munmap(stack, stack_size));
692 // Get the default stack size
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
MediaUtils.java 93 StackTraceElement[] stack = entry.getValue(); local
94 for (int index = 0; index < stack.length; ++index) {
96 String methodName = stack[index].getMethodName();
105 clazz = Class.forName(stack[index].getClassName());
125 // even if we cannot verify the method signature, there are signals in the stack
129 while (index + depth < stack.length
130 && stack[index + depth].getMethodName().equals("invoke")
131 && stack[index + depth].getClassName().equals(
138 if (index + depth < stack.length) {
139 if (stack[index + depth].getClassName().startsWith("android.test."))
    [all...]
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
CompatibilityTest.java 510 ByteArrayOutputStream stack = new ByteArrayOutputStream(); local
511 due.printStackTrace(new PrintWriter(stack, true));
512 StreamUtil.close(stack);
514 + "proceeding with next module. Stack trace: %s",
515 stack.toString());
    [all...]
  /development/ndk/platforms/android-9/arch-x86/include/asm/
processor_32.h 205 unsigned long stack[64]; member in struct:tss_struct
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_elementtree.c 1613 PyObject* stack; \/* element stack *\/ member in struct:__anon5703
    [all...]
  /external/ImageMagick/coders/
msl.c 1099 stack; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
ErrorManager.java 797 StackTraceElement[] stack = e.getStackTrace(); local
799 for (; i < stack.length; i++) {
800 StackTraceElement t = stack[i];
805 StackTraceElement location = stack[i];
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java 803 * The stack of start node + ancestors up to the root of the tree,
882 final int[] stack = new int[index*2]; local
883 System.arraycopy(_stack, 0, stack, 0, index);
884 _stack = stack;
890 --index; // Pop actual root node (if not start) back off the stack
    [all...]
  /external/freetype/include/freetype/internal/
psaux.h 614 /* T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A */
668 FT_Long stack[T1_MAX_CHARSTRINGS_OPERANDS]; member in struct:T1_DecoderRec_
    [all...]
  /external/freetype/src/cff/
cffgload.c 917 FT_Fixed* stack; local
932 /* compute random seed from stack address of parameter */
942 decoder->top = decoder->stack;
945 stack = decoder->top;
982 /* this is an operand, push it on the stack */
    [all...]
  /external/icu/icu4c/source/common/
ubidi.c 461 lastStack is the index of the last used entry in the stack. A value of -1
464 /* The following stack contains the position of the initiator of
467 /* The following stack contains the last known state before
1153 uint16_t stack[UBIDI_MAX_EXPLICIT_LEVEL+2]; \/* we never push anything >=UBIDI_MAX_EXPLICIT_LEVEL local
    [all...]
uresbund.cpp 1750 UResourceBundle stack; local
    [all...]
  /external/javassist/src/main/javassist/
CtBehavior.java 65 // a stack map table is copied from srcInfo.
430 // a stack map table is copied to destInfo.
707 int stack = b.getMaxStack(); local
710 if (stack > ca.getMaxStack())
711 ca.setMaxStack(stack);
1021 int stack = b.getMaxStack(); local
1128 int stack = b.getMaxStack(); local
    [all...]
  /external/javassist/src/main/javassist/compiler/
MemberCodeGen.java 552 int stack = bytecode.getStackDepth(); local
558 int count = bytecode.getStackDepth() - stack + 1;
620 on stack. It must be popped out. If aload0pos >= 0,
    [all...]

Completed in 2405 milliseconds

<<11121314151617181920>>