/kernel/linux/linux-6.6/arch/powerpc/kernel/ |
H A D | align.c | 115 } data, temp; in emulate_spe() local 165 temp.ll = data.ll = 0; in emulate_spe() 173 unsafe_get_user(temp.v[0], p++, Efault_read); in emulate_spe() 174 unsafe_get_user(temp.v[1], p++, Efault_read); in emulate_spe() 175 unsafe_get_user(temp.v[2], p++, Efault_read); in emulate_spe() 176 unsafe_get_user(temp.v[3], p++, Efault_read); in emulate_spe() 179 unsafe_get_user(temp.v[4], p++, Efault_read); in emulate_spe() 180 unsafe_get_user(temp.v[5], p++, Efault_read); in emulate_spe() 183 unsafe_get_user(temp.v[6], p++, Efault_read); in emulate_spe() 184 unsafe_get_user(temp in emulate_spe() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/gma500/ |
H A D | oaktrail_hdmi_i2c.c | 79 u32 temp; in hdmi_i2c_irq_enable() local 81 temp = HDMI_READ(HDMI_HICR); in hdmi_i2c_irq_enable() 82 temp |= (HDMI_INTR_I2C_ERROR | HDMI_INTR_I2C_FULL | HDMI_INTR_I2C_DONE); in hdmi_i2c_irq_enable() 83 HDMI_WRITE(HDMI_HICR, temp); in hdmi_i2c_irq_enable() 97 u32 temp; in xfer_read() local 105 temp = ((pmsg->len) << 20) | HI2C_EDID_READ | HI2C_ENABLE_TRANSACTION; in xfer_read() 106 HDMI_WRITE(HDMI_HI2CHCR, temp); in xfer_read() 180 u32 temp; in hdmi_i2c_read() local 185 temp = HDMI_READ(HDMI_HI2CRDB0 + (i * 4)); in hdmi_i2c_read() 186 memcpy(buf + (offset + i * 4), &temp, in hdmi_i2c_read() 207 u32 temp; hdmi_i2c_transaction_done() local 256 u32 temp; oaktrail_hdmi_i2c_gpio_fix() local [all...] |
H A D | mdfld_intel_display.c | 46 int count, temp; in mdfldWaitForPipeDisable() local 64 temp = REG_READ(map->conf); in mdfldWaitForPipeDisable() 65 if ((temp & PIPEACONF_PIPE_STATE) == 0) in mdfldWaitForPipeDisable() 74 int count, temp; in mdfldWaitForPipeEnable() local 92 temp = REG_READ(map->conf); in mdfldWaitForPipeEnable() 93 if (temp & PIPEACONF_PIPE_STATE) in mdfldWaitForPipeEnable() 210 u32 temp; in mdfld_disable_crtc() local 220 temp = REG_READ(map->cntr); in mdfld_disable_crtc() 221 if ((temp & DISPLAY_PLANE_ENABLE) != 0) { in mdfld_disable_crtc() 223 temp in mdfld_disable_crtc() 280 u32 temp; mdfld_crtc_dpms() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/gma500/ |
H A D | oaktrail_hdmi_i2c.c | 79 u32 temp; in hdmi_i2c_irq_enable() local 81 temp = HDMI_READ(HDMI_HICR); in hdmi_i2c_irq_enable() 82 temp |= (HDMI_INTR_I2C_ERROR | HDMI_INTR_I2C_FULL | HDMI_INTR_I2C_DONE); in hdmi_i2c_irq_enable() 83 HDMI_WRITE(HDMI_HICR, temp); in hdmi_i2c_irq_enable() 97 u32 temp; in xfer_read() local 105 temp = ((pmsg->len) << 20) | HI2C_EDID_READ | HI2C_ENABLE_TRANSACTION; in xfer_read() 106 HDMI_WRITE(HDMI_HI2CHCR, temp); in xfer_read() 180 u32 temp; in hdmi_i2c_read() local 185 temp = HDMI_READ(HDMI_HI2CRDB0 + (i * 4)); in hdmi_i2c_read() 186 memcpy(buf + (offset + i * 4), &temp, in hdmi_i2c_read() 207 u32 temp; hdmi_i2c_transaction_done() local 256 u32 temp; oaktrail_hdmi_i2c_gpio_fix() local [all...] |
/third_party/skia/third_party/externals/microhttpd/src/microspdy/ |
H A D | structures.c | 63 struct SPDY_NameValue *temp; in SPDY_name_value_add() local 143 temp = container; in SPDY_name_value_add() 144 while(NULL != temp->next) in SPDY_name_value_add() 145 temp = temp->next; in SPDY_name_value_add() 146 temp->next = pair; in SPDY_name_value_add() 147 pair->prev = temp; in SPDY_name_value_add() 194 struct SPDY_NameValue *temp = container; in SPDY_name_value_lookup() local 203 if(strcmp(name, temp->name) == 0) in SPDY_name_value_lookup() 205 *num_values = temp in SPDY_name_value_lookup() 221 struct SPDY_NameValue *temp = container; SPDY_name_value_destroy() local 243 struct SPDY_NameValue *temp = container; SPDY_name_value_iterate() local 465 int32_t temp; SPDYF_name_value_to_stream() local [all...] |
/kernel/linux/linux-5.10/sound/pci/au88x0/ |
H A D | au88x0_mpu401.c | 33 int temp, mode; in snd_vortex_midi() local 41 temp = in snd_vortex_midi() 44 hwwrite(vortex->mmio, VORTEX_CTRL, temp); in snd_vortex_midi() 47 temp = in snd_vortex_midi() 50 hwwrite(vortex->mmio, VORTEX_CTRL, temp); in snd_vortex_midi() 54 temp = hwread(vortex->mmio, VORTEX_CTRL2) & 0xffff00cf; in snd_vortex_midi() 55 temp |= (MIDI_CLOCK_DIV << 8) | ((mode >> 24) & 0xff) << 4; in snd_vortex_midi() 56 hwwrite(vortex->mmio, VORTEX_CTRL2, temp); in snd_vortex_midi() 60 temp = hwread(vortex->mmio, VORTEX_MIDI_DATA); in snd_vortex_midi() 61 if (temp ! in snd_vortex_midi() [all...] |
H A D | au88x0_core.c | 157 int addr, temp; 163 temp = hwread(vortex->mmio, VORTEX_MIX_ENIN + addr); 164 return ((temp >> (mixin & 3)) & 1); 171 int temp; in vortex_mix_setvolumebyte() local 174 temp = hwread(vortex->mmio, VORTEX_MIX_VOL_B + (mix << 2)); in vortex_mix_setvolumebyte() 175 if ((temp != 0x80) || (vol == 0x80)) in vortex_mix_setvolumebyte() 185 int temp; in vortex_mix_setinputvolumebyte() local 190 temp = in vortex_mix_setinputvolumebyte() 193 if ((temp != 0x80) || (vol == 0x80)) in vortex_mix_setinputvolumebyte() 203 int temp, add in vortex_mix_setenablebit() local 261 int temp, lifeboat = 0, prev; vortex_mixer_addWTD() local 464 int temp; vortex_src_set_throttlesource() local 477 int temp, lifeboat = 0; vortex_src_persist_convratio() local 657 int temp, lifeboat = 0, prev; vortex_src_addWTD() local 799 int temp, lifeboat = 0; vortex_fifo_setadbctrl() local 900 int temp = 0, lifeboat = 0; vortex_fifo_setwtctrl() local 1248 int temp, page, delta; vortex_adbdma_getlinearpos() local 1505 int temp; vortex_wtdma_getlinearpos() local 1632 int temp, prev, lifeboat = 0; vortex_adb_addroutes() local 1679 int temp, lifeboat = 0, prev; vortex_adb_delroutes() local [all...] |
/kernel/linux/linux-6.6/sound/pci/au88x0/ |
H A D | au88x0_core.c | 157 int addr, temp; 163 temp = hwread(vortex->mmio, VORTEX_MIX_ENIN + addr); 164 return ((temp >> (mixin & 3)) & 1); 171 int temp; in vortex_mix_setvolumebyte() local 174 temp = hwread(vortex->mmio, VORTEX_MIX_VOL_B + (mix << 2)); in vortex_mix_setvolumebyte() 175 if ((temp != 0x80) || (vol == 0x80)) in vortex_mix_setvolumebyte() 185 int temp; in vortex_mix_setinputvolumebyte() local 190 temp = in vortex_mix_setinputvolumebyte() 193 if ((temp != 0x80) || (vol == 0x80)) in vortex_mix_setinputvolumebyte() 203 int temp, add in vortex_mix_setenablebit() local 261 int temp, lifeboat = 0, prev; vortex_mixer_addWTD() local 464 int temp; vortex_src_set_throttlesource() local 477 int temp, lifeboat = 0; vortex_src_persist_convratio() local 657 int temp, lifeboat = 0, prev; vortex_src_addWTD() local 799 int temp, lifeboat = 0; vortex_fifo_setadbctrl() local 900 int temp = 0, lifeboat = 0; vortex_fifo_setwtctrl() local 1248 int temp, page, delta; vortex_adbdma_getlinearpos() local 1505 int temp; vortex_wtdma_getlinearpos() local 1632 int temp, prev, lifeboat = 0; vortex_adb_addroutes() local 1679 int temp, lifeboat = 0, prev; vortex_adb_delroutes() local [all...] |
/kernel/linux/linux-5.10/arch/arm/include/asm/ |
H A D | irqflags.h | 74 unsigned long flags, temp; in arch_local_irq_save() local 80 : "=r" (flags), "=r" (temp) in arch_local_irq_save() 92 unsigned long temp; in arch_local_irq_enable() local 97 : "=r" (temp) in arch_local_irq_enable() 108 unsigned long temp; in arch_local_irq_disable() local 113 : "=r" (temp) in arch_local_irq_disable() 123 unsigned long temp; \ 128 : "=r" (temp) \ 138 unsigned long temp; \ 143 : "=r" (temp) \ [all...] |
/kernel/linux/linux-6.6/arch/arm/include/asm/ |
H A D | irqflags.h | 74 unsigned long flags, temp; in arch_local_irq_save() local 80 : "=r" (flags), "=r" (temp) in arch_local_irq_save() 92 unsigned long temp; in arch_local_irq_enable() local 97 : "=r" (temp) in arch_local_irq_enable() 108 unsigned long temp; in arch_local_irq_disable() local 113 : "=r" (temp) in arch_local_irq_disable() 123 unsigned long temp; \ 128 : "=r" (temp) \ 138 unsigned long temp; \ 143 : "=r" (temp) \ [all...] |
/kernel/liteos_a/testsuites/kernel/sample/posix/pthread/full/ |
H A D | It_posix_pthread_033.c | 50 UINTPTR temp = 1; in PthreadF02() local 56 ret = pthread_join(g_newTh, (void *)&temp); in PthreadF02() 68 UINTPTR temp = 1; in Testcase() local 81 ret = pthread_join(g_newTh, (void *)&temp); in Testcase() 83 ICUNIT_ASSERT_EQUAL(temp, 9, temp); // 9, here assert the result. in Testcase() 86 ret = pthread_join(g_newTh, (void *)&temp); in Testcase() 89 ret = pthread_join(newTh, (void *)&temp); in Testcase() 91 ICUNIT_ASSERT_EQUAL(temp, 8, temp); // in Testcase() [all...] |
/test/xts/acts/distributeddatamgr_lite/kv_store_hal/src/ |
H A D | kvstore_func_test.c | 69 char temp[MAX_VALUE_LEN_TEST] = {0}; in SetKVFiles() local 88 ret = UtilsGetValue(keytemp, temp, MAX_VALUE_LEN_TEST); in SetKVFiles() 95 TEST_ASSERT_EQUAL_STRING(valuetemp, temp); in SetKVFiles() 100 memset_s(temp, MAX_VALUE_LEN_TEST, 0, MAX_VALUE_LEN_TEST); in SetKVFiles() 116 char temp[MAX_VALUE_LEN_TEST] = {0}; in ReadKVFiles() local 129 ret = UtilsGetValue(keytemp, temp, MAX_VALUE_LEN_TEST); in ReadKVFiles() 140 TEST_ASSERT_EQUAL_STRING(valuetemp, temp); in ReadKVFiles() 146 memset_s(temp, MAX_VALUE_LEN_TEST, 0, MAX_VALUE_LEN_TEST); in ReadKVFiles() 437 char temp[MAX_VALUE_LEN_TEST] = {0}; variable 441 ret = UtilsGetValue(key, temp, MAX_VALUE_LEN_TES 461 char temp[MAX_VALUE_LEN_TEST] = {0}; global() variable 485 char temp[MAX_VALUE_LEN_TEST] = {0}; global() variable 514 char temp[MAX_VALUE_LEN_TEST] = {0}; global() variable 528 char temp[MAX_VALUE_LEN_TEST] = {0}; global() variable 565 char temp[MAX_VALUE_LEN_TEST] = {0}; global() variable 594 char temp[MAX_VALUE_LEN_TEST] = {0}; global() variable [all...] |
/third_party/toybox/toys/pending/ |
H A D | fsck.c | 89 struct f_sys_info *temp = filesys_info; in create_db() local 90 if (temp) { in create_db() 91 while (temp->next) temp = temp->next; in create_db() 92 temp->next = xzalloc(sizeof(struct f_sys_info)); in create_db() 93 temp = temp->next; in create_db() 94 } else filesys_info = temp = xzalloc(sizeof(struct f_sys_info)); in create_db() 96 temp in create_db() 254 struct child_list *prev, *temp; wait_for() local 419 struct f_sys_info *finfo, *temp; fsck_main() local [all...] |
/kernel/linux/linux-5.10/drivers/hwmon/ |
H A D | tmp401.c | 17 * few differences too, for example the local temp has a higher resolution 53 { 0x00, 0x01 }, /* temp */ 63 { 0, 0 }, /* temp (unused) */ 73 { 0x00, 0x01, 0x23 }, /* temp */ 80 { 0, 0, 0 }, /* temp - unused */ 148 u16 temp[7][3]; member 158 int temp = reg; in tmp401_register_to_temp() local 161 temp -= 64 * 256; in tmp401_register_to_temp() 163 return DIV_ROUND_CLOSEST(temp * 125, 32); in tmp401_register_to_temp() 166 static u16 tmp401_temp_to_register(long temp, u argument 296 int temp, index = to_sensor_dev_attr(devattr)->index; temp_crit_hyst_show() local 361 int temp, index = to_sensor_dev_attr(devattr)->index; temp_crit_hyst_store() local [all...] |
H A D | stts751.c | 95 int temp; member 167 "I2C read failed (temp H). ret: %x\n", integer1); in stts751_update_temp() 174 "I2C read failed (temp L). ret: %x\n", frac); in stts751_update_temp() 181 "I2C 2nd read failed (temp H). ret: %x\n", integer2); in stts751_update_temp() 190 "I2C 2nd read failed (temp L). ret: %x\n", in stts751_update_temp() 196 priv->temp = stts751_to_deg((integer1 << 8) | frac); in stts751_update_temp() 200 static int stts751_set_temp_reg16(struct stts751_priv *priv, int temp, in stts751_set_temp_reg16() argument 206 hwval = stts751_to_hw(temp); in stts751_set_temp_reg16() 215 static int stts751_set_temp_reg8(struct stts751_priv *priv, int temp, u8 reg) in stts751_set_temp_reg8() argument 219 hwval = stts751_to_hw(temp); in stts751_set_temp_reg8() 223 stts751_read_reg16(struct stts751_priv *priv, int *temp, u8 hreg, u8 lreg) stts751_read_reg16() argument 241 stts751_read_reg8(struct stts751_priv *priv, int *temp, u8 reg) stts751_read_reg8() argument 437 long temp; therm_store() local 479 long temp; hyst_store() local 527 long temp; max_store() local 561 long temp; min_store() local [all...] |
H A D | adt7462.c | 199 u8 temp[ADT7462_TEMP_COUNT]; member 200 /* bits 6-7 are quarter pieces of temp */ 692 data->temp[i] = i2c_smbus_read_byte_data(client, in adt7462_update_device() 797 long temp; in temp_min_store() local 799 if (kstrtol(buf, 10, &temp) || !temp_enabled(data, attr->index)) in temp_min_store() 802 temp = clamp_val(temp, -64000, 191000); in temp_min_store() 803 temp = DIV_ROUND_CLOSEST(temp, 1000) + 64; in temp_min_store() 806 data->temp_min[attr->index] = temp; in temp_min_store() 833 long temp; temp_max_store() local 894 long temp; volt_max_store() local 934 long temp; volt_min_store() local 999 u16 temp; fan_min_show() local 1019 long temp; fan_min_store() local 1065 long temp; force_pwm_max_store() local 1098 long temp; pwm_store() local 1126 long temp; pwm_max_store() local 1156 long temp; pwm_min_store() local 1188 long temp; pwm_hyst_store() local 1227 int temp; pwm_tmax_store() local 1270 long temp; pwm_tmin_store() local 1309 int temp = data->pwm_cfg[which] & ~ADT7462_PWM_CHANNEL_MASK; set_pwm_channel() local 1325 long temp; pwm_auto_store() local 1382 long temp; pwm_auto_temp_store() local [all...] |
/kernel/linux/linux-6.6/drivers/hwmon/ |
H A D | stts751.c | 95 int temp; member 167 "I2C read failed (temp H). ret: %x\n", integer1); in stts751_update_temp() 174 "I2C read failed (temp L). ret: %x\n", frac); in stts751_update_temp() 181 "I2C 2nd read failed (temp H). ret: %x\n", integer2); in stts751_update_temp() 190 "I2C 2nd read failed (temp L). ret: %x\n", in stts751_update_temp() 196 priv->temp = stts751_to_deg((integer1 << 8) | frac); in stts751_update_temp() 200 static int stts751_set_temp_reg16(struct stts751_priv *priv, int temp, in stts751_set_temp_reg16() argument 206 hwval = stts751_to_hw(temp); in stts751_set_temp_reg16() 215 static int stts751_set_temp_reg8(struct stts751_priv *priv, int temp, u8 reg) in stts751_set_temp_reg8() argument 219 hwval = stts751_to_hw(temp); in stts751_set_temp_reg8() 223 stts751_read_reg16(struct stts751_priv *priv, int *temp, u8 hreg, u8 lreg) stts751_read_reg16() argument 241 stts751_read_reg8(struct stts751_priv *priv, int *temp, u8 reg) stts751_read_reg8() argument 437 long temp; therm_store() local 479 long temp; hyst_store() local 527 long temp; max_store() local 561 long temp; min_store() local [all...] |
H A D | adt7462.c | 199 u8 temp[ADT7462_TEMP_COUNT]; member 200 /* bits 6-7 are quarter pieces of temp */ 692 data->temp[i] = i2c_smbus_read_byte_data(client, in adt7462_update_device() 797 long temp; in temp_min_store() local 799 if (kstrtol(buf, 10, &temp) || !temp_enabled(data, attr->index)) in temp_min_store() 802 temp = clamp_val(temp, -64000, 191000); in temp_min_store() 803 temp = DIV_ROUND_CLOSEST(temp, 1000) + 64; in temp_min_store() 806 data->temp_min[attr->index] = temp; in temp_min_store() 833 long temp; temp_max_store() local 894 long temp; volt_max_store() local 934 long temp; volt_min_store() local 999 u16 temp; fan_min_show() local 1019 long temp; fan_min_store() local 1065 long temp; force_pwm_max_store() local 1098 long temp; pwm_store() local 1126 long temp; pwm_max_store() local 1156 long temp; pwm_min_store() local 1188 long temp; pwm_hyst_store() local 1227 int temp; pwm_tmax_store() local 1270 long temp; pwm_tmin_store() local 1309 int temp = data->pwm_cfg[which] & ~ADT7462_PWM_CHANNEL_MASK; set_pwm_channel() local 1325 long temp; pwm_auto_store() local 1382 long temp; pwm_auto_temp_store() local [all...] |
/kernel/linux/linux-5.10/arch/hexagon/include/asm/ |
H A D | spinlock.h | 60 int temp; in arch_read_trylock() local 68 : "=&r" (temp) in arch_read_trylock() 72 return temp; in arch_read_trylock() 93 int temp; in arch_write_trylock() local 101 : "=&r" (temp) in arch_write_trylock() 105 return temp; in arch_write_trylock() 138 int temp; in arch_spin_trylock() local 146 : "=&r" (temp) in arch_spin_trylock() 150 return temp; in arch_spin_trylock()
|
/kernel/linux/linux-6.6/arch/hexagon/include/asm/ |
H A D | spinlock.h | 60 int temp; in arch_read_trylock() local 68 : "=&r" (temp) in arch_read_trylock() 72 return temp; in arch_read_trylock() 93 int temp; in arch_write_trylock() local 101 : "=&r" (temp) in arch_write_trylock() 105 return temp; in arch_write_trylock() 138 int temp; in arch_spin_trylock() local 146 : "=&r" (temp) in arch_spin_trylock() 150 return temp; in arch_spin_trylock()
|
/kernel/linux/linux-5.10/drivers/video/fbdev/sis/ |
H A D | init301.c | 613 unsigned short modeflag,index,temp,backupindex; in SiS_GetRatePtr() local 652 temp = LCDRefreshIndex[SiS_GetBIOSLCDResInfo(SiS_Pr)]; in SiS_GetRatePtr() 653 if(index > temp) index = temp; in SiS_GetRatePtr() 679 temp = SiS_Pr->SiS_RefIndex[RRTI + i].Ext_InfoFlag; in SiS_GetRatePtr() 680 temp &= ModeTypeMask; in SiS_GetRatePtr() 681 if(temp < SiS_Pr->SiS_ModeType) break; in SiS_GetRatePtr() 688 temp = SiS_Pr->SiS_RefIndex[RRTI + i - 1].Ext_InfoFlag; in SiS_GetRatePtr() 689 if(temp & InterlaceMode) i++; in SiS_GetRatePtr() 730 unsigned short temp,temp in SiS_CR36BIOSWord23b() local 746 unsigned short temp,temp1; SiS_CR36BIOSWord23d() local 973 unsigned short tempal,temp,i,j; SiS_VBWait() local 1238 unsigned short temp; SiS_SetChrontelGPIO() local 1261 unsigned short tempax, tempbx, temp; SiS_GetVBInfo() local 1489 unsigned char temp; SiS_SetYPbPr() local 1532 unsigned short temp, temp1, resinfo = 0, romindex = 0; SiS_SetTVMode() local 1731 unsigned short temp = SiS_Pr->SiS_LCDResInfo; SiS_GetBIOSLCDResInfo() local 1746 unsigned short temp; SiS_GetLCDInfoBIOS() local 1792 unsigned short temp,modeflag,resinfo=0,modexres=0,modeyres=0; SiS_GetLCDResInfo() local 4131 unsigned short temp; SiS_HandlePWD() local 4163 unsigned short temp=0; SiS_DisableBridge() local 4559 unsigned short temp=0, tempah; SiS_EnableBridge() local 5148 unsigned char temp; SiS_SetCRT2Offset() local 5336 unsigned short temp, index, modeidindex, refreshratetableindex; SiS_SetCRT2FIFO_300() local 5545 unsigned short temp, modeflag, i, j, xres=0, VGAVDE; SiS_SetGroup1_301() local 5675 unsigned short push2, tempax, tempbx, tempcx, temp; SiS_SetGroup1_LVDS() local 6233 unsigned short temp=0, tempax=0, tempbx=0, tempcx=0, bridgeadd=0; SiS_SetGroup1() local 6650 unsigned char temp; SiS_SetGroup2_C_ELV() local 6848 unsigned short temp; SiS_SetGroup2_Tail() local 6908 unsigned short i, j, tempax, tempbx, tempcx, tempch, tempcl, temp; SiS_SetGroup2() local 7593 unsigned short temp, temp1; SiS_SetGroup4_C_ELV() local 7664 unsigned short vclkindex, temp, reg1, reg2; SiS_SetCRT2VCLK() local 7723 unsigned short tempax, tempcx, tempbx, modeflag, temp, resinfo; SiS_SetGroup4() local 8302 unsigned short temp; SiS_SetCHTVReg() local 8356 unsigned short temp; SiS_Chrontel701xBLOn() local 8373 unsigned short temp; SiS_Chrontel701xBLOff() local 8521 unsigned char temp, temp1; SiS_ChrontelResetVSync() local 8538 unsigned short temp; SiS_Chrontel701xOn() local 8583 unsigned short temp; SiS_Chrontel701xOff() local 8605 unsigned short temp; SiS_ChrontelResetDB() local 8657 unsigned short temp; SiS_ChrontelInitTVVSync() local 8686 unsigned short temp,temp1; SiS_ChrontelDoSomething3() local 8737 unsigned short temp; SiS_ChrontelDoSomething2() local 8774 unsigned short temp; SiS_ChrontelDoSomething1() local 9044 unsigned short tempah,temp; SiS_SetTrumpBlockLoop() local 9103 unsigned short temp, i; SiS_SetChReg() local 9176 unsigned short tempah, temp, i; SiS_GetChReg() local 9279 unsigned short temp = 0, myadaptnum = adaptnum; SiS_InitDDCRegs() local 9435 unsigned short temp, ret=0; SiS_DoProbeDDC() local 9669 unsigned short i,flag,temp; SiS_WriteDDC2Data() local 9695 unsigned short i, temp, getdata; SiS_ReadDDC2Data() local 9726 unsigned short temp, watchdog=1000; SiS_SetSCLKHigh() local 9889 unsigned short index = 0, temp = 0; GetOEMTVPtr661_2_GEN() local 9953 unsigned short delay=0,index,myindex,temp,romptr=0; SetDelayComp() local 10258 unsigned short index,temp,temp1,romptr=0; SetAntiFlicker() local 10301 unsigned short index,temp,temp1,romptr=0; SetEdgeEnhance() local 10338 unsigned short index, temp, i, j; SetYFilter() local 10371 unsigned short index,temp,i,j,resinfo,romptr=0; SetPhaseIncr() local 10619 unsigned char temp; SetCRT2SyncDither661() local 10753 unsigned short tempcl,tempch,tempbl,tempbh,tempbx,tempax,temp; SiS_FinalizeLCD() local 10959 unsigned char temp; SetOEMLCDData2() local 11064 unsigned short index,temp,romptr=0; SetOEMLCDDelay() local 11187 unsigned short index,temp,romptr=0; SetOEMTVDelay() local 11219 unsigned short index,temp,romptr=0; SetOEMAntiFlicker() local 11247 unsigned short index,i,j,temp,romptr=0; SetOEMPhaseIncr() local 11287 unsigned short index,temp,i,j,romptr=0; SetOEMYFilter() local [all...] |
/kernel/linux/linux-6.6/drivers/video/fbdev/sis/ |
H A D | init301.c | 613 unsigned short modeflag,index,temp,backupindex; in SiS_GetRatePtr() local 652 temp = LCDRefreshIndex[SiS_GetBIOSLCDResInfo(SiS_Pr)]; in SiS_GetRatePtr() 653 if(index > temp) index = temp; in SiS_GetRatePtr() 679 temp = SiS_Pr->SiS_RefIndex[RRTI + i].Ext_InfoFlag; in SiS_GetRatePtr() 680 temp &= ModeTypeMask; in SiS_GetRatePtr() 681 if(temp < SiS_Pr->SiS_ModeType) break; in SiS_GetRatePtr() 688 temp = SiS_Pr->SiS_RefIndex[RRTI + i - 1].Ext_InfoFlag; in SiS_GetRatePtr() 689 if(temp & InterlaceMode) i++; in SiS_GetRatePtr() 730 unsigned short temp,temp in SiS_CR36BIOSWord23b() local 746 unsigned short temp,temp1; SiS_CR36BIOSWord23d() local 973 unsigned short tempal,temp,i,j; SiS_VBWait() local 1238 unsigned short temp; SiS_SetChrontelGPIO() local 1261 unsigned short tempax, tempbx, temp; SiS_GetVBInfo() local 1489 unsigned char temp; SiS_SetYPbPr() local 1532 unsigned short temp, temp1, resinfo = 0, romindex = 0; SiS_SetTVMode() local 1731 unsigned short temp = SiS_Pr->SiS_LCDResInfo; SiS_GetBIOSLCDResInfo() local 1746 unsigned short temp; SiS_GetLCDInfoBIOS() local 1792 unsigned short temp,modeflag,resinfo=0,modexres=0,modeyres=0; SiS_GetLCDResInfo() local 4131 unsigned short temp; SiS_HandlePWD() local 4163 unsigned short temp=0; SiS_DisableBridge() local 4559 unsigned short temp=0, tempah; SiS_EnableBridge() local 5148 unsigned char temp; SiS_SetCRT2Offset() local 5336 unsigned short temp, index, modeidindex, refreshratetableindex; SiS_SetCRT2FIFO_300() local 5545 unsigned short temp, modeflag, i, j, xres=0, VGAVDE; SiS_SetGroup1_301() local 5675 unsigned short push2, tempax, tempbx, tempcx, temp; SiS_SetGroup1_LVDS() local 6233 unsigned short temp=0, tempax=0, tempbx=0, tempcx=0, bridgeadd=0; SiS_SetGroup1() local 6650 unsigned char temp; SiS_SetGroup2_C_ELV() local 6848 unsigned short temp; SiS_SetGroup2_Tail() local 6908 unsigned short i, j, tempax, tempbx, tempcx, tempch, tempcl, temp; SiS_SetGroup2() local 7593 unsigned short temp, temp1; SiS_SetGroup4_C_ELV() local 7664 unsigned short vclkindex, temp, reg1, reg2; SiS_SetCRT2VCLK() local 7723 unsigned short tempax, tempcx, tempbx, modeflag, temp, resinfo; SiS_SetGroup4() local 8302 unsigned short temp; SiS_SetCHTVReg() local 8356 unsigned short temp; SiS_Chrontel701xBLOn() local 8373 unsigned short temp; SiS_Chrontel701xBLOff() local 8521 unsigned char temp, temp1; SiS_ChrontelResetVSync() local 8538 unsigned short temp; SiS_Chrontel701xOn() local 8583 unsigned short temp; SiS_Chrontel701xOff() local 8605 unsigned short temp; SiS_ChrontelResetDB() local 8657 unsigned short temp; SiS_ChrontelInitTVVSync() local 8686 unsigned short temp,temp1; SiS_ChrontelDoSomething3() local 8737 unsigned short temp; SiS_ChrontelDoSomething2() local 8774 unsigned short temp; SiS_ChrontelDoSomething1() local 9044 unsigned short tempah,temp; SiS_SetTrumpBlockLoop() local 9103 unsigned short temp, i; SiS_SetChReg() local 9176 unsigned short tempah, temp, i; SiS_GetChReg() local 9279 unsigned short temp = 0, myadaptnum = adaptnum; SiS_InitDDCRegs() local 9435 unsigned short temp, ret=0; SiS_DoProbeDDC() local 9669 unsigned short i,flag,temp; SiS_WriteDDC2Data() local 9695 unsigned short i, temp, getdata; SiS_ReadDDC2Data() local 9726 unsigned short temp, watchdog=1000; SiS_SetSCLKHigh() local 9889 unsigned short index = 0, temp = 0; GetOEMTVPtr661_2_GEN() local 9953 unsigned short delay=0,index,myindex,temp,romptr=0; SetDelayComp() local 10258 unsigned short index,temp,temp1,romptr=0; SetAntiFlicker() local 10301 unsigned short index,temp,temp1,romptr=0; SetEdgeEnhance() local 10338 unsigned short index, temp, i, j; SetYFilter() local 10371 unsigned short index,temp,i,j,resinfo,romptr=0; SetPhaseIncr() local 10619 unsigned char temp; SetCRT2SyncDither661() local 10753 unsigned short tempcl,tempch,tempbl,tempbh,tempbx,tempax,temp; SiS_FinalizeLCD() local 10959 unsigned char temp; SetOEMLCDData2() local 11064 unsigned short index,temp,romptr=0; SetOEMLCDDelay() local 11187 unsigned short index,temp,romptr=0; SetOEMTVDelay() local 11219 unsigned short index,temp,romptr=0; SetOEMAntiFlicker() local 11247 unsigned short index,i,j,temp,romptr=0; SetOEMPhaseIncr() local 11287 unsigned short index,temp,i,j,romptr=0; SetOEMYFilter() local [all...] |
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
H A D | vl_bicubic_filter.c | 79 struct ureg_dst temp[11]; in create_frag_shader_cubic_interpolater() local 84 temp[i] = ureg_DECL_temporary(shader); in create_frag_shader_cubic_interpolater() 88 * |temp[0]| | 0 2 0 0 | |tex_a| in create_frag_shader_cubic_interpolater() 89 * |temp[1]| = | -1 0 1 0 |* |tex_b| in create_frag_shader_cubic_interpolater() 90 * |temp[2]| | 2 -5 4 -1 | |tex_c| in create_frag_shader_cubic_interpolater() 91 * |temp[3]| | -1 3 -3 1 | |tex_d| in create_frag_shader_cubic_interpolater() 93 ureg_MUL(shader, temp[0], tex_b, ureg_imm1f(shader, 2.0f)); in create_frag_shader_cubic_interpolater() 95 ureg_MUL(shader, temp[1], tex_a, ureg_imm1f(shader, -1.0f)); in create_frag_shader_cubic_interpolater() 96 ureg_MAD(shader, temp[1], tex_c, ureg_imm1f(shader, 1.0f), in create_frag_shader_cubic_interpolater() 97 ureg_src(temp[ in create_frag_shader_cubic_interpolater() [all...] |
/kernel/uniproton/src/core/kernel/timer/swtmr/ |
H A D | prt_swtmr.c | 62 struct TagSwTmrCtrl *temp = NULL; in OsSwTmrScanProcess() local 75 temp = swtmr->next; in OsSwTmrScanProcess() 86 swtmr = temp; in OsSwTmrScanProcess() 163 struct TagSwTmrCtrl *temp = NULL; in OsSwTmrStart() local 180 temp = (struct TagSwTmrCtrl *)listObject->next; in OsSwTmrStart() 181 while (temp != (struct TagSwTmrCtrl *)listObject) { in OsSwTmrStart() 182 if (UWROLLNUM(temp->idxRollNum) > UWROLLNUM(swtmr->idxRollNum)) { in OsSwTmrStart() 183 UWROLLNUMSUB(temp->idxRollNum, swtmr->idxRollNum); in OsSwTmrStart() 186 UWROLLNUMSUB(swtmr->idxRollNum, temp->idxRollNum); in OsSwTmrStart() 187 temp in OsSwTmrStart() [all...] |
/kernel/linux/linux-5.10/drivers/thermal/intel/int340x_thermal/ |
H A D | int340x_thermal_zone.c | 15 int *temp) in int340x_thermal_get_zone_temp() 22 return d->override_ops->get_temp(zone, temp); in int340x_thermal_get_zone_temp() 35 *temp = (unsigned long)conv_temp * 10; in int340x_thermal_get_zone_temp() 38 *temp = deci_kelvin_to_millicelsius(tmp); in int340x_thermal_get_zone_temp() 44 int trip, int *temp) in int340x_thermal_get_trip_temp() 50 return d->override_ops->get_trip_temp(zone, trip, temp); in int340x_thermal_get_trip_temp() 55 *temp = d->aux_trips[trip]; in int340x_thermal_get_trip_temp() 57 *temp = d->crt_temp; in int340x_thermal_get_trip_temp() 59 *temp = d->psv_temp; in int340x_thermal_get_trip_temp() 61 *temp in int340x_thermal_get_trip_temp() 14 int340x_thermal_get_zone_temp(struct thermal_zone_device *zone, int *temp) int340x_thermal_get_zone_temp() argument 43 int340x_thermal_get_trip_temp(struct thermal_zone_device *zone, int trip, int *temp) int340x_thermal_get_trip_temp() argument 116 int340x_thermal_set_trip_temp(struct thermal_zone_device *zone, int trip, int temp) int340x_thermal_set_trip_temp() argument 138 int340x_thermal_get_trip_hyst(struct thermal_zone_device *zone, int trip, int *temp) int340x_thermal_get_trip_hyst() argument 165 int340x_thermal_get_trip_config(acpi_handle handle, char *name, int *temp) int340x_thermal_get_trip_config() argument [all...] |