/external/webkit/JavaScriptCore/pcre/ |
D | pcre_exec.cpp | 285 #define RRETURN_LABEL *stack.currentFrame->returnLocation 292 stack.popCurrentFrame(); 296 stack.pushNewFrame((ra), (rb), RMATCH_WHERE(num)); \ 302 stack.pushNewFrame((ra), (rb), RMATCH_WHERE(num)); \ 303 startNewGroup(stack.currentFrame); \ 393 static int matchError(int errorCode, MatchStack& stack) in matchError() argument 395 stack.popAllFrames(); in matchError() 452 MatchStack stack; in match() local 470 stack.currentFrame->returnLocation = &&RETURN; in match() 472 stack.currentFrame->returnLocation = 0; in match() [all …]
|
/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 …]
|
D | BasicInvocationUnit.java | 50 private Stack stack; field in BasicInvocationUnit 138 …hod, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction, Stack stack) in invokeMember() argument 176 this.stack = stack; in invokeMember() 178 this.stack = null; in invokeMember() 189 setFieldValue(clazz, fieldrefConstant, stack.pop()); in visitFieldrefConstant() 195 setFieldClassValue(clazz, fieldrefConstant, stack.apop()); in visitFieldrefConstant() 203 stack.push(getFieldValue(clazz, fieldrefConstant, type)); in visitFieldrefConstant() 222 setMethodParameterValue(clazz, methodrefConstant, parameterIndex, stack.pop()); in visitAnyMethodrefConstant() 229 stack.push(getMethodReturnValue(clazz, methodrefConstant, returnType)); in visitAnyMethodrefConstant()
|
/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/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/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)
|
D | filters.h | 61 … spx_word16_t *aa, spx_word16_t *, spx_word16_t *y2, int N, int M, spx_word16_t *mem, char *stack); 62 …x_word16_t *a, spx_word16_t *y, int N, int M, spx_word16_t *mem1, spx_word16_t *mem2, char *stack); 64 …_coef_t *num, const spx_coef_t *den, spx_word16_t *y, int N, int ord, spx_mem_t *mem, char *stack); 65 …_word16_t *x, const spx_coef_t *den, spx_word16_t *y, int N, int ord, spx_mem_t *mem, char *stack); 66 …_word16_t *x, const spx_coef_t *num, spx_word16_t *y, int N, int ord, spx_mem_t *mem, char *stack); 73 …*ak, const spx_coef_t *awk1, const spx_coef_t *awk2, spx_word16_t *y, int N, int ord, char *stack); 74 …*ak, const spx_coef_t *awk1, const spx_coef_t *awk2, spx_word16_t *y, int N, int ord, char *stack); 76 …*ak, const spx_coef_t *awk1, const spx_coef_t *awk2, spx_word16_t *y, int N, int ord, char *stack); 87 char *stack
|
D | sb_celp.c | 206 st->stack = NULL; in sb_encoder_init() 209 speex_encoder_ctl(st->st_low, SPEEX_GET_STACK, &st->stack); in sb_encoder_init() 270 VALGRIND_MAKE_READABLE(st, (st->stack-(char*)st)); in sb_encoder_init() 308 char *stack; in sb_encode() local 332 stack=st->stack; in sb_encode() 339 qmf_decomp(in, h0, low, high, st->full_frame_size, QMF_ORDER, st->h0_mem, stack); in sb_encode() 411 roots=lpc_to_lsp (lpc, st->lpcSize, lsp, 10, LSP_DELTA1, stack); in sb_encode() 414 roots = lpc_to_lsp (lpc, st->lpcSize, lsp, 10, LSP_DELTA2, stack); in sb_encode() 523 iir_mem16(high, st->interp_qlpc, high, st->frame_size, st->lpcSize, st->mem_sp, stack); in sb_encode() 572 lsp_to_lpc(interp_lsp, interp_lpc, st->lpcSize,stack); in sb_encode() [all …]
|
D | ltp.h | 52 … spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack); 54 …spx_word16_t *sw, int start, int end, int len, int *pitch, spx_word16_t *gain, int N, char *stack); 72 char *stack, 93 char *stack, 115 char *stack, 136 char *stack,
|
/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/v8/src/ |
D | json.js | 102 function StackContains(stack, val) { argument 103 var length = stack.length; 105 if (stack[i] === val) { 112 function SerializeArray(value, replacer, stack, indent, gap) { argument 113 if (StackContains(stack, value)) { 116 stack.push(value); 122 var strP = JSONSerialize($String(i), value, replacer, stack, 139 stack.pop(); 143 function SerializeObject(value, replacer, stack, indent, gap) { argument 144 if (StackContains(stack, value)) { [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/proguard/src/proguard/optimize/evaluation/ |
D | PartialEvaluator.java | 212 TracedStack stack = new TracedStack(codeAttribute.u2maxStack); in visitCodeAttribute0() local 215 initializeVariables(clazz, method, codeAttribute, variables, stack); in visitCodeAttribute0() 225 stack, in visitCodeAttribute0() 499 TracedStack stack, in pushCallingInstructionBlock() argument 503 stack, in pushCallingInstructionBlock() 512 TracedStack stack, in pushInstructionBlock() argument 516 stack, in pushInstructionBlock() 529 TracedStack stack, in evaluateInstructionBlockAndExceptionHandlers() argument 537 stack, in evaluateInstructionBlockAndExceptionHandlers() 556 TracedStack stack, in evaluateInstructionBlock() argument [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/openssl/crypto/perlasm/ |
D | x86asm.pl | 23 if ($opcode =~ /^push/) { $stack+=4; } 24 elsif ($opcode =~ /^pop/) { $stack-=4; } 44 sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num); } 45 sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num); } 46 sub ::blindpop { &pop($_[0]); $stack+=4; } 47 sub ::wparam { &DWP($stack+4*$_[0],"esp"); } 122 $stack=4; 136 $stack=0; 146 $stack+=16; # readjust esp as if we didn't pop anything
|
/external/v8/tools/ |
D | tickprocessor.py | 40 def Tick(self, pc, stack): argument 42 if len(stack) > 0: 43 stack.insert(0, self.ToString()) 44 stack_key = tuple(stack) 84 def Tick(self, pc, stack): argument 85 super(JSCodeEntry, self).Tick(pc, stack) 338 def PreprocessStack(self, stack): argument 341 for frame in stack: 346 def ProcessStack(self, stack): argument 348 for frame in stack: [all …]
|
/external/clearsilver/python/examples/base/ |
D | sgmllib.py | 79 self.stack = [] 288 self.stack.append(tag) 295 found = len(self.stack) - 1 300 if tag not in self.stack: 306 found = len(self.stack) 308 if self.stack[i] == tag: found = i 309 while len(self.stack) > found: 310 tag = self.stack[-1] 319 del self.stack[-1] 333 print '*** Stack:', self.stack [all …]
|
/external/bison/lib/ |
D | timevar.c | 179 static struct timevar_stack_def *stack; variable 306 if (stack) 307 timevar_accumulate (&stack->timevar->elapsed, &start_time, &now); 326 context->next = stack; 327 stack = context; 341 struct timevar_stack_def *popped = stack; 346 if (&timevars[timevar] != stack->timevar) 360 stack = stack->next; 434 else if (stack->timevar == tv) 468 if (stack) [all …]
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
D | DEROutputStream.java | 69 byte[] stack = new byte[5]; in writeTag() 70 int pos = stack.length; in writeTag() 72 stack[--pos] = (byte)(tagNo & 0x7F); in writeTag() 77 stack[--pos] = (byte)(tagNo & 0x7F | 0x80); in writeTag() 81 write(stack, pos, stack.length - pos); in writeTag()
|
/external/openssl/crypto/bn/ |
D | bn_ctx.c | 144 BN_STACK stack; member 160 BN_STACK *stack = &ctx->stack; in ctxdbg() local 171 while(fpidx < stack->depth) in ctxdbg() 173 while(bnidx++ < stack->indexes[fpidx]) in ctxdbg() 207 BN_STACK_reset(&ctx->stack); in BN_CTX_init() 224 BN_STACK_init(&ret->stack); in BN_CTX_new() 239 ctx->stack.size, ctx->pool.size); in BN_CTX_free() 250 BN_STACK_finish(&ctx->stack); in BN_CTX_free() 262 else if(!BN_STACK_push(&ctx->stack, ctx->used)) in BN_CTX_start() 277 unsigned int fp = BN_STACK_pop(&ctx->stack); in BN_CTX_end()
|
/external/freetype/src/cff/ |
D | cffparse.c | 48 parser->top = parser->stack; in cff_parser_init() 454 FT_Byte** data = parser->stack; in cff_parse_font_matrix() 458 if ( parser->top >= parser->stack + 6 ) in cff_parse_font_matrix() 508 FT_Byte** data = parser->stack; in cff_parse_font_bbox() 514 if ( parser->top >= parser->stack + 4 ) in cff_parse_font_bbox() 531 FT_Byte** data = parser->stack; in cff_parse_private_dict() 537 if ( parser->top >= parser->stack + 2 ) in cff_parse_private_dict() 552 FT_Byte** data = parser->stack; in cff_parse_cid_ros() 558 if ( parser->top >= parser->stack + 3 ) in cff_parse_cid_ros() 728 parser->top = parser->stack; in cff_parser_run() [all …]
|
/external/v8/test/mjsunit/ |
D | stack-traces.js | 112 assertTrue(e.stack.indexOf(expected[i]) != -1, 117 assertEquals(e.stack.indexOf(unexpected[i]), -1, 132 assertEquals(-1, e.stack.indexOf('at new ReferenceError'), 149 assertTrue(e.stack.indexOf('at new ReferenceError') != -1, 168 assertTrue(e.stack.indexOf('<error: ReferenceError') != -1, 180 assertTrue(e.stack.indexOf('<error>') != -1,
|