Searched defs:ptrarith_typesize (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/Sema/
H A DSemaChecking.cpp7119 uint64_t ptrarith_typesize = Context.getTypeSize(EffectiveType); local
7121 // Handle ptrarith_typesize being zero, such as when casting to void*
7122 if (!ptrarith_typesize) ptrarith_typesize = 1;
7123 if (ptrarith_typesize != array_typesize) {
7125 uint64_t ratio = array_typesize / ptrarith_typesize;
7127 // multiple of ptrarith_typesize
7128 if (ptrarith_typesize * ratio == array_typesize)

Completed in 208 milliseconds