HomeSort by relevance Sort by last modified time
    Searched refs:msb (Results 1 - 25 of 152) sorted by null

1 2 3 4 5 6 7

  /external/python/cpython2/Lib/idlelib/
MultiStatusBar.py 30 msb = MultiStatusBar(frame)
31 msb.set_label("one", "hello")
32 msb.set_label("two", "world")
33 msb.pack(side=BOTTOM, fill=X)
36 msb.set_label("one", "foo")
37 msb.set_label("two", "bar")
  /external/python/cpython3/Lib/idlelib/
statusbar.py 31 msb = MultiStatusBar(frame)
32 msb.set_label("one", "hello")
33 msb.set_label("two", "world")
34 msb.pack(side='bottom', fill='x')
37 msb.set_label("one", "foo")
38 msb.set_label("two", "bar")
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
UUIDConverter.java 28 long msb = uuid.getMostSignificantBits(); local
33 buffer[i] = (byte) (msb >>> 8 * (7 - i));
  /system/bt/binder/android/os/
parcel_uuid.cc 41 uint64_t msb = 0; local
45 msb <<= 8;
46 msb |= uu[i];
49 return msb;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/
order.s 3 .msb
26 .msb
  /frameworks/base/media/java/android/media/
MediaCrypto.java 44 long msb = uuid.getMostSignificantBits(); local
49 uuidBytes[i] = (byte)(msb >>> (8 * (7 - i)));
  /packages/apps/Bluetooth/src/com/android/bluetooth/
SignedLongLong.java 27 * is used, the MSB/LSB long values can be negative.
47 long lsb = 0, msb = 0; local
63 msb = BluetoothMapUtils.getLongFromString(msbStr);
66 return new SignedLongLong(lsb, msb);
Utils.java 123 long msb, lsb; local
125 msb = uuid.getMostSignificantBits();
127 converter.putLong(msb);
137 long msb, lsb; local
140 msb = uuid.getMostSignificantBits();
142 converter.putLong(i * BD_UUID_LEN, msb);
  /external/libvpx/libvpx/test/
vp9_block_error_test.cc 81 const int msb = bit_depth_ + 8 - 1; local
90 coeff[j] = rnd(1 << msb);
91 dqcoeff[j] = rnd(1 << msb);
94 coeff[j] = -rnd(1 << msb);
95 dqcoeff[j] = -rnd(1 << msb);
124 const int msb = bit_depth_ + 8 - 1; local
125 int max_val = ((1 << msb) - 1);
sum_squares_test.cc 51 const int msb = 11; // Up to 12 bit input local
52 const int limit = 1 << (msb + 1);
79 const int msb = 11; // Up to 12 bit input local
80 const int limit = 1 << (msb + 1);
  /external/libmpeg2/common/
impeg2_macros.h 35 #define BITS(val,msb,lsb) (UWORD16)((((val) >> (lsb)) & ((1 << ((msb) - (lsb) + 1)) - 1)))
  /external/vulkan-validation-layers/libs/glm/detail/
func_integer.hpp 78 /// The 32 most-significant bits are returned in msb.
88 genUType & msb,
93 /// The 32 most-significant bits are returned in msb.
103 genIType & msb,
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/detail/
func_integer.hpp 78 /// The 32 most-significant bits are returned in msb.
88 genUType & msb,
93 /// The 32 most-significant bits are returned in msb.
103 genIType & msb,
  /external/tcpdump/
parsenfsfh.c 86 #define make_uint32(msb,b,c,lsb)\
87 (XFF(lsb) + (XFF(c)<<8) + (XFF(b)<<16) + (XFF(msb)<<24))
89 #define make_uint24(msb,b, lsb)\
90 (XFF(lsb) + (XFF(b)<<8) + (XFF(msb)<<16))
92 #define make_uint16(msb,lsb)\
93 (XFF(lsb) + (XFF(msb)<<8))
97 #define make_uint48(msb,b,c,d,e,lsb)\
98 ((lsb) + ((e)<<8) + ((d)<<16) + ((c)<<24) + ((b)<<32) + ((msb)<<40))
101 #define make_uint48(msb,b,c,d,e,lsb)\
  /libcore/ojluni/src/main/java/java/util/
UUID.java 105 long msb = 0; local
109 msb = (msb << 8) | (data[i] & 0xff);
112 this.mostSigBits = msb;
  /external/perfetto/include/perfetto/protozero/
proto_utils.h 95 const uint8_t msb = (i < kMessageLengthFieldSize - 1) ? 0x80 : 0; local
96 buf[i] = static_cast<uint8_t>(value) | msb;
  /external/syslinux/gpxe/src/drivers/infiniband/
qib_genbits.pl 37 $structures->{$structure}->{$1}->{MSB} = $2;
56 msb => $structure->{$_}->{MSB},
95 if ( defined $field->{msb} ) {
96 my $msb_width = ( hex ( $field->{msb} ) - $lsb + 1 );
98 die "Inconsistent LSB/MSB/RMASK in $datum->{name}.$field->{name}\n"
  /frameworks/base/core/java/android/bluetooth/
BluetoothUuid.java 263 long msb = buf.getLong(8); local
265 return new ParcelUuid(new UUID(msb, lsb));
280 long msb = BASE_UUID.getUuid().getMostSignificantBits() + (shortUuid << 32); local
282 return new ParcelUuid(new UUID(msb, lsb));
317 long msb = uuid.getUuid().getMostSignificantBits(); local
322 buf.putLong(8, msb);
  /external/mesa3d/src/amd/addrlib/r800/
ciaddrlib.cpp 82 * Gets bits within a range of [msb, lsb]
89 UINT_32 msb, ///< Most signicant bit
94 if (msb >= lsb)
96 ret = (bits >> lsb) & (AddrMask(1 + msb - lsb));
106 * Removes bits within the range of [msb, lsb]
113 UINT_32 msb, ///< Most signicant bit
118 if (msb >= lsb)
121 | (AddrGetBits(bits, 8 * sizeof(bits) - 1, msb + 1) << lsb); //high bits
131 * Inserts new bits into the range of [msb, lsb]
139 UINT_32 msb, ///< Most signicant bi
1695 UINT_32 msb = bankBits - 1 + lsb; local
    [all...]
  /system/core/libpixelflinger/codeflinger/
Arm64Disassembler.cpp 80 static int32_t bits_signed(uint32_t instr, uint32_t msb, uint32_t lsb)
83 value = ((int32_t)instr) << (31 - msb);
84 value >>= (31 - msb);
88 static uint32_t bits_unsigned(uint32_t instr, uint32_t msb, uint32_t lsb)
90 uint32_t width = msb - lsb + 1;
  /external/vixl/src/
utils-vixl.h 172 inline uint64_t ExtractUnsignedBitfield64(int msb, int lsb, uint64_t x) {
173 VIXL_ASSERT((static_cast<size_t>(msb) < sizeof(x) * 8) && (lsb >= 0) &&
174 (msb >= lsb));
175 if ((msb == 63) && (lsb == 0)) return x;
176 return (x >> lsb) & ((static_cast<uint64_t>(1) << (1 + msb - lsb)) - 1);
180 inline uint32_t ExtractUnsignedBitfield32(int msb, int lsb, uint32_t x) {
181 VIXL_ASSERT((static_cast<size_t>(msb) < sizeof(x) * 8) && (lsb >= 0) &&
182 (msb >= lsb));
183 return TruncateToUint32(ExtractUnsignedBitfield64(msb, lsb, x));
187 inline int64_t ExtractSignedBitfield64(int msb, int lsb, int64_t x)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_pack.c 379 LLVMValueRef msb; local
389 msb = LLVMBuildAShr(builder, src, lp_build_const_int_vec(gallivm, src_type, src_type.width - 1), "");
393 msb = lp_build_zero(gallivm, src_type);
397 *dst_lo = lp_build_interleave2(gallivm, src_type, src, msb, 0);
398 *dst_hi = lp_build_interleave2(gallivm, src_type, src, msb, 1);
401 *dst_lo = lp_build_interleave2(gallivm, src_type, msb, src, 0);
402 *dst_hi = lp_build_interleave2(gallivm, src_type, msb, src, 1);
432 LLVMValueRef msb; local
442 msb = LLVMBuildAShr(builder, src,
447 msb = lp_build_zero(gallivm, src_type)
    [all...]
  /external/vixl/src/aarch64/
instructions-aarch64.h 178 uint32_t ExtractBits(int msb, int lsb) const {
179 return ExtractUnsignedBitfield32(msb, lsb, GetInstructionBits());
181 VIXL_DEPRECATED("ExtractBits", uint32_t Bits(int msb, int lsb) const) {
182 return ExtractBits(msb, lsb);
185 int32_t ExtractSignedBits(int msb, int lsb) const {
187 return ExtractSignedBitfield32(msb, lsb, bits);
190 int32_t SignedBits(int msb, int lsb) const) {
191 return ExtractSignedBits(msb, lsb);
  /prebuilts/go/darwin-x86/src/encoding/binary/
varint.go 11 // - the most significant bit (msb) in each output byte indicates if there
12 // is a continuation byte (msb = 1)
21 // Instead, the msb of the previous byte could be used to hold bit 63 since we
24 // invariant that the msb is always the "continuation bit" and thus makes the
  /prebuilts/go/linux-x86/src/encoding/binary/
varint.go 11 // - the most significant bit (msb) in each output byte indicates if there
12 // is a continuation byte (msb = 1)
21 // Instead, the msb of the previous byte could be used to hold bit 63 since we
24 // invariant that the msb is always the "continuation bit" and thus makes the

Completed in 958 milliseconds

1 2 3 4 5 6 7