| /src/external/lgpl3/gmp/dist/tests/mpn/ |
| t-mulmid.c | 27 /* Sizes are up to 2^SIZE_LOG limbs */ 28 #ifndef SIZE_LOG 29 #define SIZE_LOG 9 36 #define MAX_N (1L << SIZE_LOG) 58 unsigned size_log; local 60 size_log = 1 + gmp_urandomm_ui (rands, SIZE_LOG); 61 an = 1 + gmp_urandomm_ui(rands, 1L << size_log); 63 size_log = 1 + gmp_urandomm_ui (rands, SIZE_LOG); [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_allocator_secondary.h | 116 uptr size_log = MostSignificantSetBitIndex(map_size); local 117 CHECK_LT(size_log, ARRAY_SIZE(stats.by_size_log)); 128 stats.by_size_log[size_log]++;
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_allocator_secondary.h | 115 uptr size_log = MostSignificantSetBitIndex(map_size); local 116 CHECK_LT(size_log, ARRAY_SIZE(stats.by_size_log)); 127 stats.by_size_log[size_log]++;
|
| /src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| tsan_trace.h | 57 u64 size_log : 2; member in struct:__tsan::EventAccess 88 u64 size_log : 2; member in struct:__tsan::EventAccessExt
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_allocator_secondary.h | 115 uptr size_log = MostSignificantSetBitIndex(map_size); local 116 CHECK_LT(size_log, ARRAY_SIZE(stats.by_size_log)); 127 stats.by_size_log[size_log]++;
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_shadow.h | 99 // size_log : 2 113 DCHECK_EQ(kAccessSizeLog, size_log()); 166 u64 ALWAYS_INLINE size() const { return 1ull << size_log(); } 216 u64 size_log() const { return (x_ >> (3 + kClkBits)) & 3; } function in class:__tsan::Shadow
|
| tsan_trace.h | 106 u64 size_log : 2; member in struct:__tsan::v3::EventAccess 127 u64 size_log : 2; member in struct:__tsan::v3::EventAccessExt
|
| tsan_rtl.h | 493 int size_log; local 496 size_log = kSizeLog1; 499 size_log = kSizeLog2; 502 size_log = kSizeLog4; 506 size_log = kSizeLog8; 515 MemoryAccess(thr, pc, addr, size_log, is_write, is_atomic);
|
| /src/external/gpl3/gcc/dist/libsanitizer/hwasan/ |
| hwasan_linux.cpp | 388 const unsigned size_log = code & 0xf; local 389 if (size_log > 4 && size_log != 0xf) 391 const uptr size = size_log == 0xf ? uc->uc_mcontext.regs[1] : 1U << size_log; 407 const unsigned size_log = code & 0xf; 408 if (size_log > 4 && size_log != 0xf) 411 size_log == 0xf ? uc->uc_mcontext.gregs[REG_RSI] : 1U << size_log; [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/ |
| hwasan_linux.cpp | 336 const unsigned size_log = code & 0xf; local 337 if (size_log > 4 && size_log != 0xf) 339 const uptr size = size_log == 0xf ? uc->uc_mcontext.regs[1] : 1U << size_log; 355 const unsigned size_log = code & 0xf; 356 if (size_log > 4 && size_log != 0xf) 359 size_log == 0xf ? uc->uc_mcontext.gregs[REG_RSI] : 1U << size_log; [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| tsan_rtl.h | 188 // size_log : 2 207 DCHECK_EQ(kAccessSizeLog, size_log()); 264 u64 ALWAYS_INLINE size() const { return 1ull << size_log(); } 320 u64 size_log() const { return (x_ >> (3 + kClkBits)) & 3; } function in class:__tsan::Shadow
|