/external/chromium_org/third_party/angle/src/third_party/murmurhash/ |
MurmurHash3.cpp | 55 FORCE_INLINE uint32_t getblock ( const uint32_t * p, int i ) function 60 FORCE_INLINE uint64_t getblock ( const uint64_t * p, int i ) function 112 uint32_t k1 = getblock(blocks,i); 173 uint32_t k1 = getblock(blocks,i*4+0); 174 uint32_t k2 = getblock(blocks,i*4+1); 175 uint32_t k3 = getblock(blocks,i*4+2); 176 uint32_t k4 = getblock(blocks,i*4+3); 274 uint64_t k1 = getblock(blocks,i*2+0); 275 uint64_t k2 = getblock(blocks,i*2+1);
|
/external/chromium_org/third_party/smhasher/src/ |
MurmurHash3.cpp | 55 FORCE_INLINE uint32_t getblock ( const uint32_t * p, int i ) function 60 FORCE_INLINE uint64_t getblock ( const uint64_t * p, int i ) function 112 uint32_t k1 = getblock(blocks,i); 173 uint32_t k1 = getblock(blocks,i*4+0); 174 uint32_t k2 = getblock(blocks,i*4+1); 175 uint32_t k3 = getblock(blocks,i*4+2); 176 uint32_t k4 = getblock(blocks,i*4+3); 274 uint64_t k1 = getblock(blocks,i*2+0); 275 uint64_t k2 = getblock(blocks,i*2+1);
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_interface_java.cc | 99 static BlockDesc *getblock(uptr addr) { function in namespace:__tsan 113 for (BlockDesc *b = getblock(addr);; b--) { 198 BlockDesc *b = getblock(ptr); 212 BlockDesc *beg = getblock(ptr); 213 BlockDesc *end = getblock(ptr + size); 237 BlockDesc *s = getblock(src); 238 BlockDesc *d = getblock(dst); 239 BlockDesc *send = getblock(src + size);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
inspect.py | 673 def getblock(lines): function 693 else: return getblock(lines[lnum:]), lnum + 1 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
inspect.py | 673 def getblock(lines): function 693 else: return getblock(lines[lnum:]), lnum + 1 [all...] |