/third_party/vixl/src/ |
H A D | pool-manager-impl.h | 230 PoolObject<T> temp(label_base); in MustEmit() 231 temp.RestrictRange(reference->min_object_location_, in MustEmit() 233 temp.RestrictAlignment(reference->object_alignment_); in MustEmit() 235 temp.RestrictRange(existing_object->min_location_, in MustEmit() 237 temp.RestrictAlignment(existing_object->alignment_); in MustEmit() 242 T last_reachable = AlignDown(temp.max_location_, temp.alignment_); in MustEmit() 261 // Will temp be the last object in objects_? in MustEmit() 262 if (PoolObjectLessThan(last, temp)) { in MustEmit() 263 checkpoint = UpdateCheckpointForObject(checkpoint, &temp); in MustEmit() [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlxsw/ |
H A D | core_hwmon.c | 64 int temp, index; in mlxsw_hwmon_temp_show() local 72 dev_err(mlxsw_hwmon->bus_info->dev, "Failed to query temp sensor\n"); in mlxsw_hwmon_temp_show() 75 mlxsw_reg_mtmp_unpack(mtmp_pl, &temp, NULL, NULL); in mlxsw_hwmon_temp_show() 76 return sprintf(buf, "%d\n", temp); in mlxsw_hwmon_temp_show() 95 dev_err(mlxsw_hwmon->bus_info->dev, "Failed to query temp sensor\n"); in mlxsw_hwmon_temp_max_show() 131 dev_err(mlxsw_hwmon->bus_info->dev, "Failed to reset temp sensor history\n"); in mlxsw_hwmon_temp_rst_store() 251 int err, temp; in mlxsw_hwmon_module_temp_show() local 253 err = mlxsw_hwmon_module_temp_get(dev, attr, &temp); in mlxsw_hwmon_module_temp_show() 257 return sprintf(buf, "%d\n", temp); in mlxsw_hwmon_module_temp_show() 269 u16 temp; in mlxsw_hwmon_module_temp_fault_show() local 327 int err, temp; mlxsw_hwmon_module_temp_critical_show() local 362 int err, temp; mlxsw_hwmon_module_temp_emergency_show() local 401 int err, temp, emergency_temp, critic_temp; mlxsw_hwmon_temp_critical_alarm_show() local 428 int err, temp, emergency_temp; mlxsw_hwmon_temp_emergency_alarm_show() local [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlxsw/ |
H A D | core_hwmon.c | 74 int temp, index; in mlxsw_hwmon_temp_show() local 83 dev_err(mlxsw_hwmon->bus_info->dev, "Failed to query temp sensor\n"); in mlxsw_hwmon_temp_show() 86 mlxsw_reg_mtmp_unpack(mtmp_pl, &temp, NULL, NULL, NULL, NULL); in mlxsw_hwmon_temp_show() 87 return sprintf(buf, "%d\n", temp); in mlxsw_hwmon_temp_show() 108 dev_err(mlxsw_hwmon->bus_info->dev, "Failed to query temp sensor\n"); in mlxsw_hwmon_temp_max_show() 146 dev_err(mlxsw_hwmon->bus_info->dev, "Failed to reset temp sensor history\n"); in mlxsw_hwmon_temp_rst_store() 272 int err, temp; in mlxsw_hwmon_module_temp_show() local 274 err = mlxsw_hwmon_module_temp_get(dev, attr, &temp); in mlxsw_hwmon_module_temp_show() 278 return sprintf(buf, "%d\n", temp); in mlxsw_hwmon_module_temp_show() 291 u16 temp; in mlxsw_hwmon_module_temp_fault_show() local 352 int err, temp; mlxsw_hwmon_module_temp_critical_show() local 390 int err, temp; mlxsw_hwmon_module_temp_emergency_show() local 430 int err, temp, emergency_temp, critic_temp; mlxsw_hwmon_temp_critical_alarm_show() local 457 int err, temp, emergency_temp; mlxsw_hwmon_temp_emergency_alarm_show() local [all...] |
/third_party/node/src/ |
H A D | util-inl.h | 231 uint16_t temp; in SwapBytes16() local 232 for (size_t i = 0; i < nbytes; i += sizeof(temp)) { in SwapBytes16() 233 memcpy(&temp, &data[i], sizeof(temp)); in SwapBytes16() 234 temp = BSWAP_2(temp); in SwapBytes16() 235 memcpy(&data[i], &temp, sizeof(temp)); in SwapBytes16() 254 uint32_t temp; in SwapBytes32() local 255 for (size_t i = 0; i < nbytes; i += sizeof(temp)) { in SwapBytes32() 277 uint64_t temp; SwapBytes64() local [all...] |
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | radeon_program_tex.c | 63 unsigned temp = rc_find_free_temporary(&compiler->Base); in scale_texcoords() local 69 inst_mov->U.I.DstReg.Index = temp; in scale_texcoords() 78 inst->U.I.SrcReg[0].Index = temp; in scale_texcoords() 86 unsigned temp = rc_find_free_temporary(&compiler->Base); in projective_divide() local 91 inst_rcp->U.I.DstReg.Index = temp; in projective_divide() 102 inst_mul->U.I.DstReg.Index = temp; in projective_divide() 105 inst_mul->U.I.SrcReg[1].Index = temp; in projective_divide() 111 inst->U.I.SrcReg[0].Index = temp; in projective_divide() 167 /* Redirect TEX to a new temp. */ in radeonTransformTEX() 279 * MUL temp, texcoor in radeonTransformTEX() 301 unsigned temp = rc_find_free_temporary(c); radeonTransformTEX() local 410 unsigned temp = rc_find_free_temporary(c); radeonTransformTEX() local [all...] |
/kernel/linux/linux-5.10/sound/pci/mixart/ |
H A D | mixart_mixer.c | 1110 struct snd_kcontrol_new temp; in snd_mixart_create_mixer() local 1114 temp = mixart_control_analog_level; in snd_mixart_create_mixer() 1115 temp.name = "Master Playback Volume"; in snd_mixart_create_mixer() 1116 temp.private_value = 0; /* playback */ in snd_mixart_create_mixer() 1117 if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&temp, chip))) < 0) in snd_mixart_create_mixer() 1125 temp = mixart_control_analog_level; in snd_mixart_create_mixer() 1126 temp.name = "Master Capture Volume"; in snd_mixart_create_mixer() 1127 temp.private_value = 1; /* capture */ in snd_mixart_create_mixer() 1128 if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&temp, chip))) < 0) in snd_mixart_create_mixer() 1132 temp in snd_mixart_create_mixer() [all...] |
/kernel/linux/linux-6.6/sound/pci/mixart/ |
H A D | mixart_mixer.c | 1110 struct snd_kcontrol_new temp; in snd_mixart_create_mixer() local 1114 temp = mixart_control_analog_level; in snd_mixart_create_mixer() 1115 temp.name = "Master Playback Volume"; in snd_mixart_create_mixer() 1116 temp.private_value = 0; /* playback */ in snd_mixart_create_mixer() 1117 err = snd_ctl_add(chip->card, snd_ctl_new1(&temp, chip)); in snd_mixart_create_mixer() 1127 temp = mixart_control_analog_level; in snd_mixart_create_mixer() 1128 temp.name = "Master Capture Volume"; in snd_mixart_create_mixer() 1129 temp.private_value = 1; /* capture */ in snd_mixart_create_mixer() 1130 err = snd_ctl_add(chip->card, snd_ctl_new1(&temp, chip)); in snd_mixart_create_mixer() 1135 temp in snd_mixart_create_mixer() [all...] |
/kernel/linux/linux-5.10/arch/parisc/include/uapi/asm/ |
H A D | swab.h | 33 unsigned int temp; in __arch_swab32() local 37 : "=r" (x), "=&r" (temp) in __arch_swab32() 56 __u64 temp; in __arch_swab64() local 61 : "=r" (x), "=&r" (temp) in __arch_swab64()
|
/kernel/linux/linux-6.6/arch/powerpc/platforms/86xx/ |
H A D | common.c | 31 unsigned int temp; in mpc86xx_time_init() local 37 temp = mfspr(SPRN_HID0); in mpc86xx_time_init() 38 temp |= HID0_TBEN; in mpc86xx_time_init() 39 mtspr(SPRN_HID0, temp); in mpc86xx_time_init()
|
/kernel/liteos_a/testsuites/kernel/sample/posix/pthread/full/ |
H A D | It_posix_pthread_023.c | 61 UINTPTR temp = 1; in Testcase() local 70 ret = pthread_join(newTh, (void *)&temp); in Testcase() 72 ICUNIT_ASSERT_EQUAL(temp, 8, temp); // 8, here assert the result. in Testcase()
|
H A D | It_posix_pthread_029.c | 52 UINTPTR temp = 1; in Testcase() local 61 ret = pthread_join(newTh, (void *)&temp); in Testcase() 63 ICUNIT_ASSERT_EQUAL(temp, 8, temp); // 8, here assert the result. in Testcase()
|
H A D | It_posix_pthread_031.c | 55 UINTPTR temp = 1; in Testcase() local 64 ret = pthread_join(g_newTh, (void *)&temp); in Testcase() 66 ICUNIT_ASSERT_EQUAL(temp, 9, temp); // 9, here assert the result. in Testcase()
|
H A D | It_posix_pthread_028.c | 52 UINTPTR temp = 1; in Testcase() local 61 ret = pthread_join(newTh, (void *)&temp); in Testcase() 63 ICUNIT_ASSERT_EQUAL(temp, 9, temp); // 9, here assert the result. in Testcase()
|
/kernel/liteos_a/testsuites/kernel/sample/posix/pthread/smoke/ |
H A D | It_posix_pthread_004.c | 49 UINTPTR temp; in Testcase() local 67 ret = pthread_join(newTh, (void *)&temp); in Testcase() 69 ICUNIT_ASSERT_EQUAL(temp, 2, temp); // 2, here assert the result. in Testcase()
|
/kernel/liteos_m/testsuites/sample/posix/pthread/ |
H A D | It_posix_pthread_001.c | 47 UINTPTR temp; in Testcase() local 62 ret = pthread_join(newTh, (void *)&temp); in Testcase() 64 ICUNIT_ASSERT_EQUAL(temp, 0, temp); in Testcase()
|
/kernel/liteos_a/testsuites/unittest/libc/posix/pthread/smoke/ |
H A D | It_posix_pthread_004.cpp | 42 INTPTR *temp; in Testcase() local 61 ret = pthread_join(newTh, (void **)&temp); in Testcase() 63 ICUNIT_ASSERT_EQUAL((int)temp, 2, temp); in Testcase()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | implicitAnyDeclareFunctionExprWithoutFormalType.js | 9 var lambda5 = function temp() { return null; } function 11 var lambda7 = function temp() { return undefined; } 27 var lambda5 = function temp() { return null; };
29 var lambda7 = function temp() { return undefined; };
|
/kernel/linux/linux-5.10/drivers/net/phy/ |
H A D | aquantia_hwmon.c | 58 int temp = phy_read_mmd(phydev, MDIO_MMD_VEND1, reg); in aqr_hwmon_get() local 60 if (temp < 0) in aqr_hwmon_get() 61 return temp; in aqr_hwmon_get() 64 *value = (s16)temp * 1000 / 256; in aqr_hwmon_get() 71 int temp; in aqr_hwmon_set() local 76 temp = value * 256 / 1000; in aqr_hwmon_set() 78 /* temp is in s16 range and we're interested in lower 16 bits only */ in aqr_hwmon_set() 79 return phy_write_mmd(phydev, MDIO_MMD_VEND1, reg, (u16)temp); in aqr_hwmon_set()
|
/kernel/linux/linux-5.10/drivers/thermal/ |
H A D | thermal-generic-adc.c | 26 int temp, temp_hi, temp_lo, adc_hi, adc_lo; in gadc_thermal_adc_to_temp() local 38 temp = gti->lookup_table[0]; in gadc_thermal_adc_to_temp() 40 temp = gti->lookup_table[2 * (gti->nlookup_table - 1)]; in gadc_thermal_adc_to_temp() 48 temp = temp_hi + mult_frac(temp_lo - temp_hi, val - adc_hi, in gadc_thermal_adc_to_temp() 52 return temp; in gadc_thermal_adc_to_temp() 55 static int gadc_thermal_get_temp(void *data, int *temp) in gadc_thermal_get_temp() argument 66 *temp = gadc_thermal_adc_to_temp(gti, val); in gadc_thermal_get_temp()
|
/kernel/linux/linux-6.6/drivers/thermal/ |
H A D | thermal-generic-adc.c | 28 int temp, temp_hi, temp_lo, adc_hi, adc_lo; in gadc_thermal_adc_to_temp() local 40 temp = gti->lookup_table[0]; in gadc_thermal_adc_to_temp() 42 temp = gti->lookup_table[2 * (gti->nlookup_table - 1)]; in gadc_thermal_adc_to_temp() 50 temp = temp_hi + mult_frac(temp_lo - temp_hi, val - adc_hi, in gadc_thermal_adc_to_temp() 54 return temp; in gadc_thermal_adc_to_temp() 57 static int gadc_thermal_get_temp(struct thermal_zone_device *tz, int *temp) in gadc_thermal_get_temp() argument 67 *temp = gadc_thermal_adc_to_temp(gti, val); in gadc_thermal_get_temp()
|
/kernel/linux/linux-6.6/drivers/power/supply/ |
H A D | ab8500_bmdata.c | 10 /* Default: between this temp and AB8500_TEMP_UNDER charging is reduced */ 12 /* Default: between this temp and AB8500_TEMP_OVER charging is reduced */ 14 /* Default: over this temp, charging is stopped */ 52 { .temp = 40, .resistance = 40 /* 120 mOhm */ }, 53 { .temp = 30, .resistance = 45 /* 135 mOhm */ }, 54 { .temp = 20, .resistance = 55 /* 165 mOhm */ }, 55 { .temp = 10, .resistance = 77 /* 230 mOhm */ }, 56 { .temp = 00, .resistance = 108 /* 325 mOhm */ }, 57 { .temp = -10, .resistance = 158 /* 445 mOhm */ }, 58 { .temp [all...] |
/kernel/linux/linux-6.6/drivers/net/phy/ |
H A D | aquantia_hwmon.c | 58 int temp = phy_read_mmd(phydev, MDIO_MMD_VEND1, reg); in aqr_hwmon_get() local 60 if (temp < 0) in aqr_hwmon_get() 61 return temp; in aqr_hwmon_get() 64 *value = (s16)temp * 1000 / 256; in aqr_hwmon_get() 71 int temp; in aqr_hwmon_set() local 76 temp = value * 256 / 1000; in aqr_hwmon_set() 78 /* temp is in s16 range and we're interested in lower 16 bits only */ in aqr_hwmon_set() 79 return phy_write_mmd(phydev, MDIO_MMD_VEND1, reg, (u16)temp); in aqr_hwmon_set()
|
/kernel/linux/linux-6.6/drivers/hwmon/ |
H A D | tmp103.c | 55 u32 attr, int channel, long *temp) in tmp103_read() 79 *temp = tmp103_reg_to_mc(regval); in tmp103_read() 85 u32 attr, int channel, long temp) in tmp103_write() 101 temp = clamp_val(temp, -55000, 127000); in tmp103_write() 102 return regmap_write(regmap, reg, tmp103_mc_to_reg(temp)); in tmp103_write() 125 HWMON_CHANNEL_INFO(temp, 54 tmp103_read(struct device *dev, enum hwmon_sensor_types type, u32 attr, int channel, long *temp) tmp103_read() argument 84 tmp103_write(struct device *dev, enum hwmon_sensor_types type, u32 attr, int channel, long temp) tmp103_write() argument
|
/kernel/linux/linux-5.10/sound/isa/sb/ |
H A D | emu8000_pcm.c | 272 unsigned int temp; in setup_voice() local 303 temp = rec->panning[ch]; in setup_voice() 304 temp = (temp <<24) | ((unsigned int)rec->loop_start[ch] - 1); in setup_voice() 305 EMU8000_PSST_WRITE(hw, ch, temp); in setup_voice() 307 temp = 0; // chorus in setup_voice() 308 temp = (temp << 24) | ((unsigned int)rec->loop_start[ch] + rec->buf_size - 1); in setup_voice() 309 EMU8000_CSL_WRITE(hw, ch, temp); in setup_voice() 311 temp in setup_voice() 326 unsigned int temp, aux; start_voice() local [all...] |
/kernel/linux/linux-5.10/fs/cifs/ |
H A D | dir.c | 94 struct dentry *temp; in build_path_from_dentry_optional_prefix() local 117 for (temp = direntry; !IS_ROOT(temp);) { in build_path_from_dentry_optional_prefix() 118 namelen += (1 + temp->d_name.len); in build_path_from_dentry_optional_prefix() 119 temp = temp->d_parent; in build_path_from_dentry_optional_prefix() 120 if (temp == NULL) { in build_path_from_dentry_optional_prefix() 133 for (temp = direntry; !IS_ROOT(temp);) { in build_path_from_dentry_optional_prefix() 134 spin_lock(&temp in build_path_from_dentry_optional_prefix() [all...] |