Home
last modified time | relevance | path

Searched refs:byte0 (Results 1 – 19 of 19) sorted by relevance

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
DAES256SHA256Decoder.java44 final int byte0 = 0xff & coder.properties[0]; in decode() local
45 final int numCyclesPower = byte0 & 0x3f; in decode()
47 final int ivSize = ((byte0 >> 6) & 1) + (byte1 & 0x0f); in decode()
48 final int saltSize = ((byte0 >> 7) & 1) + (byte1 >> 4); in decode()
/external/scapy/scapy/layers/tls/
Dautomaton.py106 byte0 = struct.unpack("B", self.remain_in[:1])[0]
108 if (byte0 in _tls_type) and (byte1 == 3):
116 if byte0 & 0x80:
117 grablen = 2 + 0 + ((byte0 & 0x7f) << 8) + byte1
119 grablen = 2 + 1 + ((byte0 & 0x3f) << 8) + byte1
Drecord.py280 byte0 = orb(_pkt[0])
282 if (byte0 not in _tls_type) or (byte1 != 3):
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dbswap_tree.ll27 %byte0 = and i32 %x, 255 ; 0x000000ff
31 %tmp0 = shl i32 %byte0, 8
61 %byte0 = lshr i32 %x, 8
65 %tmp0 = and i32 %byte0, 255 ; 0x000000ff
Dbswap_tree2.ll39 %byte0 = and i32 %x, 255 ; 0x000000ff
43 %tmp0 = shl i32 %byte0, 8
87 %byte0 = shl i32 %x, 8
91 %tmp0 = and i32 %byte0, 255 ; 0x000000ff
140 %byte0 = shl i32 %integer, 8
144 %tmp0 = and i32 %byte0, 255 ; 0x000000ff
Dunfold-masked-merge-scalar-constmask-lowhigh.ll7 ; X: [byte1][byte0]
Dunfold-masked-merge-scalar-constmask-innerouter.ll7 ; X: [byte3] [byte0]
/external/tensorflow/tensorflow/core/lib/core/
Darena_test.cc62 char* byte0 = a.Alloc(1); in TEST() local
64 EXPECT_EQ(alloc_aligned8 - byte0, 8); in TEST()
/external/u-boot/drivers/ddr/marvell/a38x/
Dddr3_training_db.c473 u8 i, byte0 = 0, byte1 = 0; in pattern_table_get_killer_word16() local
480 byte0 |= pattern_killer_pattern_table_map[index * 2][role] << i; in pattern_table_get_killer_word16()
484 return byte0 | (byte0 << 8) | (byte1 << 16) | (byte1 << 24); in pattern_table_get_killer_word16()
/external/image_io/src/jpeg/
Djpeg_segment.cc68 Byte byte0 = static_cast<Byte>(*str); in Find() local
69 while ((location = Find(location, byte0)) < GetEnd()) { in Find()
/external/bcc/src/cc/
Dbcc_debug.cc51 void SourceDebugger::adjustInstSize(uint64_t &Size, uint8_t byte0, in adjustInstSize() argument
55 if (byte0 == 0x18 && ((isLittleEndian && (byte1 & 0xf) == 0x1) || in adjustInstSize()
Dbcc_debug.h41 void adjustInstSize(uint64_t &Size, uint8_t byte0, uint8_t byte1);
/external/bcc/src/cc/includes/
Dbcc_debug.h41 void adjustInstSize(uint64_t &Size, uint8_t byte0, uint8_t byte1);
/external/clang/test/Rewriter/
Drewrite-modern-block.mm7 char byte0; field
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Dunfold-masked-merge-scalar-constmask-lowhigh.ll6 ; X: [byte1][byte0]
Dunfold-masked-merge-scalar-constmask-innerouter.ll6 ; X: [byte3] [byte0]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SystemZ/
Dvec-combine-02.ll173 %byte0 = extractelement <16 x i8> %vec, i32 2
178 store i8 %byte0, i8 *%ptr0
/external/llvm/test/CodeGen/SystemZ/
Dvec-combine-02.ll173 %byte0 = extractelement <16 x i8> %vec, i32 2
178 store i8 %byte0, i8 *%ptr0
/external/swiftshader/third_party/subzero/src/DartARM32/
Dassembler_arm.cc2805 const uint32_t byte0 = (value & 0x000000ff); in LoadPatchableImmediate() local
2812 orr(rd, rd, Operand(byte0), cond); in LoadPatchableImmediate()