When you use the FormHelper and your datatype on the departure_time field is either DATETIME or TIME, Cake will "automagically" handle all find and save operations properly.
So the fact that the actual data array holds separate hour, min and meridian fields doesn't impact the way it is stored in the database, this will convert nicely to 05:21:00 without any additional logic being necessary in your Model or Controller. If you want to find all records matching this time, you can simply find it with the full timestamp. Use something like:
$this->Rideoffer->find('all', array(
'conditions' => array(
'Rideoffer.departure_time' => '05:21:00'
)
));
Update
In reply to your comment, if you want to use the inserted value immediately, convert it to a DateTime object and format that in your condition. For example:
$time =& $this->request->data['Rideoffer']['DepartureTime'];
$date = new DateTime($time['hour'] . ':' . $time['min'] . ' ' . $time['meridian']);
Then format the date in your find:
$this->Rideoffer->find('all', array(
'conditions' => array(
'Rideoffer.departure_time' => $date->format('H:i:s')
)
));