Home
last modified time | relevance | path

Searched refs:byte1 (Results 1 – 4 of 4) sorted by relevance

/external/chromium/chrome/browser/autofill/crypto/
Drc4_decryptor.h55 void SwapByte(uint8* byte1, uint8* byte2) { in SwapByte() argument
56 uint8 temp = *byte1; in SwapByte()
57 *byte1 = *byte2; in SwapByte()
/external/llvm/lib/Target/X86/Disassembler/
DX86DisassemblerDecoder.c387 uint8_t byte1; in readPrefixes() local
389 if (lookAtByte(insn, &byte1)) { in readPrefixes()
394 if (insn->mode == MODE_64BIT || byte1 & 0x8) { in readPrefixes()
429 uint8_t byte1; in readPrefixes() local
431 if (lookAtByte(insn, &byte1)) { in readPrefixes()
436 if (insn->mode == MODE_64BIT || byte1 & 0x8) { in readPrefixes()
/external/webkit/Source/JavaScriptCore/assembler/
DARMv7Assembler.h210 uint8_t byte1; member
294 …if ((bytes.byte0 == bytes.byte1) && (bytes.byte0 == bytes.byte2) && (bytes.byte0 == bytes.byte3)) { in makeEncodedImm()
300 if ((bytes.byte0 == bytes.byte2) && !(bytes.byte1 | bytes.byte3)) { in makeEncodedImm()
306 if ((bytes.byte1 == bytes.byte3) && !(bytes.byte0 | bytes.byte2)) { in makeEncodedImm()
307 encoding.immediate = bytes.byte1; in makeEncodedImm()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DToHTMLStream.java1257 int byte1 = 0xF0 | (uuuuu >> 2); // top 3 bits of uuuuu in writeAttrURI() local
1264 writer.write(makeHHString(byte1)); in writeAttrURI()