Home
last modified time | relevance | path

Searched refs:low_bit (Results 1 – 25 of 154) sorted by relevance

1234567

/dports/multimedia/libv4l/linux-5.13-rc2/drivers/gpu/drm/exynos/
H A Dregs-vp.h52 #define VP_MASK(high_bit, low_bit) \ argument
53 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
55 #define VP_MASK_VAL(val, high_bit, low_bit) \ argument
56 (((val) << (low_bit)) & VP_MASK(high_bit, low_bit))
H A Dregs-mixer.h66 #define MXR_MASK(high_bit, low_bit) \ argument
67 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
69 #define MXR_MASK_VAL(val, high_bit, low_bit) \ argument
70 (((val) << (low_bit)) & MXR_MASK(high_bit, low_bit))
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/gpu/drm/exynos/
H A Dregs-vp.h52 #define VP_MASK(high_bit, low_bit) \ argument
53 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
55 #define VP_MASK_VAL(val, high_bit, low_bit) \ argument
56 (((val) << (low_bit)) & VP_MASK(high_bit, low_bit))
H A Dregs-mixer.h66 #define MXR_MASK(high_bit, low_bit) \ argument
67 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
69 #define MXR_MASK_VAL(val, high_bit, low_bit) \ argument
70 (((val) << (low_bit)) & MXR_MASK(high_bit, low_bit))
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/gpu/drm/exynos/
H A Dregs-vp.h52 #define VP_MASK(high_bit, low_bit) \ argument
53 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
55 #define VP_MASK_VAL(val, high_bit, low_bit) \ argument
56 (((val) << (low_bit)) & VP_MASK(high_bit, low_bit))
H A Dregs-mixer.h66 #define MXR_MASK(high_bit, low_bit) \ argument
67 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
69 #define MXR_MASK_VAL(val, high_bit, low_bit) \ argument
70 (((val) << (low_bit)) & MXR_MASK(high_bit, low_bit))
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/cpu/arm/
H A DnativeInst_arm_64.hpp318 …assert((0 <= low_bit) && (0 < bits) && (low_bit + bits <= instruction_size_in_bits), "invalid bits… in check_bits_range()
322 void set_imm(int imm_encoding, int bits, int low_bit) { in set_imm() argument
323 int imm_mask = right_n_bits(bits) << low_bit; in set_imm()
332 check_bits_range(bits, scale, low_bit); in get_signed_imm()
339 set_imm(Assembler::encode_imm(value, bits, scale, low_bit), bits, low_bit); in set_signed_imm()
344 check_bits_range(bits, scale, low_bit); in get_unsigned_imm()
350 set_imm(Assembler::encode_unsigned_imm(value, bits, scale, low_bit), bits, low_bit); in set_unsigned_imm()
353 int get_signed_offset(int bits, int low_bit) const { in get_signed_offset()
354 return get_signed_imm(bits, 2, low_bit); in get_signed_offset()
357 void set_signed_offset(int offset, int bits, int low_bit) { in set_signed_offset() argument
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/cpu/arm/
H A DnativeInst_arm_64.hpp318 …assert((0 <= low_bit) && (0 < bits) && (low_bit + bits <= instruction_size_in_bits), "invalid bits… in check_bits_range()
322 void set_imm(int imm_encoding, int bits, int low_bit) { in set_imm() argument
323 int imm_mask = right_n_bits(bits) << low_bit; in set_imm()
332 check_bits_range(bits, scale, low_bit); in get_signed_imm()
339 set_imm(Assembler::encode_imm(value, bits, scale, low_bit), bits, low_bit); in set_signed_imm()
344 check_bits_range(bits, scale, low_bit); in get_unsigned_imm()
350 set_imm(Assembler::encode_unsigned_imm(value, bits, scale, low_bit), bits, low_bit); in set_unsigned_imm()
353 int get_signed_offset(int bits, int low_bit) const { in get_signed_offset()
354 return get_signed_imm(bits, 2, low_bit); in get_signed_offset()
357 void set_signed_offset(int offset, int bits, int low_bit) { in set_signed_offset() argument
[all …]
/dports/comms/hackrf-devel/hackrf-ee44d2d62e2dd24648599172f90fc8fc2e3b3cc3/firmware/tools/
H A Ddump_cgu.py378 name, low_bit, count = field variable
379 field_value = (value >> low_bit) & ((1 << count) - 1)
380 field_bits = bin(field_value)[2:].zfill(count) + ' ' * low_bit
/dports/comms/hackrf/hackrf-31a37bd/firmware/tools/
H A Ddump_cgu.py378 name, low_bit, count = field variable
379 field_value = (value >> low_bit) & ((1 << count) - 1)
380 field_bits = bin(field_value)[2:].zfill(count) + ' ' * low_bit
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/installer/util/
H A Dexperiment_storage.h107 static int ReadUint64Bits(uint64_t source, int bit_length, int low_bit);
113 int low_bit,
H A Dexperiment_storage.cc272 int low_bit) { in ReadUint64Bits() argument
274 low_bit + bit_length <= static_cast<int>(sizeof(source) * 8)); in ReadUint64Bits()
276 return static_cast<int>((source >> low_bit) & bit_mask); in ReadUint64Bits()
282 int low_bit, in SetUint64Bits() argument
285 low_bit + bit_length <= static_cast<int>(sizeof(*target) * 8)); in SetUint64Bits()
287 *target |= ((static_cast<uint64_t>(value) & bit_mask) << low_bit); in SetUint64Bits()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/video_coding/utility/
H A Dvp9_uncompressed_header_parser.cc30 uint32_t low_bit; in Vp9ReadProfile() local
31 RETURN_FALSE_IF_ERROR(br->ReadBits(&low_bit, 1)); in Vp9ReadProfile()
33 *profile = (high_bit << 1) + low_bit; in Vp9ReadProfile()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/modules/video_coding/utility/
H A Dvp9_uncompressed_header_parser.cc30 uint32_t low_bit; in Vp9ReadProfile() local
31 RETURN_FALSE_IF_ERROR(br->ReadBits(&low_bit, 1)); in Vp9ReadProfile()
33 *profile = (high_bit << 1) + low_bit; in Vp9ReadProfile()
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/modules/video_coding/utility/
H A Dvp9_uncompressed_header_parser.cc30 uint32_t low_bit; in Vp9ReadProfile() local
31 RETURN_FALSE_IF_ERROR(br->ReadBits(&low_bit, 1)); in Vp9ReadProfile()
33 *profile = (high_bit << 1) + low_bit; in Vp9ReadProfile()
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/modules/video_coding/utility/
H A Dvp9_uncompressed_header_parser.cc30 uint32_t low_bit; in Vp9ReadProfile() local
31 RETURN_FALSE_IF_ERROR(br->ReadBits(&low_bit, 1)); in Vp9ReadProfile()
33 *profile = (high_bit << 1) + low_bit; in Vp9ReadProfile()
/dports/multimedia/v4l-utils/linux-5.13-rc2/arch/mips/include/asm/octeon/
H A Dcvmx.h150 uint64_t low_bit, uint64_t value) in cvmx_build_bits() argument
152 return (value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit; in cvmx_build_bits()
/dports/multimedia/v4l_compat/linux-5.13-rc2/arch/mips/include/asm/octeon/
H A Dcvmx.h150 uint64_t low_bit, uint64_t value) in cvmx_build_bits() argument
152 return (value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit; in cvmx_build_bits()
/dports/multimedia/libv4l/linux-5.13-rc2/arch/mips/include/asm/octeon/
H A Dcvmx.h150 uint64_t low_bit, uint64_t value) in cvmx_build_bits() argument
152 return (value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit; in cvmx_build_bits()
/dports/net-im/tg_owt/tg_owt-d578c76/src/modules/video_coding/utility/
H A Dvp9_uncompressed_header_parser.cc30 uint32_t low_bit; in Vp9ReadProfile() local
31 RETURN_FALSE_IF_ERROR(br->ReadBits(&low_bit, 1)); in Vp9ReadProfile()
33 *profile = (high_bit << 1) + low_bit; in Vp9ReadProfile()
/dports/sysutils/u-boot-olinuxino-lime/u-boot-2021.07/arch/mips/mach-octeon/include/mach/
H A Dcvmx-regs.h354 static inline u64 cvmx_build_bits(u64 high_bit, u64 low_bit, u64 value) in cvmx_build_bits() argument
356 return ((value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit); in cvmx_build_bits()
/dports/sysutils/u-boot-olinuxino-lime2-emmc/u-boot-2021.07/arch/mips/mach-octeon/include/mach/
H A Dcvmx-regs.h354 static inline u64 cvmx_build_bits(u64 high_bit, u64 low_bit, u64 value) in cvmx_build_bits() argument
356 return ((value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit); in cvmx_build_bits()
/dports/sysutils/u-boot-olinuxino-lime2/u-boot-2021.07/arch/mips/mach-octeon/include/mach/
H A Dcvmx-regs.h354 static inline u64 cvmx_build_bits(u64 high_bit, u64 low_bit, u64 value) in cvmx_build_bits() argument
356 return ((value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit); in cvmx_build_bits()
/dports/sysutils/u-boot-chip/u-boot-2021.07/arch/mips/mach-octeon/include/mach/
H A Dcvmx-regs.h354 static inline u64 cvmx_build_bits(u64 high_bit, u64 low_bit, u64 value) in cvmx_build_bits() argument
356 return ((value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit); in cvmx_build_bits()
/dports/sysutils/u-boot-cubox-hummingboard/u-boot-2021.07/arch/mips/mach-octeon/include/mach/
H A Dcvmx-regs.h354 static inline u64 cvmx_build_bits(u64 high_bit, u64 low_bit, u64 value) in cvmx_build_bits() argument
356 return ((value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit); in cvmx_build_bits()

1234567