OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InstructionBits
(Results
1 - 5
of
5
) sorted by null
/external/v8/src/arm64/
instructions-arm64.h
99
V8_INLINE Instr
InstructionBits
() const {
108
return (
InstructionBits
() >> pos) & 1;
112
return unsigned_bitextract_32(msb, lsb,
InstructionBits
());
121
return
InstructionBits
() & mask;
/art/compiler/utils/arm/
constants_arm.h
250
int32_t
InstructionBits
() const {
261
return (
InstructionBits
() >> nr) & 1;
266
return (
InstructionBits
() >> shift) & ((1 << count) - 1);
323
int SImmed24Field() const { return ((
InstructionBits
() << 8) >> 8); }
378
return ((
InstructionBits
() & 0xff000000) == 0xef000000);
383
return ((
InstructionBits
() & 0xfff000f0) == 0xe1200070);
/external/vixl/src/vixl/a64/
instructions-a64.h
165
Instr
InstructionBits
() const {
174
return (
InstructionBits
() >> pos) & 1;
178
return unsigned_bitextract_32(msb, lsb,
InstructionBits
());
187
return
InstructionBits
() & mask;
510
instrbits_ = instr->
InstructionBits
();
515
instrbits_ = instr->
InstructionBits
();
521
instrbits_ = instr->
InstructionBits
();
528
instrbits_ = instr->
InstructionBits
();
/external/v8/src/arm/
constants-arm.h
455
inline Instr
InstructionBits
() const {
466
return (
InstructionBits
() >> nr) & 1;
471
return (
InstructionBits
() >> lo) & ((2 << (hi - lo)) - 1);
476
return
InstructionBits
() & (((2 << (hi - lo)) - 1) << lo);
606
inline int SImmed24Value() const { return ((
InstructionBits
() << 8) >> 8); }
/external/v8/src/ppc/
constants-ppc.h
505
inline Instr
InstructionBits
() const {
515
inline int Bit(int nr) const { return (
InstructionBits
() >> nr) & 1; }
519
return (
InstructionBits
() >> lo) & ((2 << (hi - lo)) - 1);
524
return
InstructionBits
() & (((2 << (hi - lo)) - 1) << lo);
Completed in 193 milliseconds