Home
last modified time | relevance | path

Searched refs:MSB (Results 1 – 25 of 92) sorted by relevance

1234

/third_party/gstreamer/gstplugins_bad/sys/va/
Dgstvavideoformat.c128 A (('A', 'R', 'G', 'B'), MSB, 0x00ff0000, 0x0000ff00, 0x000000ff, 0xff000000),
132 A (('R', 'G', 'B', 'A'), MSB, 0xff000000, 0x00ff0000, 0x0000ff00, 0x000000ff),
136 A (('A', 'B', 'G', 'R'), MSB, 0x000000ff, 0x0000ff00, 0x00ff0000, 0xff000000),
140 A (('B', 'G', 'R', 'A'), MSB, 0x0000ff00, 0x00ff0000, 0xff000000, 0x000000ff),
144 X (('X', 'R', 'G', 'B'), MSB, 0x00ff0000, 0x0000ff00, 0x000000ff),
148 X (('R', 'G', 'B', 'X'), MSB, 0xff000000, 0x00ff0000, 0x0000ff00),
152 X (('X', 'B', 'G', 'R'), MSB, 0x000000ff, 0x0000ff00, 0x00ff0000),
156 X (('B', 'G', 'R', 'X'), MSB, 0x0000ff00, 0x00ff0000, 0xff000000),
/third_party/pulseaudio/src/pulsecore/
Daupdate.c32 #define MSB (1U << (sizeof(unsigned)*8U-1)) macro
33 #define WHICH(n) (!!((n) & MSB))
34 #define COUNTER(n) ((n) & ~MSB)
119 else if (pa_atomic_cmpxchg(&a->read_lock, (int) n, (int) (n ^ MSB))) in pa_aupdate_write_swap()
/third_party/openssl/crypto/aes/asm/
Daes-mips.pl105 my ($MSB,$LSB)=(0,3); # automatically converted to little-endian
681 lwl $s0,0+$MSB($inp)
682 lwl $s1,4+$MSB($inp)
683 lwl $s2,8+$MSB($inp)
684 lwl $s3,12+$MSB($inp)
703 swl $s0,0+$MSB($out)
704 swl $s1,4+$MSB($out)
705 swl $s2,8+$MSB($out)
706 swl $s3,12+$MSB($out)
1281 lwl $s0,0+$MSB($inp)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DIntegerDivision.cpp163 ConstantInt *MSB; in generateUnsignedDivisionCode() local
169 MSB = Builder.getInt64(63); in generateUnsignedDivisionCode()
175 MSB = Builder.getInt32(31); in generateUnsignedDivisionCode()
257 Value *Ret0_4 = Builder.CreateICmpUGT(SR, MSB); in generateUnsignedDivisionCode()
259 Value *RetDividend = Builder.CreateICmpEQ(SR, MSB); in generateUnsignedDivisionCode()
272 Value *Tmp2 = Builder.CreateSub(MSB, SR); in generateUnsignedDivisionCode()
310 Value *Tmp6 = Builder.CreateLShr(Q_2, MSB); in generateUnsignedDivisionCode()
315 Value *Tmp10 = Builder.CreateAShr(Tmp9, MSB); in generateUnsignedDivisionCode()
/third_party/skia/third_party/externals/swiftshader/src/Device/
DBC_Decoder.cpp535 uint32_t consumeBits(uint32_t MSB, uint32_t LSB) in consumeBits()
537 bool reversed = MSB < LSB; in consumeBits()
540 std::swap(MSB, LSB); in consumeBits()
542 ASSERT(MSB - LSB + 1 < sizeof(uint32_t) * 8); in consumeBits()
544 uint32_t numBits = MSB - LSB + 1; in consumeBits()
694 int MSB; member
701 , MSB(0) in BlockDesc()
707 constexpr BlockDesc(const DataType type, Channel channel, int MSB, int LSB, ModeDesc modeDesc) in BlockDesc()
710 , MSB(MSB) in BlockDesc()
716 constexpr BlockDesc(DataType type, Channel channel, int MSB, int LSB) in BlockDesc()
[all …]
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/texture/multisample/atomic/
Dstorage_image_r32ui.amber47 // Set MSB for location and the second MSB for partner.
Dstorage_image_r32i.amber47 // Set MSB for location and the second MSB for partner.
/third_party/openssl/crypto/sha/asm/
Dsha1-mips.pl90 $MSB=$big_endian?0:3;
91 $LSB=3&~$MSB;
137 lwl @X[$j],$j*4+$MSB($inp)
145 lwl @X[$j],$j*4+$MSB($inp)
396 lwl @X[0],$MSB($inp)
Dsha512-mips.pl129 $MSB = $big_endian ? 0 : ($SZ-1);
130 $LSB = ($SZ-1)&~$MSB;
147 ${LD}l @X[1],`($i+1)*$SZ+$MSB`($inp)
379 ${LD}l @X[0],$MSB($inp)
/third_party/optimized-routines/string/arm/
Dstrcmp.S37 #define MSB 0x000000ff macro
51 #define MSB 0xff000000 macro
341 bic tmp1, data1, #MSB
358 bics syndrome, syndrome, #MSB
436 bic data2, data2, #MSB
/third_party/mesa3d/docs/isl/
Dformats.rst69 specifications choose to use a MSB to LSB ordering and others LSB to MSB. One
88 GL MSB → LSB
89 Vulkan MSB → LSB
90 mesa_format LSB → MSB
91 Intel surface format LSB → MSB
/third_party/libwebsockets/READMEs/
DREADME.jit-trust.md128 04: 00 01 MSB-first trust blob layout version
129 06: XX XX MSB-first count of certificates
130 08: XX XX XX XX MSB-first trust blob generation unix time
131 0c: XX XX XX XX MSB-first offset from blob start of cert length table
132 10: XX XX XX XX MSB-first offset from blob start of SKID length table
133 14: XX XX XX XX MSB-first offset from blob start of SKID table
134 18: XX XX XX XX MSB-first total blob length
137 : XX .. XX DER cert length table (MSB-first 16-bit per cert)
/third_party/flutter/skia/third_party/externals/wuffs/std/deflate/
DREADME.md110 - BTYPE is the next two bits in natural (MSB to LSB) order, 0b10, which means
131 variables (5, 5 and 4 bits) are read in the same natural (MSB to LSB) order:
239 When decoding via a Huffman table, bits are read in LSB to MSB order,
241 the other, natural order (MSB to LSB). Decoding via `H-CL` gives:
532 0b1101 15 (distance=193 + 6_extra_bits, 0b000010 in MSB to LSB order;
/third_party/ltp/testcases/commands/file/
Dfile01.sh21 *Data:*"big endian"*) TEST_ARCH=MSB;;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringExtras.h160 inline uint8_t hexFromNibbles(char MSB, char LSB) { in hexFromNibbles() argument
161 unsigned U1 = hexDigitValue(MSB); in hexFromNibbles()
/third_party/flutter/skia/third_party/externals/wuffs/std/lzw/
DREADME.md5 LSB (Least Significant Bits) and MSB (Most Significant Bits) first.
10 The PDF and TIFF formats use MSB first. The literal width is fixed at 8 bits.
230 ## LSB and MSB
254 In MSB first, it would again be four bytes, 0x2A 0x13 0xE0 0x20:
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64ISelDAGToDAG.cpp1572 unsigned &LSB, unsigned &MSB, in isBitfieldExtractOpFromAnd() argument
1648 MSB = SrlImm + (VT == MVT::i32 ? countTrailingOnes<uint32_t>(AndImm) in isBitfieldExtractOpFromAnd()
1656 MSB = MSB > 31 ? 31 : MSB; in isBitfieldExtractOpFromAnd()
1697 unsigned &MSB) { in isSeveralBitsExtractOpFromShr() argument
1734 MSB = BitWide + SrlImm - 1; in isSeveralBitsExtractOpFromShr()
1974 uint64_t Imm, uint64_t MSB, in getUsefulBitsFromBitfieldMoveOpd() argument
1980 if (MSB >= Imm) { in getUsefulBitsFromBitfieldMoveOpd()
1981 OpUsefulBits <<= MSB - Imm + 1; in getUsefulBitsFromBitfieldMoveOpd()
1988 OpUsefulBits <<= MSB + 1; in getUsefulBitsFromBitfieldMoveOpd()
2004 uint64_t MSB = in getUsefulBitsFromUBFM() local
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/std/crc32/
DREADME.md68 ## Normal (MSB) and Reversed (LSB) Representation
72 representation of that polynomial is `N=4, MSB, BITS=0b0011`. This is the
/third_party/mesa3d/docs/relnotes/
D18.1.9.rst61 - radv: Set the user SGPR MSB for Vega.
D18.2.1.rst74 - radv: Set the user SGPR MSB for Vega.
/third_party/openssl/doc/man3/
DASN1_STRING_print_ex.pod46 MSB set are escaped: this option should B<not> be used if the terminal correctly
DBN_bn2bin.pod79 of numbers with the MSB set is prefixed with null byte).
/third_party/libwebsockets/lib/system/smd/
DREADME.md128 - MSB-first 64-bit class bitfield (currently only 32 least-sig in use)
129 - MSB-First Order 64-bit us-resolution timestamp
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/mme/
Dcom9097.mme506 * parm[1] = MSB of end value
508 * parm[3] = MSB of start value
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVInstrFormats.td14 // MSB (31st bit) on the left and the LSB (0th bit) on the right. This is

1234