OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rz_size
(Results
1 - 3
of
3
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_allocator.cc
43
static u32 RZSize2Log(u32
rz_size
) {
44
CHECK_GE(
rz_size
, 16);
45
CHECK_LE(
rz_size
, 2048);
46
CHECK(IsPowerOfTwo(
rz_size
));
47
u32 res = Log2(
rz_size
) - 4;
48
CHECK_EQ(
rz_size
, RZLog2Size(res));
426
uptr
rz_size
= RZLog2Size(rz_log);
local
428
uptr needed_size = rounded_size +
rz_size
;
435
needed_size +=
rz_size
;
477
uptr beg_plus_redzone = alloc_beg +
rz_size
;
[
all
...]
/src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_allocator.cpp
45
static u32 RZSize2Log(u32
rz_size
) {
46
CHECK_GE(
rz_size
, 16);
47
CHECK_LE(
rz_size
, 2048);
48
CHECK(IsPowerOfTwo(
rz_size
));
49
u32 res = Log2(
rz_size
) - 4;
50
CHECK_EQ(
rz_size
, RZLog2Size(res));
555
uptr
rz_size
= RZLog2Size(rz_log);
local
557
uptr needed_size = rounded_size +
rz_size
;
564
needed_size +=
rz_size
;
597
uptr user_beg = alloc_beg +
rz_size
;
[
all
...]
/src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_allocator.cpp
43
static u32 RZSize2Log(u32
rz_size
) {
44
CHECK_GE(
rz_size
, 16);
45
CHECK_LE(
rz_size
, 2048);
46
CHECK(IsPowerOfTwo(
rz_size
));
47
u32 res = Log2(
rz_size
) - 4;
48
CHECK_EQ(
rz_size
, RZLog2Size(res));
510
uptr
rz_size
= RZLog2Size(rz_log);
local
512
uptr needed_size = rounded_size +
rz_size
;
518
needed_size +=
rz_size
;
560
uptr user_beg = alloc_beg +
rz_size
;
[
all
...]
Completed in 14 milliseconds
Indexes created Mon Jun 29 00:24:49 UTC 2026