OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lowbyte
(Results
1 - 13
of
13
) sorted by null
/dalvik/dx/src/com/android/dx/io/
Opcodes.java
321
int
lowByte
= opcode & 0xff;
322
if ((
lowByte
== 0) || (
lowByte
== 0xff)) {
360
int
lowByte
= opcodeUnit & 0xff;
361
return ((
lowByte
== 0) || (
lowByte
== 0xff)) ? opcodeUnit :
lowByte
;
/external/dexmaker/src/dx/java/com/android/dx/io/
Opcodes.java
360
int
lowByte
= opcode & 0xff;
361
if ((
lowByte
== 0) || (
lowByte
== 0xff)) {
399
int
lowByte
= opcodeUnit & 0xff;
400
return ((
lowByte
== 0) || (
lowByte
== 0xff)) ? opcodeUnit :
lowByte
;
/external/arduino/hardware/arduino/cores/arduino/
wiring.h
93
#define
lowByte
(w) ((uint8_t) ((w) & 0xff))
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_network.c
28
/* Use the MAKEWORD(
lowbyte
, highbyte) macro declared in Windef.h */
/external/mesa3d/src/gallium/auxiliary/util/
u_network.c
28
/* Use the MAKEWORD(
lowbyte
, highbyte) macro declared in Windef.h */
/dalvik/vm/compiler/codegen/x86/libenc/
enc_base.cpp
161
const unsigned
lowByte
= (byte & OpcodeByteKind_OpcodeMask);
162
assert(
lowByte
<= 7);
179
modrm.reg = (char)
lowByte
;
191
const unsigned
lowByte
= (byte & OpcodeByteKind_OpcodeMask);
192
*stream = (char)
lowByte
+ getHWRegIndex(opnds[idx].reg());
274
const unsigned
lowByte
= (byte & OpcodeByteKind_OpcodeMask);
275
*(unsigned char*)stream = (unsigned char)
lowByte
+
[
all
...]
enc_tabl.cpp
[
all
...]
/dalvik/libdex/
DexOpcodes.h
[
all
...]
/dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java
856
private static short codeUnit(int
lowByte
, int highByte) {
857
if ((
lowByte
& ~0xff) != 0) {
858
throw new IllegalArgumentException("bogus
lowByte
");
865
return (short) (
lowByte
| (highByte << 8));
[
all
...]
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
MainThreadWebSocketChannel.cpp
482
unsigned char
lowByte
= code;
484
buf.append(static_cast<char>(
lowByte
));
648
unsigned char
lowByte
= static_cast<unsigned char>(frame.payload[1]);
649
m_closeEventCode = highByte << 8 |
lowByte
;
[
all
...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
InstructionCodec.java
[
all
...]
/external/javassist/src/main/javassist/bytecode/
CodeIterator.java
903
int
lowbyte
= ByteArray.read32bit(code, i2 + 4);
local
904
ByteArray.write32bit(
lowbyte
, newcode, j + 4);
909
i2 = i0 + (highbyte -
lowbyte
+ 1) * 4;
1183
int
lowbyte
= ByteArray.read32bit(code, i2 + 4);
local
[
all
...]
/external/robolectric/lib/main/
javassist-3.14.0-GA.jar
Completed in 456 milliseconds