/art/test/708-jit-cache-churn/src/ |
D | JitCacheChurnTest.java | 137 int bits = i; in $noinline$Call() local 138 bits = ((bits >>> 1) & 0x55555555) | ((bits << 1) & 0x55555555); in $noinline$Call() 139 bits = ((bits >>> 2) & 0x33333333) | ((bits << 2) & 0x33333333); in $noinline$Call() 140 bits = ((bits >>> 4) & 0x0f0f0f0f) | ((bits << 4) & 0x0f0f0f0f); in $noinline$Call() 141 bits = ((bits >>> 8) & 0x00ff00ff) | ((bits << 8) & 0x00ff00ff); in $noinline$Call() 142 bits = (bits >>> 16) | (bits << 16); in $noinline$Call() 143 sum += bits; in $noinline$Call()
|
/art/libartbase/base/ |
D | bit_utils_iterator.h | 44 explicit BitIteratorBase(T bits) : bits_(bits) { } in BitIteratorBase() argument 100 IterationRange<LowToHighBitIterator<T>> LowToHighBits(T bits) { in LowToHighBits() argument 102 LowToHighBitIterator<T>(bits), LowToHighBitIterator<T>()); in LowToHighBits() 106 IterationRange<HighToLowBitIterator<T>> HighToLowBits(T bits) { in HighToLowBits() argument 108 HighToLowBitIterator<T>(bits), HighToLowBitIterator<T>()); in HighToLowBits()
|
D | bit_utils.h | 258 constexpr T GetIntLimit(size_t bits) { in GetIntLimit() argument 259 DCHECK_NE(bits, 0u); in GetIntLimit() 260 DCHECK_LT(bits, BitSizeOf<T>()); in GetIntLimit() 261 return static_cast<T>(1) << (bits - 1); in GetIntLimit() 305 constexpr T MaxInt(size_t bits) { in MaxInt() argument 306 DCHECK(std::is_unsigned<T>::value || bits > 0u) << "bits cannot be zero for signed."; in MaxInt() 307 DCHECK_LE(bits, BitSizeOf<T>()); in MaxInt() 309 return bits == BitSizeOf<T>() in MaxInt() 312 ? ((bits == 1u) ? 0 : static_cast<T>(MaxInt<unsigned_type>(bits - 1))) in MaxInt() 313 : static_cast<T>(UINT64_C(1) << bits) - static_cast<T>(1); in MaxInt() [all …]
|
D | bit_vector_test.cc | 100 uint32_t bits[kWords]; in TEST() local 101 memset(bits, 0, sizeof(bits)); in TEST() 103 BitVector bv(false, Allocator::GetNoopAllocator(), kWords, bits); in TEST() 106 EXPECT_EQ(bits, bv.GetRawStorage()); in TEST() 157 uint32_t bits[kWords]; in TEST() local 158 memset(bits, 0, sizeof(bits)); in TEST() 160 BitVector bv(false, Allocator::GetNoopAllocator(), kWords, bits); in TEST()
|
D | stats.h | 38 void AddBits(double bits, size_t count = 1) { Add(bits / kBitsPerByte, count); }
|
D | bit_vector.h | 137 static constexpr uint32_t BitsToWords(uint32_t bits) { in BitsToWords() argument 138 return RoundUp(bits, kWordBits) / kWordBits; in BitsToWords()
|
/art/test/660-store-8-16/ |
D | info.txt | 2 used to crash on 8bits / 16bits immediate stores when the Java
|
/art/runtime/ |
D | art_field-inl.h | 248 JValue bits; in GetFloat() local 249 bits.SetI(Get32(object)); in GetFloat() 250 return bits.GetF(); in GetFloat() 256 JValue bits; in SetFloat() local 257 bits.SetF(f); in SetFloat() 258 Set32<kTransactionActive>(object, bits.GetI()); in SetFloat() 263 JValue bits; in GetDouble() local 264 bits.SetJ(Get64(object)); in GetDouble() 265 return bits.GetD(); in GetDouble() 271 JValue bits; in SetDouble() local [all …]
|
D | stack_map.cc | 194 uint32_t bits = mask.LoadBits(reg, std::min<uint32_t>(end - reg, kNumBits)); in DecodeDexRegisterMap() local 195 while (bits != 0) { in DecodeDexRegisterMap() 196 uint32_t bit = CTZ(bits); in DecodeDexRegisterMap() 202 bits ^= 1u << bit; // Clear the bit. in DecodeDexRegisterMap() 285 BitMemoryRegion bits = table.GetBitMemoryRegion(r, c); in Dump() local 286 for (size_t b = 0, e = bits.size_in_bits(); b < e; b++) { in Dump() 287 vios->Stream() << bits.LoadBit(e - b - 1); in Dump()
|
/art/tools/hiddenapi/ |
D | README.md | 31 Two bits of information are encoded in the DEX access flags. These are encoded 35 First bit is encoded as the inversion of visibility access flags (bits 2:0). 36 At most one of these flags can be set at any given time. Inverting these bits 37 therefore produces a value where at least two bits are set and there is never 42 LEB128 encoding. The following bits are used:
|
/art/test/577-checker-fp2int/ |
D | info.txt | 1 Unit test for float/double to raw bits conversions.
|
/art/test/436-shift-constant/ |
D | info.txt | 1 Regression tests for shift instructions and constants larger than 8bits.
|
/art/test/583-checker-zero/ |
D | info.txt | 1 Regression test for optimizing that used to think 0.0 has the same bits
|
/art/test/817-hiddenapi/ |
D | info.txt | 1 Test that even if hiddenapi bits are not propagated up the hierarchy, the
|
/art/test/419-long-parameter/ |
D | info.txt | 2 on 32bits architectures. The move to hard float ABI makes it so that the
|
/art/test/670-bitstring-type-check/ |
D | build | 57 // less bits for the level 1 character. 1025 classes at level 2 similarly guarantees 58 // an overflow if the number of bits for level 2 character is 10 or less. To test
|
/art/libdexfile/dex/ |
D | dex_file_verifier_test.cc | 810 uint32_t bits = POPCOUNT(kInterfaceDisallowed); in TEST_F() local 811 for (uint32_t i = 1; i < (1u << bits); ++i) { in TEST_F() 960 uint32_t bits = POPCOUNT(kAccFlags); in TEST_F() local 961 for (uint32_t j = 1; j < (1u << bits); ++j) { in TEST_F() 1170 uint32_t bits = POPCOUNT(kInterfaceDisallowed); in TEST_F() local 1171 for (uint32_t i = 1; i < (1u << bits); ++i) { in TEST_F()
|
/art/build/apex/ |
D | art_apex_test.py | 174 bits = (zipinfo.external_attr >> 16) & 0xFFFF 175 is_dir = get_octal(bits, 4) == 4 176 is_symlink = get_octal(bits, 4) == 2 177 is_exec = bits_is_exec(bits)
|
/art/test/510-checker-try-catch/smali/ |
D | Runtime.smali | 60 # The sum of the low and high 32 bits treated as integers is returned to prove 253 # to the location of the catch phi. The sum of the low and high 32 bits treated 347 # Values were chosen so that all 64 bits are used. 439 # and returned. Values were chosen so that all 64 bits are used.
|
/art/runtime/interpreter/mterp/x86_64ng/ |
D | other.S | 6 movl 2(rPC), %eax # grab all 32 bits at once
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 507 @ (thread id, count of 0 and preserved read barrier bits), 510 ands ip, r2, #LOCK_WORD_GC_STATE_MASK_SHIFTED_TOGGLED @ Test the non-gc bits. 512 @ unlocked case - store r3: original lock word plus thread id, preserved read barrier bits. 523 cbnz r3, .Lslow_lock @ if either of the top two bits are set, or the lock word's 593 strex r2, r3, [r0, #MIRROR_OBJECT_LOCK_WORD_OFFSET] @ strex necessary for read barrier bits.
|
/art/runtime/interpreter/mterp/x86_64/ |
D | other.S | 25 movl 2(rPC), %eax # grab all 32 bits at once
|
/art/runtime/interpreter/mterp/x86/ |
D | other.S | 29 movl 2(rPC), %eax # grab all 32 bits at once
|
/art/compiler/optimizing/ |
D | intrinsics_arm64.cc | 3641 Register bits = InputRegisterAt(invoke, 0); in VisitFP16ToFloat() local 3644 __ Fmov(half, bits); // ARMv8.2 in VisitFP16ToFloat()
|
D | nodes.h | 5552 S bits = bit_cast<S, T>(x); 5553 return bit_cast<T, S>(bits & std::numeric_limits<S>::max());
|