/external/proguard/src/proguard/evaluation/ |
D | Processor.java | 44 private final Stack stack; field in Processor 62 Stack stack, in Processor() argument 68 this.stack = stack; in Processor() 85 stack.push(valueFactory.createReferenceValueNull()); in visitSimpleInstruction() 97 stack.push(valueFactory.createIntegerValue(simpleInstruction.constant)); in visitSimpleInstruction() 102 stack.push(valueFactory.createLongValue(simpleInstruction.constant)); in visitSimpleInstruction() 108 stack.push(valueFactory.createFloatValue((float)simpleInstruction.constant)); in visitSimpleInstruction() 113 stack.push(valueFactory.createDoubleValue((double)simpleInstruction.constant)); in visitSimpleInstruction() 120 stack.ipop(); in visitSimpleInstruction() 121 stack.apop(); in visitSimpleInstruction() [all …]
|
/external/srec/srec/crec/ |
D | astar.c | 52 int astar_draw_tree_as_dotty(const char* file, srec* rec, AstarStack* stack); 238 void list_free_parps(AstarStack* stack, char* msg); 240 #define list_free_parps(stack,msg) argument 248 partial_path* make_new_partial_path(AstarStack* stack); 289 partial_path* extend_path(AstarStack* stack, in extend_path() argument 383 extended_parp = make_new_partial_path(stack); in extend_path() 421 void check_stack_root_sanity(AstarStack* stack) in check_stack_root_sanity() argument 423 partial_path* parp1 = stack->root_path; in check_stack_root_sanity() 433 partial_path* make_new_partial_path(AstarStack* stack) in make_new_partial_path() argument 435 partial_path* return_parp = stack->free_parp_list; in make_new_partial_path() [all …]
|
D | srec_results.c | 112 AstarStack* stack = rec ? rec->astar_stack : 0; in srec_nbest_prepare_list() local 114 if (!stack) in srec_nbest_prepare_list() 119 rc = astar_stack_prepare(stack, n, rec); in srec_nbest_prepare_list() 129 if (stack->num_complete_paths) in srec_nbest_prepare_list() 131 *bestcost = stack->complete_paths[0]->costsofar; in srec_nbest_prepare_list() 144 AstarStack* stack = rec ? rec->astar_stack : 0; in srec_nbest_destroy_list() local 145 astar_stack_clear(stack); in srec_nbest_destroy_list() 151 AstarStack* stack = rec ? rec->astar_stack : 0; in srec_nbest_get_num_choices() local 152 return stack ? stack->num_complete_paths : 0; in srec_nbest_get_num_choices() 158 AstarStack* stack = rec ? rec->astar_stack : 0; in srec_nbest_put_confidence_value() local [all …]
|
/external/easymock/src/org/easymock/internal/ |
D | LastControl.java | 48 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); in reportMatcher() local 49 if (stack == null) { in reportMatcher() 50 stack = new Stack<IArgumentMatcher>(); in reportMatcher() 51 threadToArgumentMatcherStack.set(stack); in reportMatcher() 53 stack.push(matcher); in reportMatcher() 57 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); in pullMatchers() local 58 if (stack == null) { in pullMatchers() 62 return new ArrayList<IArgumentMatcher>(stack); in pullMatchers() 66 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); in reportAnd() local 67 assertState(stack != null, "no matchers found."); in reportAnd() [all …]
|
/external/javassist/src/main/javassist/bytecode/ |
D | CodeAnalyzer.java | 40 int[] stack = new int[length]; in computeMaxStack() local 42 initStack(stack, codeAttr); in computeMaxStack() 47 if (stack[i] < 0) { in computeMaxStack() 49 visitBytecode(ci, stack, i); in computeMaxStack() 55 if (stack[i] > maxStack) in computeMaxStack() 56 maxStack = stack[i]; in computeMaxStack() 61 private void initStack(int[] stack, CodeAttribute ca) { in initStack() argument 62 stack[0] = -1; in initStack() 67 stack[et.handlerPc(i)] = -2; // an exception is on stack in initStack() 71 private void visitBytecode(CodeIterator ci, int[] stack, int index) in visitBytecode() argument [all …]
|
/external/speex/libspeex/ |
D | stack_alloc.h | 91 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) argument 93 …stack, size, type) (VALGRIND_MAKE_NOACCESS(stack, 1000),ALIGN((stack),sizeof(type)),VALGRIND_MAKE_… argument 97 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) argument 99 #define PUSH(stack, size, type) (ALIGN((stack),sizeof(type)),(stack)+=((size)*sizeof(type)),(type*)… argument 111 #define ALLOC(var, size, type) var = PUSH(stack, size, type)
|
/external/libffi/src/pa/ |
D | ffi.c | 140 void ffi_prep_args_pa32(UINT32 *stack, extended_cif *ecif, unsigned bytes) in ffi_prep_args_pa32() argument 149 debug(1, "%s: stack = %p, ecif = %p, bytes = %u\n", __FUNCTION__, stack, in ffi_prep_args_pa32() 162 *(SINT32 *)(stack - slot) = *(SINT8 *)(*p_argv); in ffi_prep_args_pa32() 166 *(UINT32 *)(stack - slot) = *(UINT8 *)(*p_argv); in ffi_prep_args_pa32() 170 *(SINT32 *)(stack - slot) = *(SINT16 *)(*p_argv); in ffi_prep_args_pa32() 174 *(UINT32 *)(stack - slot) = *(UINT16 *)(*p_argv); in ffi_prep_args_pa32() 182 *(UINT32 *)(stack - slot) = *(UINT32 *)(*p_argv); in ffi_prep_args_pa32() 189 *(UINT64 *)(stack - slot) = *(UINT64 *)(*p_argv); in ffi_prep_args_pa32() 195 *(UINT32 *)(stack - slot) = *(UINT32 *)(*p_argv); in ffi_prep_args_pa32() 199 case 0: fldw(stack - slot, fr4); break; in ffi_prep_args_pa32() [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
D | StackExtensions.cs | 45 public static T elementAt<T>( this Stack<T> stack, int index ) in elementAt() argument 47 return stack.ElementAt( index ); in elementAt() 51 public static T peek<T>( this Stack<T> stack ) in peek() argument 53 return stack.Peek(); in peek() 57 public static T pop<T>( this Stack<T> stack ) in pop() argument 59 return stack.Pop(); in pop() 63 public static void push<T>( this Stack<T> stack, T obj ) in push() argument 65 stack.Push( obj ); in push() 69 public static int size<T>( this Stack<T> stack ) in size() argument 71 return stack.Count; in size() [all …]
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | Frame.java | 25 private Type[] stack; field in Frame 36 public Frame(int locals, int stack) { in Frame() argument 38 this.stack = new Type[stack]; in Frame() 69 return stack[index]; in getStack() 79 stack[index] = type; in setStack() 120 return stack[top - 1]; in peek() 131 return stack[--top]; in pop() 140 stack[top++] = type; in push() 151 Frame frame = new Frame(locals.length, stack.length); in copy() 153 System.arraycopy(stack, 0, frame.stack, 0, stack.length); in copy() [all …]
|
/external/libffi/src/ia64/ |
D | ffi.c | 278 struct ia64_args *stack; in ffi_call() local 289 stack = alloca (cif->bytes); in ffi_call() 298 stack->gp_regs[gpcount++] = *(SINT8 *)avalue[i]; in ffi_call() 301 stack->gp_regs[gpcount++] = *(UINT8 *)avalue[i]; in ffi_call() 304 stack->gp_regs[gpcount++] = *(SINT16 *)avalue[i]; in ffi_call() 307 stack->gp_regs[gpcount++] = *(UINT16 *)avalue[i]; in ffi_call() 310 stack->gp_regs[gpcount++] = *(SINT32 *)avalue[i]; in ffi_call() 313 stack->gp_regs[gpcount++] = *(UINT32 *)avalue[i]; in ffi_call() 317 stack->gp_regs[gpcount++] = *(UINT64 *)avalue[i]; in ffi_call() 321 stack->gp_regs[gpcount++] = (UINT64)(PTR64) *(void **)avalue[i]; in ffi_call() [all …]
|
/external/stlport/stlport/stl/ |
D | _stack.h | 47 class stack 50 : public __stlport_class<stack<_Tp> > 52 : public __stlport_class<stack<_Tp, _Sequence> > 58 typedef stack<_Tp> _Self; 60 typedef stack<_Tp, _Sequence> _Self; 74 stack() : c() {} in stack() function 75 explicit stack(const _Sequence& __s) : c(__s) {} in stack() function 78 stack(__move_source<_Self> src) in stack() function 106 inline bool _STLP_CALL operator==(const stack< _STLP_STACK_ARGS >& __x, 107 const stack< _STLP_STACK_ARGS >& __y) [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | win_ftol2.ll | 11 ; the x87 stack instead of the callstack. The input value is popped by the 42 ;; stack is empty 44 ;; stack is %z 46 ;; stack is %y %z 48 ;; stack is %x %y %z 50 ;; stack is %x %1 %z 52 ;; stack is %1 %2 56 ;; stack is %2 %1 62 ;; stack is empty 76 ;; stack is empty [all …]
|
/external/v8/src/ |
D | json.js | 64 function SerializeArray(value, replacer, stack, indent, gap) { argument 65 if (!%PushIfAbsent(stack, value)) { 73 var strP = JSONSerialize($String(i), value, replacer, stack, 90 stack.pop(); 94 function SerializeObject(value, replacer, stack, indent, gap) { argument 95 if (!%PushIfAbsent(stack, value)) { 106 var strP = JSONSerialize(p, value, replacer, stack, indent, gap); 118 var strP = JSONSerialize(p, value, replacer, stack, indent, gap); 138 stack.pop(); 142 function JSONSerialize(key, holder, replacer, stack, indent, gap) { argument [all …]
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
D | stack_utils.py | 37 stack = _find_thread_stack(thread_id) 38 assert(stack is not None) 41 _log_stack(logger, stack) 48 for tid, stack in sys._current_frames().items(): 50 return stack 54 def _log_stack(logger, stack): argument 56 for filename, lineno, name, line in traceback.extract_stack(stack): 63 stack = traceback.extract_tb(tb) 64 for frame_str in traceback.format_list(stack):
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | NamespaceMappings.java | 119 Stack stack; in initNamespaces() local 122 stack = createPrefixStack(EMPTYSTRING); in initNamespaces() 123 stack.push(nn); in initNamespaces() 127 stack = createPrefixStack(XML_PREFIX); in initNamespaces() 128 stack.push(nn); in initNamespaces() 141 final Stack stack = getPrefixStack(prefix); in lookupNamespace() local 142 if (stack != null && !stack.isEmpty()) { in lookupNamespace() 143 uri = ((MappingRecord) stack.peek()).m_uri; in lookupNamespace() 152 final Stack stack = (Stack) m_namespaces.get(prefix); in getMappingFromPrefix() local 153 return stack != null && !stack.isEmpty() ? in getMappingFromPrefix() [all …]
|
/external/v8/test/mjsunit/compiler/ |
D | regress-stacktrace-methods.js | 56 var stack = e.stack.toString(); variable 57 var p3 = stack.indexOf("at Hest.three"); 58 var p2 = stack.indexOf("at Svin.two"); 59 var p1 = stack.indexOf("at Hest.one"); 65 assertTrue(stack.indexOf("38:56") != -1); 66 assertTrue(stack.indexOf("34:51") != -1); 67 assertTrue(stack.indexOf("36:38") != -1); 68 assertTrue(stack.indexOf("54:5") != -1);
|
/external/guava/guava-tests/test/com/google/common/testing/ |
D | TearDownStackTest.java | 38 final TearDownStack stack = buildTearDownStack(); in testSingleTearDown() local 41 stack.addTearDown(tearDown); in testSingleTearDown() 45 stack.runTearDown(); in testSingleTearDown() 52 final TearDownStack stack = buildTearDownStack(); in testMultipleTearDownsHappenInOrder() local 55 stack.addTearDown(tearDownOne); in testMultipleTearDownsHappenInOrder() 66 stack.addTearDown(tearDownTwo); in testMultipleTearDownsHappenInOrder() 71 stack.runTearDown(); in testMultipleTearDownsHappenInOrder() 79 final TearDownStack stack = buildTearDownStack(); in testThrowingTearDown() local 82 stack.addTearDown(tearDownOne); in testThrowingTearDown() 85 stack.addTearDown(tearDownTwo); in testThrowingTearDown() [all …]
|
/external/proguard/src/proguard/classfile/attribute/preverification/ |
D | FullFrame.java | 37 public VerificationType[] stack; field in FullFrame 53 VerificationType[] stack) in FullFrame() argument 58 stack.length, in FullFrame() 59 stack); in FullFrame() 70 VerificationType[] stack) in FullFrame() argument 76 this.stack = stack; in FullFrame() 99 … stack[index].stackAccept(clazz, method, codeAttribute, offset, index, verificationTypeVisitor); in stackAccept() 149 VerificationType thisType = this.stack[index]; in equals() 150 VerificationType otherType = other.stack[index]; in equals() 173 hashCode ^= stack[index].hashCode(); in hashCode() [all …]
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_rtl_report.cc | 51 static void StackStripMain(ReportStack *stack) { in StackStripMain() argument 59 for (ReportStack *ent = stack; ent; ent = ent->next) { in StackStripMain() 90 DPrintf("Bottom stack frame of stack %zx is missed\n", stack->pc); in StackStripMain() 101 ReportStack *stack = 0; in SymbolizeStack() local 114 last->next = stack; in SymbolizeStack() 115 stack = ent; in SymbolizeStack() 117 StackStripMain(stack); in SymbolizeStack() 118 return stack; in SymbolizeStack() 135 void ScopedReport::AddStack(const StackTrace *stack) { in AddStack() argument 137 *rs = SymbolizeStack(*stack); in AddStack() [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_stacktrace.cc | 119 uptr StackTrace::CompressStack(StackTrace *stack, u32 *compressed, uptr size) { in CompressStack() argument 123 for (uptr i = 0; i < stack->size && i < size; i++) { in CompressStack() 124 compressed[i] = stack->trace[i]; in CompressStack() 127 if (stack->size < size) in CompressStack() 128 compressed[stack->size] = 0; in CompressStack() 134 for (uptr i = 0, n = stack->size; i < n; i++) { in CompressStack() 135 uptr pc = stack->trace[i]; in CompressStack() 174 CHECK_EQ(0, REAL(memcmp)(check_stack.trace, stack->trace, in CompressStack() 182 void StackTrace::UncompressStack(StackTrace *stack, in UncompressStack() argument 186 stack->size = 0; in UncompressStack() [all …]
|
D | sanitizer_stackdepot.cc | 33 uptr stack[1]; // [size] member 44 static u32 hash(const uptr *stack, uptr size) { in hash() argument 51 u32 k = stack[i]; in hash() 100 static u32 find(StackDesc *s, const uptr *stack, uptr size, u32 hash) { in find() argument 106 if (stack[i] != s->stack[i]) in find() 136 u32 StackDepotPut(const uptr *stack, uptr size) { in StackDepotPut() argument 137 if (stack == 0 || size == 0) in StackDepotPut() 139 uptr h = hash(stack, size); in StackDepotPut() 144 u32 id = find(s, stack, size, h); in StackDepotPut() 150 id = find(s2, stack, size, h); in StackDepotPut() [all …]
|
/external/apache-http/src/org/apache/http/impl/client/ |
D | ClientParamsStack.java | 121 public ClientParamsStack(ClientParamsStack stack) { in ClientParamsStack() argument 122 this(stack.getApplicationParams(), in ClientParamsStack() 123 stack.getClientParams(), in ClientParamsStack() 124 stack.getRequestParams(), in ClientParamsStack() 125 stack.getOverrideParams()); in ClientParamsStack() 142 public ClientParamsStack(ClientParamsStack stack, in ClientParamsStack() argument 145 this((aparams != null) ? aparams : stack.getApplicationParams(), in ClientParamsStack() 146 (cparams != null) ? cparams : stack.getClientParams(), in ClientParamsStack() 147 (rparams != null) ? rparams : stack.getRequestParams(), in ClientParamsStack() 148 (oparams != null) ? oparams : stack.getOverrideParams()); in ClientParamsStack()
|
/external/compiler-rt/lib/asan/ |
D | asan_report.h | 35 void NORETURN ReportDoubleFree(uptr addr, StackTrace *stack); 36 void NORETURN ReportFreeNotMalloced(uptr addr, StackTrace *stack); 38 StackTrace *stack); 40 StackTrace *stack); 43 const char *offset2, uptr length2, StackTrace *stack); 47 uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack); 49 uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack); 51 uptr addr, uptr zone_ptr, const char *zone_name, StackTrace *stack);
|
/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
D | TempVars.java | 97 TempVarsStack stack = varsLocal.get(); in get() local 99 TempVars instance = stack.tempVars[stack.index]; in get() 106 stack.tempVars[stack.index] = instance; in get() 109 stack.index++; in get() 130 TempVarsStack stack = varsLocal.get(); in release() local 133 stack.index--; in release() 136 if (stack.tempVars[stack.index] != this) { in release()
|
/external/valgrind/main/coregrind/m_syswrap/ |
D | syswrap-x86-darwin.c | 207 char *stack; in hijack_thread_state() local 212 stack = (char *)allocstack(tst->tid); in hijack_thread_state() 213 stack -= 64+320; // make room for top frame in hijack_thread_state() 214 memset(stack, 0, 64+320); // ...and clear it in hijack_thread_state() 215 *(uintptr_t *)stack = (uintptr_t)tst; // set parameter in hijack_thread_state() 216 stack -= sizeof(uintptr_t); in hijack_thread_state() 217 *(uintptr_t *)stack = 0; // push fake return address in hijack_thread_state() 220 mach->__esp = (uintptr_t)stack; in hijack_thread_state() 228 void call_on_new_stack_0_1 ( Addr stack, 316 Addr stack = VG_PGROUNDUP(sp) - stacksize; in pthread_hijack() local [all …]
|