OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ADDR_GRANULARITY
(Results
1 - 2
of
2
) sorted by null
/external/valgrind/main/drd/tests/
unit_bitmap.c
203
assert((outer_loop_step %
ADDR_GRANULARITY
) == 0);
205
assert((inner_loop_step %
ADDR_GRANULARITY
) == 0);
211
for (j = i +
ADDR_GRANULARITY
; j < ub; j += inner_loop_step)
217
DRD_(bm_clear_load)(bm1, i, i + MAX(1,
ADDR_GRANULARITY
));
220
DRD_(bm_clear_load)(bm1, i, i + MAX(2,
ADDR_GRANULARITY
));
223
DRD_(bm_clear_load)(bm1, i, i + MAX(4,
ADDR_GRANULARITY
));
226
DRD_(bm_clear_load)(bm1, i, i + MAX(8,
ADDR_GRANULARITY
));
233
DRD_(bm_clear_store)(bm1, i, i + MAX(1,
ADDR_GRANULARITY
));
236
DRD_(bm_clear_store)(bm1, i, i + MAX(2,
ADDR_GRANULARITY
));
239
DRD_(bm_clear_store)(bm1, i, i + MAX(4,
ADDR_GRANULARITY
));
[
all
...]
/external/valgrind/main/drd/
drd_bitmap.h
60
#define
ADDR_GRANULARITY
(1U << ADDR_IGNORED_BITS)
63
* Round argument a up to a multiple of (1 <<
ADDR_GRANULARITY
), and next
64
* shift it right
ADDR_GRANULARITY
bits. The expression below is optimized
78
* shifted the address bits
ADDR_GRANULARITY
to the right.
Completed in 130 milliseconds