Searched refs:type_len_ts (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/
H A Dtrace-event-read.c350 static unsigned int type_len4host(unsigned int type_len_ts) argument
353 return (type_len_ts >> 27) & ((1 << 5) - 1);
355 return type_len_ts & ((1 << 5) - 1);
358 static unsigned int ts4host(unsigned int type_len_ts) argument
361 return type_len_ts & ((1 << 27) - 1);
363 return type_len_ts >> 5;
378 unsigned int type_len_ts; local
417 type_len_ts = data2host4(ptr);
420 type_len = type_len4host(type_len_ts);
421 delta = ts4host(type_len_ts);
[all...]

Completed in 86 milliseconds