OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IS_ALIGNED
(Results
1 - 9
of
9
) sorted by null
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
uastrfnc.h
20
#define
IS_ALIGNED
(p) (((ULONG_PTR)(p) & (sizeof(*(p))-1))==0)
rtinfo.h
17
#define
IS_ALIGNED
(ptr) (((UINT_PTR)(ptr) & ALIGN_SHIFT)==0x00000000)
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/source/
row.h
17
#define
IS_ALIGNED
(p, a) (!((uintptr_t)(p) & ((a) - 1)))
/external/libjpeg-turbo/simd/
jsimd_i386.c
28
#define
IS_ALIGNED
(ptr, order) (((unsigned)ptr & ((1 << order) - 1)) == 0)
30
#define IS_ALIGNED_SSE(ptr) (
IS_ALIGNED
(ptr, 4)) /* 16 byte alignment */
jsimd_x86_64.c
28
#define
IS_ALIGNED
(ptr, order) (((size_t)ptr & ((1 << order) - 1)) == 0)
30
#define IS_ALIGNED_SSE(ptr) (
IS_ALIGNED
(ptr, 4)) /* 16 byte alignment */
/external/e2fsprogs/lib/ext2fs/
unix_io.c
96
#define
IS_ALIGNED
(n, align) ((((unsigned long) n) & \
179
(
IS_ALIGNED
(buf, channel->align) &&
180
IS_ALIGNED
(size, channel->align))) {
250
(
IS_ALIGNED
(buf, channel->align) &&
251
IS_ALIGNED
(size, channel->align))) {
/external/libyuv/files/include/libyuv/
row.h
23
#define
IS_ALIGNED
(p, a) (!((uintptr_t)(p) & ((a) - 1)))
/external/valgrind/drd/
drd_pthread_intercepts.c
352
#define
IS_ALIGNED
(p) (((uintptr_t)(p) & (sizeof(*(p)) - 1)) == 0)
371
if (
IS_ALIGNED
(&mutex->__m_kind))
378
if (
IS_ALIGNED
(&mutex->__data.__kind))
[
all
...]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
row.h
23
#define
IS_ALIGNED
(p, a) (!((uintptr_t)(p) & ((a) - 1)))
[
all
...]
Completed in 206 milliseconds