Home
last modified time | relevance | path

Searched refs:subsec (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/drivers/bluetooth/
H A Dbtrtl.c439 struct rtl_subsection *subsec; in btrtl_insert_ordered_subsec() local
442 subsec = list_entry(pos, struct rtl_subsection, list); in btrtl_insert_ordered_subsec()
443 if (subsec->prio >= node->prio) in btrtl_insert_ordered_subsec()
454 struct rtl_subsection *subsec; in btrtl_parse_section() local
496 subsec = kzalloc(sizeof(*subsec), GFP_KERNEL); in btrtl_parse_section()
497 if (!subsec) in btrtl_parse_section()
499 subsec->opcode = opcode; in btrtl_parse_section()
500 subsec->prio = common_subsec->prio; in btrtl_parse_section()
501 subsec->len = subsec_len; in btrtl_parse_section()
502 subsec->data = ptr; in btrtl_parse_section()
[all …]
/openbmc/bmcweb/redfish-core/include/utils/
H A Dtime_utils.hpp300 MilliDuration subsec = duration_cast<MilliDuration>(t); in toISO8061ExtendedStr() local
301 subseconds = std::format(".{:03}", subsec.count()); in toISO8061ExtendedStr()
306 MicroDuration subsec = duration_cast<MicroDuration>(t); in toISO8061ExtendedStr() local
307 subseconds = std::format(".{:06}", subsec.count()); in toISO8061ExtendedStr()