/external/openssl/crypto/aes/asm/ |
D | aes-mips.pl | 84 my ($MSB,$LSB)=(0,3); # automatically converted to little-endian 394 lwl $s0,0+$MSB($inp) 395 lwl $s1,4+$MSB($inp) 396 lwl $s2,8+$MSB($inp) 397 lwl $s3,12+$MSB($inp) 409 swl $s0,0+$MSB($out) 410 swl $s1,4+$MSB($out) 411 swl $s2,8+$MSB($out) 412 swl $s3,12+$MSB($out) 730 lwl $s0,0+$MSB($inp) [all …]
|
/external/llvm/lib/Transforms/Utils/ |
D | IntegerDivision.cpp | 164 ConstantInt *MSB; in generateUnsignedDivisionCode() local 170 MSB = Builder.getInt64(63); in generateUnsignedDivisionCode() 176 MSB = Builder.getInt32(31); in generateUnsignedDivisionCode() 258 Value *Ret0_4 = Builder.CreateICmpUGT(SR, MSB); in generateUnsignedDivisionCode() 260 Value *RetDividend = Builder.CreateICmpEQ(SR, MSB); in generateUnsignedDivisionCode() 273 Value *Tmp2 = Builder.CreateSub(MSB, SR); in generateUnsignedDivisionCode() 311 Value *Tmp6 = Builder.CreateLShr(Q_2, MSB); in generateUnsignedDivisionCode() 316 Value *Tmp10 = Builder.CreateAShr(Tmp9, MSB); in generateUnsignedDivisionCode()
|
/external/openssl/crypto/sha/asm/ |
D | sha1-mips.pl | 76 $MSB=$big_endian?0:3; 77 $LSB=3&~$MSB; 109 lwl @X[$j],$j*4+$MSB($inp) 287 lwl @X[0],$MSB($inp)
|
D | sha512-mips.pl | 108 $MSB = $big_endian ? 0 : ($SZ-1); 109 $LSB = ($SZ-1)&~$MSB; 123 ${LD}l @X[1],`($i+1)*$SZ+$MSB`($inp) 308 ${LD}l @X[0],$MSB($inp)
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelDAGToDAG.cpp | 1300 unsigned &LSB, unsigned &MSB, in isBitfieldExtractOpFromAnd() argument 1370 MSB = Srl_imm + (VT == MVT::i32 ? CountTrailingOnes_32(And_imm) in isBitfieldExtractOpFromAnd() 1378 MSB = MSB > 31 ? 31 : MSB; in isBitfieldExtractOpFromAnd() 1385 unsigned &LSB, unsigned &MSB) { in isOneBitExtractOpFromShr() argument 1420 LSB = MSB = Srl_imm; in isOneBitExtractOpFromShr() 1429 unsigned &LSB, unsigned &MSB, in isBitfieldExtractOpFromShr() argument 1443 if (isOneBitExtractOpFromShr(N, Opc, Opd0, LSB, MSB)) in isBitfieldExtractOpFromShr() 1482 MSB = LSB + Width; in isBitfieldExtractOpFromShr() 1492 SDValue &Opd0, unsigned &LSB, unsigned &MSB, in isBitfieldExtractOp() argument 1504 return isBitfieldExtractOpFromAnd(CurDAG, N, Opc, Opd0, LSB, MSB, in isBitfieldExtractOp() [all …]
|
/external/chromium_org/net/third_party/nss/ssl/ |
D | sslcon.c | 501 msg[1] = MSB(error); in ssl2_SendErrorMessage() 674 msg[2] = MSB(keySize); in ssl2_SendSessionKeyMessage() 676 msg[4] = MSB(ckLen); in ssl2_SendSessionKeyMessage() 678 msg[6] = MSB(ekLen); in ssl2_SendSessionKeyMessage() 680 msg[8] = MSB(caLen); in ssl2_SendSessionKeyMessage() 759 msg[2] = MSB(cert->len); in ssl2_SendCertificateResponseMessage() 761 msg[4] = MSB(encCode->len); in ssl2_SendCertificateResponseMessage() 876 out[0] = 0x80 | MSB(amount); in ssl2_SendClear() 951 out[0] = 0x80 | MSB(nout); in ssl2_SendStream() 1068 *op++ = MSB(nout); in ssl2_SendBlock() [all …]
|
D | ssl3con.c | 1850 out[9] = MSB(length); in ssl3_BuildRecordPseudoHeader() 1860 out[9] = MSB(dtls_version); in ssl3_BuildRecordPseudoHeader() 1863 out[9] = MSB(version); in ssl3_BuildRecordPseudoHeader() 1866 out[11] = MSB(length); in ssl3_BuildRecordPseudoHeader() 2826 wrBuf->buf[1] = MSB(version); in ssl3_CompressMACEncryptRecord() 2836 wrBuf->buf[11] = MSB(cipherBytes); in ssl3_CompressMACEncryptRecord() 2844 wrBuf->buf[1] = MSB(version); in ssl3_CompressMACEncryptRecord() 2846 wrBuf->buf[3] = MSB(cipherBytes); in ssl3_CompressMACEncryptRecord() 9016 PORT_Assert(MSB(ss->version) == MSB(SSL_LIBRARY_VERSION_3_0)); in ssl3_SendServerHello() 9018 if (MSB(ss->version) != MSB(SSL_LIBRARY_VERSION_3_0)) { in ssl3_SendServerHello() [all …]
|
D | dtlscon.c | 73 if (MSB(dtlsv) == 0xff) { in dtls_DTLSVersionToTLSVersion()
|
D | sslimpl.h | 117 #define MSB(x) ((unsigned char) (((unsigned)(x)) >> 8)) macro
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
D | bitvect.c | 118 static N_word MSB; /* = mask for most significant bit */ variable 368 MSB = (LSB << MODMASK); in BitVector_Boot() 725 mask = MSB; in BitVector_Reverse() 888 himask = MSB; in BitVector_Interval_Reverse() 1011 bitmask = MSB; in BitVector_interval_scan_dec() 1013 while (not (mask AND MSB)) in BitVector_interval_scan_dec() 1033 if (empty) value = MSB; in BitVector_interval_scan_dec() 1036 while (not (value AND MSB)) in BitVector_interval_scan_dec() 2322 carry_out = ((*addr AND MSB) != 0); in BitVector_rotate_left() 2360 if (carry_in) *addr |= MSB; in BitVector_rotate_right() [all …]
|
/external/llvm/test/ExecutionEngine/MCJIT/ |
D | 2008-06-05-APInt-OverAShr.ll | 6 @.str = internal constant [10 x i8] c"MSB = %d\0A\00" ; <[10 x i8]*> [#uses=1]
|
/external/llvm/test/ExecutionEngine/ |
D | 2008-06-05-APInt-OverAShr.ll | 6 @.str = internal constant [10 x i8] c"MSB = %d\0A\00" ; <[10 x i8]*> [#uses=1]
|
/external/llvm/test/CodeGen/X86/ |
D | load-slice.ll | 13 ; LSB 0 1 2 3 | 4 5 6 7 MSB 87 ; LSB 0 1 2 3 | 4 5 | 6 7 MSB
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/ |
D | lc3bid.re | 35 * parameters are read from the arch-specific data in LSB->MSB order. 43 * Bit Breakdown (from LSB to MSB): 92 * its parameter in LSB->MSB order from the arch-specific data[1] from the
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
D | util.h | 34 #define MSB(x, bits) ((x) & TYPEOF(x)(~0ULL << (sizeof(x) * 8 - (bits)))) macro
|
/external/chromium_org/net/third_party/nss/patches/ |
D | chacha20poly1305.patch | 180 * suites, with the MSB zeroed, look like:
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/ |
D | design.txt | 39 * The MSB of the config word signifies if the rest contains cpu
|
/external/zlib/src/doc/ |
D | rfc1950.txt | 276 a 16-bit unsigned integer stored in MSB order (CMF*256 + FLG),
|
D | rfc1951.txt | 307 elements in the correct MSB-to-LSB order and Huffman codes in
|
/external/libpcap/doc/ |
D | pcap.txt | 198 Values whose Most Significant Bit (MSB) is equal to 1 are reserved 1146 vendors must request an Option Code whose MSB is equal to zero.
|
/external/chromium_org/third_party/icu/patches/ |
D | converters.patch | 435 -# on either GL (with MSB reset) or GR (with MSB set).
|
/external/icu/icu4c/source/data/mappings/ |
D | convrtrs.txt | 781 # on either GL (with MSB reset) or GR (with MSB set).
|
/external/nanopb-c/docs/ |
D | reference.rst | 641 :stream: Input stream to read from. Will read 1 byte at a time until the MSB is clear.
|
/external/chromium_org/third_party/libjpeg_turbo/ |
D | google.patch | 3405 + /* vswp v14.4h, v10-MSB.4h */ 3421 + /* vswp v12.4h, v8-MSB.4h */
|
/external/chromium_org/third_party/brotli/src/brotli/ |
D | brotlispec.txt | 156 elements in the correct MSB-to-LSB order and Huffman codes in
|