HomeSort by relevance Sort by last modified time
    Searched refs:state_id (Results 1 - 12 of 12) sorted by null

  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/common/
arm_pm.c 80 unsigned int state_id; local
100 state_id = psci_get_pstate_id(power_state);
103 while (state_id) {
104 req_state->pwr_domain_state[i++] = state_id &
106 state_id >>= ARM_LOCAL_PSTATE_WIDTH;
  /device/linaro/bootloader/arm-trusted-firmware/plat/qemu/
qemu_pm.c 66 unsigned int state_id; local
86 state_id = psci_get_pstate_id(power_state);
89 while (state_id) {
90 req_state->pwr_domain_state[i++] = state_id &
92 state_id >>= PLAT_LOCAL_PSTATE_WIDTH;
  /device/linaro/bootloader/arm-trusted-firmware/plat/nvidia/tegra/soc/t210/
plat_psci_handlers.c 37 int state_id = psci_get_pstate_id(power_state); local
40 switch (state_id) {
45 req_state->pwr_domain_state[MPIDR_AFFLVL0] = state_id & 0xff;
54 req_state->pwr_domain_state[MPIDR_AFFLVL1] = state_id;
55 req_state->pwr_domain_state[MPIDR_AFFLVL0] = state_id;
72 ERROR("%s: unsupported state id (%d)\n", __func__, state_id);
  /device/linaro/bootloader/arm-trusted-firmware/plat/nvidia/tegra/soc/t132/
plat_psci_handlers.c 38 int state_id = psci_get_pstate_id(power_state); local
46 if ((state_id != PSTATE_ID_SOC_POWERDN) || (cpu != 0)) {
  /system/bt/btif/include/
btif_state_machine.h 43 * @param state_id the unique State ID. It should be a non-negative number.
45 State(BtifStateMachine& sm, int state_id) : sm_(sm), state_id_(state_id) {}
  /device/linaro/bootloader/arm-trusted-firmware/plat/nvidia/tegra/soc/t186/
plat_psci_handlers.c 49 int state_id = psci_get_pstate_id(power_state) & TEGRA186_STATE_ID_MASK; local
67 switch (state_id) {
72 req_state->pwr_domain_state[MPIDR_AFFLVL0] = state_id;
73 req_state->pwr_domain_state[MPIDR_AFFLVL1] = state_id;
78 ERROR("%s: unsupported state id (%d)\n", __func__, state_id);
  /external/devlib/devlib/module/
cpuidle.py 110 state_id = 'state{}'.format(j)
111 while state_id in idle_node:
112 state_node = idle_node[state_id]
116 path=self.target.path.join(basepath, cpu_id, 'cpuidle', state_id),
127 state_id = 'state{}'.format(j)
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt8173/
plat_pm.c 736 unsigned int state_id; local
756 state_id = psci_get_pstate_id(power_state);
759 while (state_id) {
760 req_state->pwr_domain_state[i++] = state_id &
762 state_id >>= MTK_LOCAL_PSTATE_WIDTH;
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/psci/
psci.h 117 #define psci_make_powerstate(state_id, type, pwrlvl) \
118 (((state_id) & PSTATE_ID_MASK) << PSTATE_ID_SHIFT) |\
  /external/v8/src/compiler/
code-generator.cc 670 int const state_id = i.InputInt32(frame_state_offset); local
671 return code()->GetDeoptimizationEntry(state_id);
    [all...]
instruction.cc 952 int state_id) {
953 return deoptimization_entries_[state_id];
    [all...]
instruction-selector.cc 768 int const state_id = sequence()->AddDeoptimizationEntry( variable
771 buffer->instruction_args.push_back(g.TempImmediate(state_id));
2527 int const state_id = local
    [all...]

Completed in 982 milliseconds