OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kDefaultAlignment
(Results
1 - 4
of
4
) sorted by null
/external/compiler-rt/lib/tsan/rtl/
tsan_mman.h
20
const uptr
kDefaultAlignment
= 16;
31
uptr align =
kDefaultAlignment
, bool signal = true);
tsan_fd.cc
51
FdSync *s = (FdSync*)user_alloc(thr, pc, sizeof(FdSync),
kDefaultAlignment
,
82
void *p = user_alloc(thr, pc, size,
kDefaultAlignment
, false);
/external/tensorflow/tensorflow/core/lib/core/
arena.h
58
static const int
kDefaultAlignment
= 4;
60
static const int
kDefaultAlignment
= 8;
arena.cc
51
assert(block_size >
kDefaultAlignment
);
98
CHECK(SatisfyAlignment(
kDefaultAlignment
));
155
// Must be a multiple of
kDefaultAlignment
, unless requested
158
(alignment > 1 ? LeastCommonMultiple(alignment,
kDefaultAlignment
) : 1);
Completed in 1907 milliseconds