Home
last modified time | relevance | path

Searched refs:int_value (Results 1 – 11 of 11) sorted by relevance

/OK3568_Linux_fs/kernel/arch/parisc/math-emu/
H A Dcnv_float.h50 #define Int_isinexact_to_sgl(int_value) ((int_value << 33 - SGL_EXP_LENGTH) != 0) argument
52 #define Sgl_roundnearest_from_int(int_value,sgl_value) \ argument
53 if (int_value & 1<<(SGL_EXP_LENGTH - 2)) /* round bit */ \
54 if (((int_value << 34 - SGL_EXP_LENGTH) != 0) || Slow(sgl_value)) \
211 #define Int_negate(int_value) int_value = -int_value argument
306 #define Suint_isinexact_to_sgl(int_value) \ argument
307 (int_value << 32 - SGL_EXP_LENGTH)
/OK3568_Linux_fs/kernel/drivers/gpio/
H A Dgpio-cadence.c88 u32 int_value; in cdns_gpio_irq_set_type() local
95 int_value = ioread32(cgpio->regs + CDNS_GPIO_IRQ_VALUE) & ~mask; in cdns_gpio_irq_set_type()
106 int_value |= mask; in cdns_gpio_irq_set_type()
114 iowrite32(int_value, cgpio->regs + CDNS_GPIO_IRQ_VALUE); in cdns_gpio_irq_set_type()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Doptabs.h67 poly_int64 int_value; variable
77 bool unsigned_p, poly_int64 int_value = 0)
85 op->int_value = int_value;
H A Dhsa-common.h178 hsa_op_immed (HOST_WIDE_INT int_value, BrigType16_t type);
/OK3568_Linux_fs/kernel/drivers/net/wireless/zydas/zd1211rw/
H A Dzd_rf_uw2453.c284 u8 int_value = chip->pwr_int_values[channel - 1]; in uw2453_set_tx_gain_level() local
286 if (int_value >= ARRAY_SIZE(uw2453_txgain)) { in uw2453_set_tx_gain_level()
288 "int value %x on channel %d\n", int_value, channel); in uw2453_set_tx_gain_level()
293 UW2453_REGWRITE(7, uw2453_txgain[int_value]), RF_RV_BITS); in uw2453_set_tx_gain_level()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Doptabs.h67 poly_int64 int_value; variable
77 bool unsigned_p, poly_int64 int_value = 0)
85 op->int_value = int_value;
H A Dhsa-common.h178 hsa_op_immed (HOST_WIDE_INT int_value, BrigType16_t type);
/OK3568_Linux_fs/kernel/include/acpi/
H A Dcppc_acpi.h55 u64 int_value; member
/OK3568_Linux_fs/kernel/drivers/gpu/arm/mali400/mali/linux/
H A Dmali_osk_profiling.c252 u64 int_value = 0; in _mali_profiling_read_packet_int() local
261 int_value |= (u32)(byte_value & 0x7f) << shift; in _mali_profiling_read_packet_int()
265 if (shift < 8 * sizeof(int_value) && (byte_value & 0x40) != 0) { in _mali_profiling_read_packet_int()
266 int_value |= -(1 << shift); in _mali_profiling_read_packet_int()
269 return int_value; in _mali_profiling_read_packet_int()
/OK3568_Linux_fs/kernel/drivers/acpi/
H A Dcppc_acpi.c112 !!(cpc)->cpc_entry.int_value : \
748 cpc_ptr->cpc_regs[i-2].cpc_entry.int_value = cpc_obj->integer.value; in acpi_cppc_processor_probe()
801 cpc_ptr->cpc_regs[i].cpc_entry.int_value = 0; in acpi_cppc_processor_probe()
947 *val = reg_res->cpc_entry.int_value; in cpc_read()
/OK3568_Linux_fs/buildroot/package/lvgl/lvgl/
H A D0005-lvgl-Add-lv_conf.h.patch361 +#define LV_EXPORT_CONST_INT(int_value) struct _silence_gcc_warning /*The default value just preven…