Power Down consumption on custom board

Seems to be direct correlation for 4 of them:

Bit 7 – PRTWI: Power Reduction TWI -> power_twi_disable(); power_twi_enable();
Writing a logic one to this bit shuts down the TWI by stopping the clock to the module. When
waking up the TWI again, the TWI should be re initialized to ensure proper operation.

• Bit 6 – PRTIM2: Power Reduction Timer/Counter2 -> Not Listed!
Writing a logic one to this bit shuts down the Timer/Counter2 module in synchronous mode (AS2
is 0). When the Timer/Counter2 is enabled, operation will continue like before the shutdown.

• Bit 5 – PRTIM0: Power Reduction Timer/Counter0 -> Not Listed!
Writing a logic one to this bit shuts down the Timer/Counter0 module. When the Timer/Counter0
is enabled, operation will continue like before the shutdown.

• Bit 4 – RReserved -> Not Listed!
This bit is reserved in ATmega48A/48PA/88A/88PA/168A/168PA/328/328P and will always read
as zero.

• Bit 3 – PRTIM1: Power Reduction Timer/Counter1 -> Not Listed!
Writing a logic one to this bit shuts down the Timer/Counter1 module. When the Timer/Counter1
is enabled, operation will continue like before the shutdown.

• Bit 2 – PRSPI: Power Reduction Serial Peripheral Interface -> power_spi_disable(); power_spi_enable();
If using debugWIRE On-chip Debug System, this bit should not be written to one.
Writing a logic one to this bit shuts down the Serial Peripheral Interface by stopping the clock to
the module. When waking up the SPI again, the SPI should be re initialized to ensure proper
operation.

• Bit 1 – PRUSART0: Power Reduction USART0 -> power_usart0_disable(); power_usart0_enable();
Writing a logic one to this bit shuts down the USART by stopping the clock to the module. When
waking up the USART again, the USART should be re initialized to ensure proper operation.

• Bit 0 – PRADC: Power Reduction ADC -> power_adc_disable(); power_adc_enable();
Writing a logic one to this bit shuts down the ADC. The ADC must be disabled before shut down.
The analog comparator cannot use the ADC input MUX when the ADC is shut down.

So, are there something like these?
power_tim0_enable(); & power_tim0_enable();
power_tim1_enable(); & power_tim1_enable();
power_tim2_enable(); & power_tim2_enable();