Searched refs:byte0 (Results 1 - 2 of 2) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DInstructionCodec.java48 int opcode = byte0(opcodeUnit);
63 int opcode = byte0(opcodeUnit);
82 int opcode = byte0(opcodeUnit);
101 int opcode = byte0(opcodeUnit);
118 int opcode = byte0(opcodeUnit);
135 int opcode = byte0(opcodeUnit);
153 int opcode = byte0(opcodeUnit);
171 int opcode = byte0(opcodeUnit);
191 int opcode = byte0(opcodeUnit);
209 int opcode = byte0(opcodeUni
1068 private static int byte0(int value) { method in class:InstructionCodec
[all...]
/external/webkit/Source/JavaScriptCore/assembler/
H A DARMv7Assembler.h205 // byte0 contains least significant bit; not using an array to make client code endian agnostic.
209 uint8_t byte0;
294 if ((bytes.byte0 == bytes.byte1) && (bytes.byte0 == bytes.byte2) && (bytes.byte0 == bytes.byte3)) {
295 encoding.immediate = bytes.byte0;
300 if ((bytes.byte0 == bytes.byte2) && !(bytes.byte1 | bytes.byte3)) {
301 encoding.immediate = bytes.byte0;
306 if ((bytes.byte1 == bytes.byte3) && !(bytes.byte0 | bytes.byte2)) {

Completed in 44 milliseconds