Home
last modified time | relevance | path

Searched refs:or_mask (Results 1 – 5 of 5) sorted by relevance

/bionic/benchmarks/tests/
Dbenchmark_test.cpp23 for (size_t or_mask = 0; or_mask < alignment; ++or_mask) { in TEST() local
25 or_mask)); in TEST()
26 ASSERT_EQ(aligned_ptr % alignment, or_mask); in TEST()
/bionic/benchmarks/
Dutil.cpp29 char* GetAlignedMemory(char* orig_ptr, size_t alignment, size_t or_mask) { in GetAlignedMemory() argument
33 if (or_mask > alignment) { in GetAlignedMemory()
42 ptr |= alignment | or_mask; in GetAlignedMemory()
Dutil.h64 char* GetAlignedMemory(char* orig_ptr, size_t alignment, size_t or_mask);
/bionic/libc/kernel/uapi/linux/
Dvboxguest.h121 __u32 or_mask; member
131 __u32 or_mask; member
/bionic/tests/
Dbuffer_tests.cpp196 static void *GetAlignedPtr(void *orig_ptr, int alignment, int or_mask) { in GetAlignedPtr() argument
203 ptr |= alignment | or_mask; in GetAlignedPtr()