OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tbs
(Results
1 - 2
of
2
) sorted by null
/external/iproute2/tc/
tc_util.c
497
struct rtattr *
tbs
[TCA_STATS_MAX + 1];
local
499
parse_rtattr_nested(
tbs
, TCA_STATS_MAX, rta);
501
if (
tbs
[TCA_STATS_BASIC]) {
503
memcpy(&bs, RTA_DATA(
tbs
[TCA_STATS_BASIC]), MIN(RTA_PAYLOAD(
tbs
[TCA_STATS_BASIC]), sizeof(bs)));
508
if (
tbs
[TCA_STATS_QUEUE]) {
510
memcpy(&q, RTA_DATA(
tbs
[TCA_STATS_QUEUE]), MIN(RTA_PAYLOAD(
tbs
[TCA_STATS_QUEUE]), sizeof(q)));
515
if (
tbs
[TCA_STATS_RATE_EST]) {
517
memcpy(&re, RTA_DATA(
tbs
[TCA_STATS_RATE_EST]), MIN(RTA_PAYLOAD(tbs[TCA_STATS_RATE_EST]), sizeof(re)))
[
all
...]
/external/qemu/
exec.c
86
static TranslationBlock *
tbs
;
variable
90
/* any access to the
tbs
or the page table must use this lock */
136
/* list of
TBs
intersecting this ram page */
509
tbs
= qemu_malloc(code_gen_max_blocks * sizeof(TranslationBlock));
941
/* invalidate all
TBs
which intersect with the target physical page
973
/* we remove all the
TBs
in the range [start, end[ */
[
all
...]
Completed in 126 milliseconds