Searched refs:type_len_ts (Results 1 – 1 of 1) sorted by relevance
350 static unsigned int type_len4host(unsigned int type_len_ts) in type_len4host() argument353 return (type_len_ts >> 27) & ((1 << 5) - 1); in type_len4host()355 return type_len_ts & ((1 << 5) - 1); in type_len4host()358 static unsigned int ts4host(unsigned int type_len_ts) in ts4host() argument361 return type_len_ts & ((1 << 27) - 1); in ts4host()363 return type_len_ts >> 5; in ts4host()378 unsigned int type_len_ts; in trace_peek_data() local418 type_len_ts = data2host4(ptr); in trace_peek_data()421 type_len = type_len4host(type_len_ts); in trace_peek_data()422 delta = ts4host(type_len_ts); in trace_peek_data()