/aosp_15_r20/external/flac/src/libFLAC/ |
H A D | bitreader.c | 807 FLAC__uint32 lsbs = 0, msbs = 0; 819 if(!FLAC__bitreader_read_raw_uint32(br, &lsbs, parameter)) 823 uval = (msbs << parameter) | lsbs; 846 FLAC__uint32 lsbs = 0, msbs = 0; in FLAC__bitreader_read_rice_signed_block() 859 if(!FLAC__bitreader_read_raw_uint32(br, &lsbs, k)) in FLAC__bitreader_read_rice_signed_block() 864 uval = (msbs << k) | lsbs; in FLAC__bitreader_read_rice_signed_block() 868 if(lsbs >= d) { in FLAC__bitreader_read_rice_signed_block() 871 lsbs <<= 1; in FLAC__bitreader_read_rice_signed_block() 872 lsbs |= bit; in FLAC__bitreader_read_rice_signed_block() 873 lsbs -= d; in FLAC__bitreader_read_rice_signed_block() [all …]
|
/aosp_15_r20/external/flac/src/libFLAC/deduplication/ |
H A D | bitreader_read_rice_signed_block.c | 5 uint32_t cwords, words, lsbs, msbs, x, y, limit; variable 87 lsbs = x; 90 x = (msbs << parameter) | lsbs; 117 if(!FLAC__bitreader_read_raw_uint32(br, &lsbs, parameter - ucbits)) 119 lsbs = x | lsbs; 122 x = (msbs << parameter) | lsbs;
|
/aosp_15_r20/cts/apps/CameraITS/utils/ |
H A D | image_processing_utils.py | 380 lsbs = img[::, 4::5].reshape(h, w // 4) 381 lsbs = numpy.right_shift( 382 numpy.packbits(numpy.unpackbits(lsbs).reshape((h, w // 4, 4, 2)), 3), 6) 384 lsbs = lsbs.reshape(h, w // 4, 4)[:, :, ::-1] 385 lsbs = lsbs.reshape(h, w) 387 img16 = numpy.bitwise_or(msbs, lsbs).reshape(h, w) 433 lsbs = img[::, 2::3].reshape(h, w // 2) 434 lsbs = numpy.right_shift( 435 numpy.packbits(numpy.unpackbits(lsbs).reshape((h, w // 2, 2, 4)), 3), 4) 437 lsbs = lsbs.reshape(h, w // 2, 2)[:, :, ::-1] [all …]
|
H A D | image_processing_utils_tests.py | 55 lsbs = '' 59 lsbs = val[8:] + lsbs 61 packed.append(int(lsbs, base=2))
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/skrifa-0.15.5/src/ |
H A D | metrics.rs | 229 lsbs: &'a [BigEndian<i16>], field 254 let (h_metrics, default_advance_width, lsbs) = font in new() 259 let lsbs = hmtx.left_side_bearings(); in new() localVariable 260 (h_metrics, default_advance_width, lsbs) in new() 275 lsbs, in new() 328 self.lsbs in left_side_bearing()
|
/aosp_15_r20/external/liblc3/test/ |
H A D | spec.py | 367 lsbs = [] 407 lsbs.append(lsb_0) 409 lsbs.append(int(x[n+0] < 0)) 411 lsbs.append(lsb_1) 413 lsbs.append(int(x[n+1] < 0)) 440 nbits_residual = min(bits.get_bits_left(), len(lsbs)) 441 for lsb in lsbs[:nbits_residual]:
|
/aosp_15_r20/external/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | r300_fragprog_emit.c | 53 static unsigned int get_msbs_tex(unsigned int bits, unsigned int lsbs) in get_msbs_tex() argument 55 return (bits >> lsbs) & 0x15; in get_msbs_tex() 58 #define R400_EXT_GET_MSBS(x, lsbs, mask) (((x) >> lsbs) & mask) argument
|
/aosp_15_r20/external/freetype/src/sfnt/ |
H A D | sfwoff2.c | 1408 FT_Short* lsbs = NULL; in reconstruct_hmtx() local 1437 FT_QNEW_ARRAY( lsbs, num_glyphs ) ) in reconstruct_hmtx() 1466 lsbs[i] = lsb; in reconstruct_hmtx() 1483 lsbs[i] = lsb; in reconstruct_hmtx() 1501 WRITE_SHORT( dst, lsbs[i] ); in reconstruct_hmtx() 1502 FT_TRACE6(( "%d ", lsbs[i] )); in reconstruct_hmtx() 1516 FT_FREE( lsbs ); in reconstruct_hmtx() 1523 FT_FREE( lsbs ); in reconstruct_hmtx()
|
/aosp_15_r20/external/boringssl/src/third_party/wycheproof_testvectors/ |
H A D | aes_cmac_test.txt | 693 # lsbs changed in tag 700 # lsbs changed in tag 707 # lsbs changed in tag 1399 # lsbs changed in tag 1406 # lsbs changed in tag 1413 # lsbs changed in tag 2105 # lsbs changed in tag 2112 # lsbs changed in tag 2119 # lsbs changed in tag
|
H A D | hmac_sha1_test.txt | 560 # lsbs changed in tag 567 # lsbs changed in tag 1098 # lsbs changed in tag 1105 # lsbs changed in tag
|
H A D | hmac_sha256_test.txt | 560 # lsbs changed in tag 567 # lsbs changed in tag 1126 # lsbs changed in tag 1133 # lsbs changed in tag
|
H A D | hmac_sha512_test.txt | 560 # lsbs changed in tag 567 # lsbs changed in tag 1126 # lsbs changed in tag 1133 # lsbs changed in tag
|
H A D | hmac_sha224_test.txt | 560 # lsbs changed in tag 567 # lsbs changed in tag 1112 # lsbs changed in tag 1119 # lsbs changed in tag
|
H A D | hmac_sha384_test.txt | 560 # lsbs changed in tag 567 # lsbs changed in tag 1126 # lsbs changed in tag 1133 # lsbs changed in tag
|
/aosp_15_r20/external/cronet/third_party/boringssl/src/third_party/wycheproof_testvectors/ |
H A D | aes_cmac_test.txt | 693 # lsbs changed in tag 700 # lsbs changed in tag 707 # lsbs changed in tag 1399 # lsbs changed in tag 1406 # lsbs changed in tag 1413 # lsbs changed in tag 2105 # lsbs changed in tag 2112 # lsbs changed in tag 2119 # lsbs changed in tag
|
H A D | hmac_sha1_test.txt | 560 # lsbs changed in tag 567 # lsbs changed in tag 1098 # lsbs changed in tag 1105 # lsbs changed in tag
|
H A D | hmac_sha224_test.txt | 560 # lsbs changed in tag 567 # lsbs changed in tag 1112 # lsbs changed in tag 1119 # lsbs changed in tag
|
H A D | hmac_sha384_test.txt | 560 # lsbs changed in tag 567 # lsbs changed in tag 1126 # lsbs changed in tag 1133 # lsbs changed in tag
|
H A D | hmac_sha256_test.txt | 560 # lsbs changed in tag 567 # lsbs changed in tag 1126 # lsbs changed in tag 1133 # lsbs changed in tag
|
H A D | hmac_sha512_test.txt | 560 # lsbs changed in tag 567 # lsbs changed in tag 1126 # lsbs changed in tag 1133 # lsbs changed in tag
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/ |
D | raw_hash_set.h | 677 constexpr uint64_t lsbs = 0x0101010101010101ULL; 679 auto res = (~x + (x >> 7)) & ~lsbs; 708 constexpr uint64_t lsbs = 0x0101010101010101ULL; 709 auto x = ctrl ^ (lsbs * hash); 710 return BitMask<uint64_t, kWidth, 3>((x - lsbs) & ~x & msbs); 735 constexpr uint64_t lsbs = 0x0101010101010101ULL; 737 auto res = (~x + (x >> 7)) & ~lsbs;
|
/aosp_15_r20/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/container/internal/ |
H A D | raw_hash_set.h | 677 constexpr uint64_t lsbs = 0x0101010101010101ULL; 679 auto res = (~x + (x >> 7)) & ~lsbs; 708 constexpr uint64_t lsbs = 0x0101010101010101ULL; 709 auto x = ctrl ^ (lsbs * hash); 710 return BitMask<uint64_t, kWidth, 3>((x - lsbs) & ~x & msbs); 735 constexpr uint64_t lsbs = 0x0101010101010101ULL; 737 auto res = (~x + (x >> 7)) & ~lsbs;
|
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/absl/container/internal/ |
H A D | raw_hash_set.h | 645 constexpr uint64_t lsbs = 0x0101010101010101ULL; 647 auto res = (~x + (x >> 7)) & ~lsbs; 676 constexpr uint64_t lsbs = 0x0101010101010101ULL; 677 auto x = ctrl ^ (lsbs * hash); 678 return BitMask<uint64_t, kWidth, 3>((x - lsbs) & ~x & msbs); 703 constexpr uint64_t lsbs = 0x0101010101010101ULL; 705 auto res = (~x + (x >> 7)) & ~lsbs;
|
/aosp_15_r20/external/openscreen/third_party/abseil/src/absl/container/internal/ |
H A D | raw_hash_set.h | 425 constexpr uint64_t lsbs = 0x0101010101010101ULL; 426 auto x = ctrl ^ (lsbs * hash); 427 return BitMask<uint64_t, kWidth, 3>((x - lsbs) & ~x & msbs); 447 constexpr uint64_t lsbs = 0x0101010101010101ULL; 449 auto res = (~x + (x >> 7)) & ~lsbs;
|
/aosp_15_r20/external/cronet/third_party/abseil-cpp/absl/container/internal/ |
H A D | raw_hash_set.h | 855 constexpr uint64_t lsbs = 0x0101010101010101ULL; 856 auto x = ctrl ^ (lsbs * hash); 857 return BitMask<uint64_t, kWidth, 3>((x - lsbs) & ~x & kMsbs8Bytes); 893 constexpr uint64_t lsbs = 0x0101010101010101ULL; 895 auto res = (~x + (x >> 7)) & ~lsbs;
|