Home
last modified time | relevance | path

Searched refs:bit (Results 1 – 25 of 47) sorted by relevance

12

/art/test/564-checker-bitcount/
Dinfo.txt1 Unit test for 32-bit and 64-bit bit count operation.
/art/test/568-checker-onebit/
Dinfo.txt1 Unit test for 32-bit and 64-bit high/low-bit operations.
/art/runtime/interpreter/mterp/x86/
Dbindiv.S17 # than 8-bit and +ve
18 jz .L${opcode}_8 # Do 8-bit divide
20 # than 16-bit and +ve
21 jz .L${opcode}_16 # Do 16-bit divide
33 div %cl # 8-bit divide otherwise.
/art/test/567-checker-compare/
Dinfo.txt1 Unit test for 32-bit and 64-bit compare operations.
/art/test/566-checker-signum/
Dinfo.txt1 Unit test for 32-bit and 64-bit signum operations.
/art/test/565-checker-rotate/
Dinfo.txt1 Unit test for 32-bit and 64-bit rotate operations.
/art/tools/hiddenapi/
DREADME.md35 First bit is encoded as the inversion of visibility access flags (bits 2:0).
40 Second bit is encoded differently for each given type of class member as there
41 is no single unused bit such that setting it would not increase the size of the
44 * bit 5 for fields as it carries no other meaning
45 * bit 5 for non-native methods, as `synchronized` can only be set on native
46 methods (the Java `synchronized` modifier is bit 17)
47 * bit 9 for native methods, as it carries no meaning and bit 8 (`native`) will
50 Two following bit encoding is used to denote the membership of a method/field:
/art/test/593-checker-long-2-float-regression/
Dinfo.txt2 the long-to-float implementation loading a constant as 64-bit double
3 instead of 32-bit float.
/art/compiler/optimizing/
Dintrinsics.h164 #define GENERIC_OPTIMIZATION(name, bit) \ argument
169 static constexpr size_t k##name = bit
183 bool IsBitSet(uint32_t bit) const { in IsBitSet() argument
184 DCHECK_LT(bit, sizeof(uint32_t) * kBitsPerByte); in IsBitSet()
185 return (*value_ & (1 << bit)) != 0u; in IsBitSet()
188 void SetBit(uint32_t bit) { in SetBit() argument
189 DCHECK_LT(bit, sizeof(uint32_t) * kBitsPerByte); in SetBit()
190 *(const_cast<uint32_t* const>(value_)) |= (1 << bit); in SetBit()
201 #define INTRINSIC_OPTIMIZATION(name, bit) \ argument
206 static constexpr size_t k##name = (bit) + kNumberOfGenericOptimizations
/art/tools/wrapagentproperties/
DREADME.md10 The libraries will be built for 32-bit, 64-bit, host and target. Below examples
11 assume you want to use the 64-bit version.
DAndroid.bp25 // Note that this tool needs to be built for both 32-bit and 64-bit since it requires
/art/test/997-single-step/src/art/
DTest997.java40 public static void doMultiPath(boolean bit) { in doMultiPath() argument
42 if (bit) { in doMultiPath()
/art/test/994-breakpoint-line/src/art/
DTest994.java28 public static void doMultiPath(boolean bit) { in doMultiPath() argument
30 if (bit) { in doMultiPath()
/art/disassembler/
Ddisassembler.h94 static inline bool HasBitSet(uint32_t value, uint32_t bit) { in HasBitSet() argument
95 return (value & (1 << bit)) != 0; in HasBitSet()
/art/test/521-regression-integer-field-set/
Dinfo.txt2 32-bit immediate (integer or reference) into a field used to generate
/art/dt_fd_forward/
DAndroid.bp25 // Note that this tool needs to be built for both 32-bit and 64-bit since it needs to be same
/art/tools/breakpoint-logger/
DAndroid.bp25 // Note that this tool needs to be built for both 32-bit and 64-bit since it requires
DREADME.md10 The libraries will be built for 32-bit, 64-bit, host and target. Below examples
11 assume you want to use the 64-bit version.
/art/test/dexdump/
Dall.txt111 insns size : 4 16-bit code units
127 insns size : 29 16-bit code units
156 insns size : 65 16-bit code units
203 insns size : 33 16-bit code units
250 insns size : 17 16-bit code units
273 insns size : 23 16-bit code units
299 insns size : 11 16-bit code units
319 insns size : 25 16-bit code units
346 insns size : 28 16-bit code units
372 insns size : 54 16-bit code units
[all …]
Dconst-method-handle.txt59 insns size : 4 16-bit code units
77 insns size : 25 16-bit code units
136 insns size : 4 16-bit code units
154 insns size : 47 16-bit code units
195 insns size : 25 16-bit code units
224 insns size : 15 16-bit code units
245 insns size : 3 16-bit code units
261 insns size : 3 16-bit code units
/art/test/590-checker-arr-set-null-regression/
Dinfo.txt9 but used to forget to remove the "need for a type check" bit in the
/art/adbconnection/
DAndroid.bp25 // Note that this tool needs to be built for both 32-bit and 64-bit since it requires
/art/tools/titrace/
DAndroid.bp28 // Note that this tool needs to be built for both 32-bit and 64-bit since it requires
/art/imgdiag/
DAndroid.bp25 // Note that this tool needs to be built for both 32-bit and 64-bit since it requires
/art/libartbase/base/
Dbit_utils_iterator.h48 uint32_t bit = *static_cast<Iter&>(*this); variable
49 bits_ &= ~(static_cast<T>(1u) << bit);

12