Hi Tushar,
The assembly code in the screenshot is extracted from the project FXTH87_E_FW_LF_Rx_RF_Tx, which is a firmware-based project. The body of the functions are not present in the projects. Instead, the program jumps to the firmware section as described in the file Firmware_lnk.h of the project:

To work with the library model, please use the FXTH87_E_LIB_LF_Rx_RF_Tx project. In this project, the functions are added from a library:

In the assembly code, we can see the program jumping at the address where the function is actually stored. For example, to execute TPMS_RF_ENABLE the program jumps at 0xC68B:

And we see in the map file that the function is stored at this address:

As explained in AN12523, in library-model applications the user code and firmware library functions can be stored anywhere in the FLASH except the trim zone. The trim zone from 0xFC00 to 0xFDFF is reserved to trim coefficients, which are coefficients used to operate the sensors. These coefficients are not functions.
Best regards,
Tomas