Home
last modified time | relevance | path

Searched refs:pop_count (Results 1 – 23 of 23) sorted by relevance

/external/autotest/client/site_tests/audio_ActiveStreamStress/
Daudio_ActiveStreamStress.py48 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/
Dcommon-operator-reducer.cc302 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()
Dinstruction-selector.cc2482 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/
Dcode-generator-arm64.cc1952 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/
Dsb_bc_dump.cpp184 if (n.bc.pop_count) in dump()
185 s << " POP:" << n.bc.pop_count; in dump()
Dsb_bc_builder.cpp164 .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()
Dsb_bc_decoder.cpp66 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()
Dsb_bc_finalize.cpp205 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()
Dsb_bc.h451 unsigned pop_count:3; member
/external/mesa3d/src/gallium/drivers/r600/
Dr600_asm.h171 unsigned pop_count; member
Deg_asm.c117 S_SQ_CF_WORD1_POP_COUNT(cf->pop_count) | in eg_bytecode_cf_build()
Dr600_asm.c1673 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()
Dr600_shader.c2239 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/
Dcode-generator-mips.cc2079 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/
Dwasm-interpreter.cc1176 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/
Dcode-generator-mips64.cc2452 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/
Dcode-generator-ppc.cc2295 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/
Dcode-generator-arm.cc2244 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/
Dcode-generator-s390.cc2630 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/
Dhydrogen-instructions.h1550 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
Dhydrogen.h554 int pop_count() const { return pop_count_; } in pop_count() function
Dhydrogen-instructions.cc2091 env->Drop(pop_count()); in ReplayEnvironment()
Dhydrogen.cc353 int pop_count = environment->pop_count(); in CreateSimulate() local
356 new(zone()) HSimulate(ast_id, pop_count, zone(), removable); in CreateSimulate()