Home
last modified time | relevance | path

Searched refs:temp (Results 1351 - 1375 of 4433) sorted by relevance

1...<<51525354555657585960>>...178

/kernel/linux/build/test/moduletest/runtest/bin/enhancedf2fs_t/testcases/bin/
H A Denhancedf2fs07.sh45 temp=$(cat $_ssr_path/hc_enable)
56 echo $temp > $_ssr_path/hc_enable
/kernel/liteos_a/testsuites/kernel/sample/posix/pthread/smoke/
H A DIt_posix_pthread_006.c53 void *temp = NULL; in Testcase() local
70 ret = pthread_join(a, &temp); in Testcase()
H A DIt_posix_pthread_005.c54 UINTPTR temp; in Testcase() local
69 ret = pthread_join(newTh, (void *)&temp); in Testcase()
/kernel/liteos_a/testsuites/unittest/libc/posix/pthread/smoke/
H A DIt_posix_pthread_006.cpp46 void *temp; in Testcase() local
63 ret = pthread_join(a, &temp); in Testcase()
H A DIt_posix_pthread_005.cpp46 UINTPTR *temp; in Testcase() local
61 ret = pthread_join(newTh, (void **)&temp); in Testcase()
H A DIt_posix_pthread_020.cpp41 UINT32 temp = 9; in Testcase() local
49 ret = pthread_setspecific(g_key, &temp); // �����ɹ���key���� in Testcase()
/third_party/lzma/CS/7zip/Compress/LzmaAlone/Properties/
H A DResources.cs46 System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Resources", typeof(Resources).Assembly);
47 _resMgr = temp;
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DByteArray.cs73 byte temp = bytes[first]; in Reverse()
75 bytes[last] = temp; in Reverse()
/third_party/mesa3d/src/imagination/vulkan/pds/
H A Dpvr_pds.c55 /* Map PDS temp registers to the CDM values they contain Work-group IDs are only
273 * Gets the next temp address and moves the next temp pointer along.
275 * \param next_temp Pointer to the next temp address.
278 * \return The address of the next temp.
283 uint32_t temp; in pvr_pds_get_temps() local
285 /* Work out starting temp number. For even number of temps, start on a in pvr_pds_get_temps()
289 temp = *next_temp; in pvr_pds_get_temps()
291 temp = (*next_temp + 1) & ~1; in pvr_pds_get_temps()
294 *count += temp in pvr_pds_get_temps()
714 uint32_t temp = 0; pvr_pds_vertex_shader() local
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/radeon/
H A Dr100.c1780 uint32_t temp = idx_value >> 4; in r100_packet0_check() local
1782 track->textures[i].enabled = !!(temp & (1 << i)); in r100_packet0_check()
2815 uint32_t temp; in r100_vga_set_state() local
2817 temp = RREG32(RADEON_CONFIG_CNTL); in r100_vga_set_state()
2819 temp &= ~RADEON_CFG_VGA_RAM_EN; in r100_vga_set_state()
2820 temp |= RADEON_CFG_VGA_IO_DIS; in r100_vga_set_state()
2822 temp &= ~RADEON_CFG_VGA_IO_DIS; in r100_vga_set_state()
2824 WREG32(RADEON_CONFIG_CNTL, temp); in r100_vga_set_state()
3153 uint32_t temp, data, mem_trcd, mem_trp, mem_tras; in r100_bandwidth_update() local
3264 temp in r100_bandwidth_update()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/radeon/
H A Dr100.c1788 uint32_t temp = idx_value >> 4; in r100_packet0_check() local
1790 track->textures[i].enabled = !!(temp & (1 << i)); in r100_packet0_check()
2822 uint32_t temp; in r100_vga_set_state() local
2824 temp = RREG32(RADEON_CONFIG_CNTL); in r100_vga_set_state()
2826 temp &= ~RADEON_CFG_VGA_RAM_EN; in r100_vga_set_state()
2827 temp |= RADEON_CFG_VGA_IO_DIS; in r100_vga_set_state()
2829 temp &= ~RADEON_CFG_VGA_IO_DIS; in r100_vga_set_state()
2831 WREG32(RADEON_CONFIG_CNTL, temp); in r100_vga_set_state()
3150 uint32_t temp, data, mem_trcd, mem_trp, mem_tras; in r100_bandwidth_update() local
3261 temp in r100_bandwidth_update()
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_init.c796 __le32 temp; in qlcnic_validate_bootld() local
798 temp = *((__le32 *)&unirom[adapter->file_prd_off] + in qlcnic_validate_bootld()
800 idx = le32_to_cpu(temp); in qlcnic_validate_bootld()
831 __le32 temp; in qlcnic_validate_fw() local
833 temp = *((__le32 *)&unirom[adapter->file_prd_off] + in qlcnic_validate_fw()
835 idx = le32_to_cpu(temp); in qlcnic_validate_fw()
865 __le32 temp; in qlcnic_validate_product_offs() local
888 temp = *((__le32 *)&unirom[offs] + QLCNIC_UNI_FLAGS_OFF); in qlcnic_validate_product_offs()
889 flags = le32_to_cpu(temp); in qlcnic_validate_product_offs()
890 temp in qlcnic_validate_product_offs()
945 __le32 temp; qlcnic_get_data_desc() local
1042 __le32 temp; qlcnic_get_bios_version() local
[all...]
/kernel/linux/linux-5.10/drivers/power/supply/
H A Dmax17042_battery.c94 static int max17042_get_temperature(struct max17042_chip *chip, int *temp) in max17042_get_temperature() argument
104 *temp = sign_extend32(data, 15); in max17042_get_temperature()
107 *temp = *temp * 10 / 256; in max17042_get_temperature()
176 int temp, vavg, vbatt, ret; in max17042_get_battery_health() local
207 ret = max17042_get_temperature(chip, &temp); in max17042_get_battery_health()
211 if (temp < chip->pdata->temp_min) { in max17042_get_battery_health()
216 if (temp > chip->pdata->temp_max) { in max17042_get_battery_health()
440 int8_t temp; in max17042_set_property() local
449 temp in max17042_set_property()
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_init.c794 __le32 temp; in qlcnic_validate_bootld() local
796 temp = *((__le32 *)&unirom[adapter->file_prd_off] + in qlcnic_validate_bootld()
798 idx = le32_to_cpu(temp); in qlcnic_validate_bootld()
829 __le32 temp; in qlcnic_validate_fw() local
831 temp = *((__le32 *)&unirom[adapter->file_prd_off] + in qlcnic_validate_fw()
833 idx = le32_to_cpu(temp); in qlcnic_validate_fw()
863 __le32 temp; in qlcnic_validate_product_offs() local
886 temp = *((__le32 *)&unirom[offs] + QLCNIC_UNI_FLAGS_OFF); in qlcnic_validate_product_offs()
887 flags = le32_to_cpu(temp); in qlcnic_validate_product_offs()
888 temp in qlcnic_validate_product_offs()
943 __le32 temp; qlcnic_get_data_desc() local
1040 __le32 temp; qlcnic_get_bios_version() local
[all...]
/kernel/linux/linux-6.6/drivers/power/supply/
H A Dmax17042_battery.c94 static int max17042_get_temperature(struct max17042_chip *chip, int *temp) in max17042_get_temperature() argument
104 *temp = sign_extend32(data, 15); in max17042_get_temperature()
107 *temp = *temp * 10 / 256; in max17042_get_temperature()
176 int temp, vavg, vbatt, ret; in max17042_get_battery_health() local
207 ret = max17042_get_temperature(chip, &temp); in max17042_get_battery_health()
211 if (temp < chip->pdata->temp_min) { in max17042_get_battery_health()
216 if (temp > chip->pdata->temp_max) { in max17042_get_battery_health()
447 int8_t temp; in max17042_set_property() local
456 temp in max17042_set_property()
[all...]
/third_party/icu/tools/unicodetools/com/ibm/rbm/
H A DRBManager.java132 String[] temp = resDir.list(); in RBManager()
135 for (int i = 0; i < temp.length; i++) { in RBManager()
136 if (temp[i].startsWith(NLSbaseClass) && (temp[i].endsWith(NLSpostfix) in RBManager()
137 || temp[i].endsWith(NLSpostfix.toUpperCase()) || NLSpostfix.equals(""))) { in RBManager()
140 RBManagerGUI.debugMsg("Character is: " + temp[i].charAt(NLSbaseClass.length())); in RBManager()
141 if (temp[i].charAt(NLSbaseClass.length()) == '.' || temp[i].charAt(NLSbaseClass.length()) == '_') in RBManager()
149 for (int i = 0; i < temp.length; i++) { in RBManager()
150 if (temp[ in RBManager()
[all...]
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/
H A Dstv0367.c987 u32 trl_nomrate = 0, InternalFreq = 0, temp = 0, ifkhz = 0; in stv0367ter_algo() local
1076 temp = (int) in stv0367ter_algo()
1080 stv0367_writebits(state, F367TER_TRL_NOMRATE_LSB, temp % 2); in stv0367ter_algo()
1081 temp = temp / 2; in stv0367ter_algo()
1082 stv0367_writebits(state, F367TER_TRL_NOMRATE_HI, temp / 256); in stv0367ter_algo()
1083 stv0367_writebits(state, F367TER_TRL_NOMRATE_LO, temp % 256); in stv0367ter_algo()
1085 temp = stv0367_readbits(state, F367TER_TRL_NOMRATE_HI) * 512 + in stv0367ter_algo()
1088 temp = (int)(((1 << 17) * ter_state->bw * 1000) / (7 * (InternalFreq))); in stv0367ter_algo()
1089 stv0367_writebits(state, F367TER_GAIN_SRC_HI, temp / 25 in stv0367ter_algo()
2768 u32 regval = 0, temp = 0; stv0367cab_read_snr() local
[all...]
/kernel/linux/linux-6.6/drivers/media/dvb-frontends/
H A Dstv0367.c987 u32 trl_nomrate = 0, InternalFreq = 0, temp = 0, ifkhz = 0; in stv0367ter_algo() local
1076 temp = (int) in stv0367ter_algo()
1080 stv0367_writebits(state, F367TER_TRL_NOMRATE_LSB, temp % 2); in stv0367ter_algo()
1081 temp = temp / 2; in stv0367ter_algo()
1082 stv0367_writebits(state, F367TER_TRL_NOMRATE_HI, temp / 256); in stv0367ter_algo()
1083 stv0367_writebits(state, F367TER_TRL_NOMRATE_LO, temp % 256); in stv0367ter_algo()
1085 temp = stv0367_readbits(state, F367TER_TRL_NOMRATE_HI) * 512 + in stv0367ter_algo()
1088 temp = (int)(((1 << 17) * ter_state->bw * 1000) / (7 * (InternalFreq))); in stv0367ter_algo()
1089 stv0367_writebits(state, F367TER_GAIN_SRC_HI, temp / 25 in stv0367ter_algo()
2764 u32 regval = 0, temp = 0; stv0367cab_read_snr() local
[all...]
/kernel/linux/linux-6.6/drivers/hwmon/
H A Dlm90.c219 #define LM90_STATUS_RLOW BIT(3) /* remote low temp limit tripped */
220 #define LM90_STATUS_RHIGH BIT(4) /* remote high temp limit tripped */
221 #define LM90_STATUS_LLOW BIT(5) /* local low temp limit tripped */
222 #define LM90_STATUS_LHIGH BIT(6) /* local high temp limit tripped */
228 #define MAX6696_STATUS2_R2LOW BIT(3) /* remote2 low temp limit tripped */
229 #define MAX6696_STATUS2_R2HIGH BIT(4) /* remote2 high temp limit tripped */
415 u8 reg_local_ext; /* Extended local temp register (optional) */
721 u16 temp[TEMP_REG_NUM]; member
954 data->temp[LOCAL_CRIT] = val << 8; in lm90_update_limits()
959 data->temp[REMOTE_CRI in lm90_update_limits()
1352 int temp = lm90_temp_from_reg(data->flags, data->temp[index], lm90_get_temp() local
1432 int temp = lm90_get_temp(data, index, channel); lm90_get_temphyst() local
1439 int temp = lm90_get_temp(data, LOCAL_CRIT, 0); lm90_set_temphyst() local
2283 int temp; lm90_detect_maxim() local
[all...]
/foundation/graphic/graphic_3d/lume/LumeEngine/src/os/ohos/
H A Dohos_filesystem.cpp52 string temp; in ValidatePath() local
55 temp = path.substr(0, len - 1); in ValidatePath()
58 return string(temp.substr(1)); in ValidatePath()
/foundation/multimodalinput/input/tools/event_inject/src/
H A Dget_device_node.cpp118 std::string temp = item.substr(0, 1); in AnalyseDevices() local
121 if (temp == "N") { in AnalyseDevices()
126 if (temp == "H") { in AnalyseDevices()
/foundation/communication/dsoftbus/adapter/common/net/hdi/common/
H A Dsoftbus_adapter_wlan_extend.c110 WlanChannelInfo *temp = g_channelInfoList.buff; in SoftBusRequestWlanChannelInfo() local
112 temp->channelId = *channelId; in SoftBusRequestWlanChannelInfo()
113 temp++; in SoftBusRequestWlanChannelInfo()
/kernel/linux/linux-5.10/drivers/media/platform/mtk-jpeg/
H A Dmtk_jpeg_dec_parse.c34 u32 temp; in read_word_be() local
40 temp = byte << 8; in read_word_be()
44 *word = (u32)byte | temp; in read_word_be()
/kernel/linux/linux-5.10/drivers/iio/gyro/
H A Dadis16130.c76 u32 temp; in adis16130_read_raw() local
81 ret = adis16130_spi_read(indio_dev, chan->address, &temp); in adis16130_read_raw()
84 *val = temp; in adis16130_read_raw()
/kernel/linux/linux-5.10/drivers/hwmon/
H A Dsparx5-temp.c49 u32 attr, int channel, long *temp) in s5_read()
72 *temp = value; in s5_read()
98 HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT),
151 { .compatible = "microchip,sparx5-temp" },
159 .name = "sparx5-temp",
48 s5_read(struct device *dev, enum hwmon_sensor_types type, u32 attr, int channel, long *temp) s5_read() argument

Completed in 27 milliseconds

1...<<51525354555657585960>>...178