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

/external/clang/lib/Sema/
H A DSemaChecking.cpp6250 uint64_t ptrarith_typesize = Context.getTypeSize(EffectiveType); local
6252 // Handle ptrarith_typesize being zero, such as when casting to void*
6253 if (!ptrarith_typesize) ptrarith_typesize = 1;
6254 if (ptrarith_typesize != array_typesize) {
6256 uint64_t ratio = array_typesize / ptrarith_typesize;
6258 // multiple of ptrarith_typesize
6259 if (ptrarith_typesize * ratio == array_typesize)

Completed in 102 milliseconds