Home
last modified time | relevance | path

Searched defs:shift (Results 401 – 425 of 3474) sorted by relevance

1...<<11121314151617181920>>...139

/aosp_15_r20/external/parameter-framework/upstream/parameter/
H A DParameterType.cpp154 size_t shift = CHAR_BIT * (sizeof(data) - getSize()); in doSignExtend() local
184 size_t shift = getSize() * 8; in doIsEncodable() local
/aosp_15_r20/external/guava/android/guava/src/com/google/common/primitives/
H A DUnsignedLongs.java471 int shift = Integer.numberOfTrailingZeros(radix); in toString() local
475 x >>>= shift; in toString() local
/aosp_15_r20/external/gemmlowp/meta/
H A Dlegacy_single_thread_gemm.h33 std::int32_t multiplicative_offset, std::int32_t shift, in gemm_q8_strided()
78 std::int32_t shift, std::uint8_t* result) { in gemv_q8()
/aosp_15_r20/external/arm-trusted-firmware/drivers/brcm/
H A Diproc_gpio.c58 unsigned int shift = IPROC_GPIO_SHIFT(gpio); in gpio_set_bit() local
73 unsigned int shift = IPROC_GPIO_SHIFT(gpio); in gpio_get_bit() local
/aosp_15_r20/external/coreboot/src/soc/amd/common/block/include/amdblocks/
H A Dspi.h54 #define SPI_SPEED_MODE(x, shift) (((x) & SPI_SPEED_MASK) << shift) argument
64 #define DECODE_SPEED_MODE(x, shift) (((x) >> shift) & DECODE_SPEED_MASK) argument
/aosp_15_r20/external/webp/src/utils/
H A Dbit_writer_utils.c117 const int shift = kNorm[bw->range_]; in VP8PutBit() local
305 const int shift = VP8L_WRITER_MAX_BITS - used; in VP8LPutBitsInternal() local
/aosp_15_r20/external/tensorflow/tensorflow/core/platform/
H A Dcoding.cc162 for (uint32 shift = 0; shift <= 28 && p < limit; shift += 7) { in GetVarint32PtrFallback() local
191 for (uint32 shift = 0; shift <= 63 && p < limit; shift += 7) { in GetVarint64Ptr() local
/aosp_15_r20/external/mesa3d/src/imagination/csbgen/
H A Dpvr_packet_helpers.h155 uint32_t shift, in __pvr_address()
167 uint32_t shift, in __pvr_address_unpack()
/aosp_15_r20/external/mesa3d/src/mesa/main/
H A Dpixeltransfer.c200 GLint shift = ctx->Pixel.IndexShift; in _mesa_shift_and_offset_ci() local
233 GLint shift = ctx->Pixel.IndexShift; in _mesa_apply_stencil_transfer_ops() local
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/icl/include/boost/icl/concept/
Dinterval_bounds.hpp40 inline interval_bounds operator << (interval_bounds bounds, unsigned int shift) in operator <<()
44 inline interval_bounds operator >> (interval_bounds bounds, unsigned int shift) in operator >>()
/aosp_15_r20/external/arm-trusted-firmware/plat/rockchip/rk3288/drivers/soc/
H A Dsoc.h96 #define regs_update_bit_set(addr, shift) \ argument
98 #define regs_update_bit_clr(addr, shift) \ argument
/aosp_15_r20/external/zxing/core/src/main/java/com/google/zxing/datamatrix/decoder/
H A DDecodedBitStreamParser.java244 int shift = 0; in decodeC40Segment() local
336 int shift = 0; in decodeTextSegment() local
/aosp_15_r20/external/arm-optimized-routines/pl/math/
H A Dsv_erfc_1u8.c15 double max, shift; member
88 svfloat64_t shift = sv_f64 (dat->shift); in SV_NAME_D1() local
/aosp_15_r20/external/trusty/arm-trusted-firmware/plat/rockchip/rk3288/drivers/soc/
Dsoc.h96 #define regs_update_bit_set(addr, shift) \ argument
98 #define regs_update_bit_clr(addr, shift) \ argument
/aosp_15_r20/external/eigen/Eigen/src/IterativeLinearSolvers/
H A DIncompleteCholesky.h106 void setInitialShift(RealScalar shift) { m_initialShift = shift; } in setInitialShift()
257 RealScalar shift = 0; in factorize() local
/aosp_15_r20/external/libvpx/vp9/decoder/
H A Dvp9_detokenize.c63 const int shift = vpx_norm[*range]; in read_bool() local
86 const int shift = vpx_norm[*range]; in read_bool() local
/aosp_15_r20/external/libhevc/common/arm/
H A Dihevc_platform_macros.h129 #define SHR_NEG(val,shift) ((shift>0)?(val>>shift):(val<<(-shift))) argument
130 #define SHL_NEG(val,shift) ((shift<0)?(val>>(-shift)):(val<<shift)) argument
/aosp_15_r20/external/pcre/src/sljit/
H A DsljitNativePPC_common.c263 #define SLWI(shift) (RLWINM | RLWI_SH(shift) | RLWI_MBE(0, 31 - (shift))) argument
264 #define SLDI(shift) (RLDICR | RLDI_SH(shift) | RLDI_ME(63 - (shift))) argument
266 #define SRWI(shift) (RLWINM | RLWI_SH(32 - (shift)) | RLWI_MBE((shift), 31)) argument
267 #define SRDI(shift) (RLDICL | RLDI_SH(64 - (shift)) | RLDI_MB(shift)) argument
270 #define SLWI_W(shift) SLWI(shift) argument
273 #define SLWI_W(shift) SLDI(shift) argument
/aosp_15_r20/external/cronet/third_party/brotli/enc/
H A Dcompress_fragment.c41 static BROTLI_INLINE uint32_t Hash(const uint8_t* p, size_t shift) { in Hash()
47 uint64_t v, int offset, size_t shift) { in HashBytesAtOffset()
465 const size_t shift = 64u - table_bits; in BrotliCompressFragmentFastImpl() local
/aosp_15_r20/external/rust/android-crates-io/crates/pdl-compiler/src/backends/rust/
Ddecoder.rs25 shift: usize, // The shift to apply to this field. field
38 shift: usize, field
179 let shift = proc_macro2::Literal::usize_unsuffixed(shift); in add_bit_field() localVariable
/aosp_15_r20/external/brotli/c/enc/
H A Dcompress_fragment.c43 static BROTLI_INLINE uint32_t Hash(const uint8_t* p, size_t shift) { in Hash()
49 uint64_t v, int offset, size_t shift) { in HashBytesAtOffset()
462 const size_t shift = 64u - table_bits; in BrotliCompressFragmentFastImpl() local
/aosp_15_r20/external/rust/android-crates-io/crates/pdl-compiler/src/backends/rust_legacy/
Dparser.rs29 shift: usize, // The shift to apply to this field. field
42 shift: usize, field
183 let shift = proc_macro2::Literal::usize_unsuffixed(shift); in add_bit_field() localVariable
/aosp_15_r20/external/coreboot/src/soc/samsung/exynos5250/
H A Dclock.c376 unsigned int shift; in clock_ll_set_pre_ratio() local
419 unsigned int shift; in clock_ll_set_ratio() local
/aosp_15_r20/external/mesa3d/src/amd/vpelib/src/utils/inc/
H A Dfixed31_32.h225 static inline struct fixed31_32 vpe_fixpt_shl(struct fixed31_32 arg, unsigned char shift) in vpe_fixpt_shl()
239 static inline struct fixed31_32 vpe_fixpt_shr(struct fixed31_32 arg, unsigned char shift) in vpe_fixpt_shr()
/aosp_15_r20/packages/apps/Launcher3/src/com/android/launcher3/celllayout/
DViewCluster.kt131 fun shift(whichEdge: Int, delta: Int) { in <lambda>() method

1...<<11121314151617181920>>...139