/external/autotest/client/site_tests/audio_ActiveStreamStress/ |
D | audio_ActiveStreamStress.py | 48 pop_count = 0 62 pop_count += 1 64 logging.info('Total streams closed: %d', pop_count) 72 pop_count += 1 74 logging.info('Total streams closed: %d', pop_count)
|
/external/v8/src/compiler/ |
D | common-operator-reducer.cc | 302 Node* pop_count = NodeProperties::GetValueInput(node, 0); in ReduceReturn() local 344 Node* ret = graph()->NewNode(node->op(), pop_count, value_inputs[i], in ReduceReturn() 360 Node* ret = graph()->NewNode(node->op(), pop_count, value_inputs[i], in ReduceReturn()
|
D | instruction-selector.cc | 2482 Node* pop_count = ret->InputAt(0); in VisitReturn() local 2483 value_locations[0] = (pop_count->opcode() == IrOpcode::kInt32Constant || in VisitReturn() 2484 pop_count->opcode() == IrOpcode::kInt64Constant) in VisitReturn() 2485 ? g.UseImmediate(pop_count) in VisitReturn() 2486 : g.UseRegister(pop_count); in VisitReturn()
|
/external/v8/src/compiler/arm64/ |
D | code-generator-arm64.cc | 1952 int pop_count = static_cast<int>(descriptor->StackParameterCount()); in AssembleReturn() local 1966 pop_count += (pop_count & 1); // align in AssembleReturn() 1972 pop_count += (pop_count & 1); // align in AssembleReturn() 1976 pop_count += (pop_count & 1); // align in AssembleReturn() 1981 pop_count += g.ToConstant(pop).ToInt32(); in AssembleReturn() 1982 __ Drop(pop_count); in AssembleReturn() 1985 __ Add(pop_reg, pop_reg, pop_count); in AssembleReturn()
|
/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_bc_dump.cpp | 184 if (n.bc.pop_count) in dump() 185 s << " POP:" << n.bc.pop_count; in dump()
|
D | sb_bc_builder.cpp | 164 .POP_COUNT(bc.pop_count) in build_cf() 176 .POP_COUNT(bc.pop_count) in build_cf() 193 .POP_COUNT(bc.pop_count) in build_cf()
|
D | sb_bc_decoder.cpp | 66 bc.pop_count = w1.get_POP_COUNT(); in decode_cf() 77 bc.pop_count = w1.get_POP_COUNT(); in decode_cf() 97 bc.pop_count = w1.get_POP_COUNT(); in decode_cf()
|
D | sb_bc_finalize.cpp | 205 if_pop->bc.pop_count = 1; in finalize_if() 218 nelse->bc.pop_count = 1; in finalize_if() 222 if_jump->bc.pop_count = 1; in finalize_if()
|
D | sb_bc.h | 451 unsigned pop_count:3; member
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_asm.h | 171 unsigned pop_count; member
|
D | eg_asm.c | 117 S_SQ_CF_WORD1_POP_COUNT(cf->pop_count) | in eg_bytecode_cf_build()
|
D | r600_asm.c | 1673 S_SQ_CF_WORD1_POP_COUNT(cf->pop_count) | in r600_bytecode_cf_build() 2149 if (cf->pop_count) in r600_bytecode_disasm() 2150 fprintf(stderr, "POP:%X ", cf->pop_count); in r600_bytecode_disasm()
|
D | r600_shader.c | 2239 cf_jump->pop_count = 1; in generate_gs_copy_shader() 2241 cf_pop->pop_count = 1; in generate_gs_copy_shader() 2424 cf_jump->pop_count = 1; in generate_gs_copy_shader() 2426 cf_pop->pop_count = 1; in generate_gs_copy_shader() 2910 cf_jump->pop_count = 1; in r600_emit_tess_factor() 2912 cf_pop->pop_count = 1; in r600_emit_tess_factor() 8513 ctx->bc->cf_last->pop_count = pops; in pops() 8662 ctx->bc->cf_last->pop_count = pops; 8691 ctx->bc->cf_last->pop_count = 1; 8736 ctx->bc->cf_last->pop_count = 1; in tgsi_else() [all …]
|
/external/v8/src/compiler/mips/ |
D | code-generator-mips.cc | 2079 int pop_count = static_cast<int>(descriptor->StackParameterCount()); in AssembleReturn() local 2113 pop_count += g.ToConstant(pop).ToInt32(); in AssembleReturn() 2119 if (pop_count != 0) { in AssembleReturn() 2120 __ DropAndRet(pop_count); in AssembleReturn()
|
/external/v8/src/wasm/ |
D | wasm-interpreter.cc | 1176 size_t pop_count = stack_.size() - dest - arity; in DoStackTransfer() local 1178 stack_[dest + i] = stack_[dest + pop_count + i]; in DoStackTransfer() 1180 stack_.resize(stack_.size() - pop_count); in DoStackTransfer()
|
/external/v8/src/compiler/mips64/ |
D | code-generator-mips64.cc | 2452 int pop_count = static_cast<int>(descriptor->StackParameterCount()); in AssembleReturn() local 2455 pop_count += g.ToConstant(pop).ToInt32(); in AssembleReturn() 2461 if (pop_count != 0) { in AssembleReturn() 2462 __ DropAndRet(pop_count); in AssembleReturn()
|
/external/v8/src/compiler/ppc/ |
D | code-generator-ppc.cc | 2295 int pop_count = static_cast<int>(descriptor->StackParameterCount()); in AssembleReturn() local 2332 pop_count += g.ToConstant(pop).ToInt32(); in AssembleReturn() 2336 __ Drop(pop_count); in AssembleReturn()
|
/external/v8/src/compiler/arm/ |
D | code-generator-arm.cc | 2244 int pop_count = static_cast<int>(descriptor->StackParameterCount()); in AssembleReturn() local 2287 pop_count += g.ToConstant(pop).ToInt32(); in AssembleReturn() 2291 __ Drop(pop_count); in AssembleReturn()
|
/external/v8/src/compiler/s390/ |
D | code-generator-s390.cc | 2630 int pop_count = static_cast<int>(descriptor->StackParameterCount()); in AssembleReturn() local 2664 pop_count += g.ToConstant(pop).ToInt32(); in AssembleReturn() 2668 __ Drop(pop_count); in AssembleReturn()
|
/external/v8/src/crankshaft/ |
D | hydrogen-instructions.h | 1550 HSimulate(BailoutId ast_id, int pop_count, Zone* zone, in HSimulate() argument 1553 pop_count_(pop_count), in HSimulate() 1570 int pop_count() const { return pop_count_; } in pop_count() function
|
D | hydrogen.h | 554 int pop_count() const { return pop_count_; } in pop_count() function
|
D | hydrogen-instructions.cc | 2091 env->Drop(pop_count()); in ReplayEnvironment()
|
D | hydrogen.cc | 353 int pop_count = environment->pop_count(); in CreateSimulate() local 356 new(zone()) HSimulate(ast_id, pop_count, zone(), removable); in CreateSimulate()
|