Home
last modified time | relevance | path

Searched refs:temp (Results 676 - 700 of 4455) sorted by relevance

1...<<21222324252627282930>>...179

/foundation/distributeddatamgr/preferences/frameworks/js/napi/preferences/src/
H A Dnapi_preferences_helper.cpp49 napi_value temp = nullptr; in ParseParameters() local
50 napi_get_named_property(env, argv[1], NAME, &temp); in ParseParameters()
51 PRE_CHECK_RETURN_ERR_SET(temp && JSUtils::Convert2NativeValue(env, temp, context->name) == napi_ok, in ParseParameters()
57 temp = nullptr; in ParseParameters()
58 napi_get_named_property(env, argv[1], DATA_GROUP_ID, &temp); in ParseParameters()
60 napi_status status = napi_typeof(env, temp, &type); in ParseParameters()
62 PRE_CHECK_RETURN_ERR_SET(JSUtils::Convert2NativeValue(env, temp, context->dataGroupId) == napi_ok, in ParseParameters()
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/pm/powerplay/hwmgr/
H A Dvega20_thermal.c219 int temp = 0; in vega20_thermal_get_temperature() local
221 temp = RREG32_SOC15(THM, 0, mmCG_MULT_THERMAL_STATUS); in vega20_thermal_get_temperature()
223 temp = (temp & CG_MULT_THERMAL_STATUS__CTF_TEMP_MASK) >> in vega20_thermal_get_temperature()
226 temp = temp & 0x1ff; in vega20_thermal_get_temperature()
228 temp *= PP_TEMPERATURE_UNITS_PER_CENTIGRADES; in vega20_thermal_get_temperature()
229 return temp; in vega20_thermal_get_temperature()
/kernel/linux/linux-5.10/drivers/scsi/cxlflash/
H A Dlunmgt.c86 struct llun_info *lli, *temp; in lookup_local() local
88 list_for_each_entry_safe(lli, temp, &cfg->lluns, list) in lookup_local()
103 struct glun_info *gli, *temp; in lookup_global() local
105 list_for_each_entry_safe(gli, temp, &global.gluns, list) in lookup_global()
180 struct llun_info *lli, *temp; in cxlflash_term_local_luns() local
183 list_for_each_entry_safe(lli, temp, &cfg->lluns, list) { in cxlflash_term_local_luns()
205 struct glun_info *gli, *temp; in cxlflash_term_global_luns() local
208 list_for_each_entry_safe(gli, temp, &global.gluns, list) { in cxlflash_term_global_luns()
/kernel/linux/linux-5.10/drivers/s390/crypto/
H A Dzcrypt_cca_key.h116 unsigned char *temp; in zcrypt_type6_mex_key_en() local
134 temp = key->exponent; in zcrypt_type6_mex_key_en()
135 if (copy_from_user(temp, mex->b_key, mex->inputdatalength)) in zcrypt_type6_mex_key_en()
139 if (temp[i]) in zcrypt_type6_mex_key_en()
143 memmove(temp, temp + i, mex->inputdatalength - i); in zcrypt_type6_mex_key_en()
144 temp += mex->inputdatalength - i; in zcrypt_type6_mex_key_en()
146 if (copy_from_user(temp, mex->n_modulus, mex->inputdatalength)) in zcrypt_type6_mex_key_en()
/kernel/linux/linux-6.6/drivers/scsi/cxlflash/
H A Dlunmgt.c86 struct llun_info *lli, *temp; in lookup_local() local
88 list_for_each_entry_safe(lli, temp, &cfg->lluns, list) in lookup_local()
103 struct glun_info *gli, *temp; in lookup_global() local
105 list_for_each_entry_safe(gli, temp, &global.gluns, list) in lookup_global()
180 struct llun_info *lli, *temp; in cxlflash_term_local_luns() local
183 list_for_each_entry_safe(lli, temp, &cfg->lluns, list) { in cxlflash_term_local_luns()
205 struct glun_info *gli, *temp; in cxlflash_term_global_luns() local
208 list_for_each_entry_safe(gli, temp, &global.gluns, list) { in cxlflash_term_global_luns()
/kernel/linux/linux-6.6/drivers/thermal/st/
H A Dst_thermal.c17 #define mcelsius(temp) ((temp) * 1000)
112 unsigned int temp; in st_thermal_get_temp() local
122 ret = regmap_field_read(sensor->temp_data, &temp); in st_thermal_get_temp()
126 temp += sensor->cdata->temp_adjust_val; in st_thermal_get_temp()
127 temp = mcelsius(temp); in st_thermal_get_temp()
129 *temperature = temp; in st_thermal_get_temp()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DLocaleDistanceTest.java90 long temp = System.nanoTime(); in testTiming()
93 likelyTime += System.nanoTime()-temp; in testTiming()
95 temp = System.nanoTime(); in testTiming()
98 oldTimeMinusLikely += System.nanoTime()-temp; in testTiming()
100 temp = System.nanoTime(); in testTiming()
103 newLikelyTime += System.nanoTime()-temp; in testTiming()
105 temp = System.nanoTime(); in testTiming()
108 newTimeMinusLikely += System.nanoTime()-temp; in testTiming()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DLocaleDistanceTest.java87 long temp = System.nanoTime(); in testTiming()
90 likelyTime += System.nanoTime()-temp; in testTiming()
92 temp = System.nanoTime(); in testTiming()
95 oldTimeMinusLikely += System.nanoTime()-temp; in testTiming()
97 temp = System.nanoTime(); in testTiming()
100 newLikelyTime += System.nanoTime()-temp; in testTiming()
102 temp = System.nanoTime(); in testTiming()
105 newTimeMinusLikely += System.nanoTime()-temp; in testTiming()
/third_party/skia/third_party/externals/angle2/scripts/
H A Dgenerate_new_renderer.py115 temp = re.sub(r'\n ', '\n', impl_stub)
116 return temp + ' override;\n'
246 temp = re.sub(r'virtual ', '', impl_stub) variable
247 impl_method_declarations += generate_impl_declaration(temp)
248 impl_method_definitions += generate_impl_definition(temp, typed_impl)
253 temp = re.sub(r'virtual ', '', impl_stub) variable
254 private_impl_method_declarations += generate_impl_declaration(temp)
255 impl_method_definitions += generate_impl_definition(temp, typed_impl)
/third_party/icu/icu4c/source/common/
H A Dlocdspnm.cpp628 UnicodeString temp; in localeDisplayName() local
632 UnicodeString script_str = scriptDisplayName(script, temp, true); in localeDisplayName()
640 UnicodeString region_str = regionDisplayName(country, temp, true); in localeDisplayName()
648 UnicodeString variant_str = variantDisplayName(variant, temp, true); in localeDisplayName()
669 keyDisplayName(key, temp, true); in localeDisplayName()
670 temp.findAndReplace(formatOpenParen, formatReplaceOpenParen); in localeDisplayName()
671 temp.findAndReplace(formatCloseParen, formatReplaceCloseParen); in localeDisplayName()
677 } else if (temp != UnicodeString(key, -1, US_INV)) { in localeDisplayName()
679 keyTypeFormat.format(temp, temp2, temp3, status); in localeDisplayName()
682 appendWithSep(resultRemainder, temp) in localeDisplayName()
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dlocdspnm.cpp628 UnicodeString temp; in localeDisplayName() local
632 UnicodeString script_str = scriptDisplayName(script, temp, true); in localeDisplayName()
640 UnicodeString region_str = regionDisplayName(country, temp, true); in localeDisplayName()
648 UnicodeString variant_str = variantDisplayName(variant, temp, true); in localeDisplayName()
669 keyDisplayName(key, temp, true); in localeDisplayName()
670 temp.findAndReplace(formatOpenParen, formatReplaceOpenParen); in localeDisplayName()
671 temp.findAndReplace(formatCloseParen, formatReplaceCloseParen); in localeDisplayName()
677 } else if (temp != UnicodeString(key, -1, US_INV)) { in localeDisplayName()
679 keyTypeFormat.format(temp, temp2, temp3, status); in localeDisplayName()
682 appendWithSep(resultRemainder, temp) in localeDisplayName()
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dlocdspnm.cpp628 UnicodeString temp; in localeDisplayName() local
632 UnicodeString script_str = scriptDisplayName(script, temp, TRUE); in localeDisplayName()
640 UnicodeString region_str = regionDisplayName(country, temp, TRUE); in localeDisplayName()
648 UnicodeString variant_str = variantDisplayName(variant, temp, TRUE); in localeDisplayName()
669 keyDisplayName(key, temp, TRUE); in localeDisplayName()
670 temp.findAndReplace(formatOpenParen, formatReplaceOpenParen); in localeDisplayName()
671 temp.findAndReplace(formatCloseParen, formatReplaceCloseParen); in localeDisplayName()
677 } else if (temp != UnicodeString(key, -1, US_INV)) { in localeDisplayName()
679 keyTypeFormat.format(temp, temp2, temp3, status); in localeDisplayName()
682 appendWithSep(resultRemainder, temp) in localeDisplayName()
[all...]
/kernel/linux/linux-5.10/drivers/i2c/busses/
H A Di2c-piix4.c170 unsigned char temp; in piix4_setup() local
218 pci_read_config_byte(PIIX4_dev, SMBHSTCFG, &temp); in piix4_setup()
223 pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp & 0xfe); in piix4_setup()
225 pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp | 0x01); in piix4_setup()
228 } else if ((temp & 1) == 0) { in piix4_setup()
239 temp | 1); in piix4_setup()
250 if (((temp & 0x0E) == 8) || ((temp & 0x0E) == 2)) in piix4_setup()
252 else if ((temp & 0x0E) == 0) in piix4_setup()
258 pci_read_config_byte(PIIX4_dev, SMBREV, &temp); in piix4_setup()
441 int temp; piix4_transaction() local
[all...]
H A Di2c-nforce2.c138 unsigned char temp; in nforce2_abort() local
145 temp = inb_p(NVIDIA_SMB_STATUS_ABRT); in nforce2_abort()
146 } while (!(temp & NVIDIA_SMB_STATUS_ABRT_STS) && in nforce2_abort()
148 if (!(temp & NVIDIA_SMB_STATUS_ABRT_STS)) in nforce2_abort()
157 unsigned char temp; in nforce2_check_status() local
161 temp = inb_p(NVIDIA_SMB_STS); in nforce2_check_status()
162 } while ((!temp) && (timeout++ < MAX_TIMEOUT)); in nforce2_check_status()
170 if (!(temp & NVIDIA_SMB_STS_DONE) || (temp & NVIDIA_SMB_STS_STATUS)) { in nforce2_check_status()
171 dev_dbg(&adap->dev, "Transaction failed (0x%02x)!\n", temp); in nforce2_check_status()
[all...]
/kernel/linux/linux-5.10/drivers/video/fbdev/aty/
H A Dmach64_gx.c210 u32 gModeReg, devSetupRegA, temp, mask; in aty_set_dac_ATI68860_B() local
244 temp = aty_ld_8(DAC_CNTL, par); in aty_set_dac_ATI68860_B()
245 aty_st_8(DAC_CNTL, (temp & ~DAC_EXT_SEL_RS2) | DAC_EXT_SEL_RS3, in aty_set_dac_ATI68860_B()
252 temp = aty_ld_8(DAC_CNTL, par); in aty_set_dac_ATI68860_B()
253 aty_st_8(DAC_CNTL, temp | DAC_EXT_SEL_RS2 | DAC_EXT_SEL_RS3, par); in aty_set_dac_ATI68860_B()
267 temp = aty_ld_8(DAC_REGS, par); in aty_set_dac_ATI68860_B()
268 aty_st_8(DAC_REGS, (devSetupRegA | mask) | (temp & A860_DELAY_L), in aty_set_dac_ATI68860_B()
270 temp = aty_ld_8(DAC_CNTL, par); in aty_set_dac_ATI68860_B()
271 aty_st_8(DAC_CNTL, (temp & ~(DAC_EXT_SEL_RS2 | DAC_EXT_SEL_RS3)), in aty_set_dac_ATI68860_B()
504 u32 temp, temp in aty_var_to_pll_1703() local
743 u32 temp, tempB; aty_var_to_pll_408() local
[all...]
/kernel/linux/linux-6.6/drivers/video/fbdev/aty/
H A Dmach64_gx.c210 u32 gModeReg, devSetupRegA, temp, mask; in aty_set_dac_ATI68860_B() local
244 temp = aty_ld_8(DAC_CNTL, par); in aty_set_dac_ATI68860_B()
245 aty_st_8(DAC_CNTL, (temp & ~DAC_EXT_SEL_RS2) | DAC_EXT_SEL_RS3, in aty_set_dac_ATI68860_B()
252 temp = aty_ld_8(DAC_CNTL, par); in aty_set_dac_ATI68860_B()
253 aty_st_8(DAC_CNTL, temp | DAC_EXT_SEL_RS2 | DAC_EXT_SEL_RS3, par); in aty_set_dac_ATI68860_B()
267 temp = aty_ld_8(DAC_REGS, par); in aty_set_dac_ATI68860_B()
268 aty_st_8(DAC_REGS, (devSetupRegA | mask) | (temp & A860_DELAY_L), in aty_set_dac_ATI68860_B()
270 temp = aty_ld_8(DAC_CNTL, par); in aty_set_dac_ATI68860_B()
271 aty_st_8(DAC_CNTL, (temp & ~(DAC_EXT_SEL_RS2 | DAC_EXT_SEL_RS3)), in aty_set_dac_ATI68860_B()
502 u32 temp, temp in aty_var_to_pll_1703() local
741 u32 temp, tempB; aty_var_to_pll_408() local
[all...]
/kernel/linux/linux-6.6/drivers/i2c/busses/
H A Di2c-piix4.c245 unsigned char temp; in piix4_setup() local
293 pci_read_config_byte(PIIX4_dev, SMBHSTCFG, &temp); in piix4_setup()
298 pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp & 0xfe); in piix4_setup()
300 pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp | 0x01); in piix4_setup()
303 } else if ((temp & 1) == 0) { in piix4_setup()
314 temp | 1); in piix4_setup()
325 if (((temp & 0x0E) == 8) || ((temp & 0x0E) == 2)) in piix4_setup()
327 else if ((temp & 0x0E) == 0) in piix4_setup()
333 pci_read_config_byte(PIIX4_dev, SMBREV, &temp); in piix4_setup()
542 int temp; piix4_transaction() local
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/net/forwarding/
H A Dbridge_mdb_max.sh411 ${CFG}_entries_add "$locus" temp 5
418 ${CFG}_entries_del "$locus" temp 5
499 ${CFG}_entries_add "$locus1" temp 5 111
510 ${CFG}_entries_add "$locus2" temp 5 112
521 ${CFG}_entries_del "$locus1" temp 5 111
523 ${CFG}_entries_del "$locus2" temp 5 112
580 ${CFG}_entries_add "$locus" temp 5
582 ${CFG}_entries_del "$locus" temp 5
759 ${CFG}_entries_add "$locus" temp 5 111
765 msg=$(${CFG}_entries_add "$locus" temp
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_fspp.c90 temp = (src[x + pos] + (d[pos] >> log2_scale)) >> (6 - log2_scale); \ in store_slice_c()
92 if (temp & 0x100) temp = ~(temp >> 31); \ in store_slice_c()
93 dst[x + pos] = temp; in store_slice_c()
98 int temp; in store_slice_c() local
120 temp = (src[x + pos] + src[x + pos + 16 * src_stride] + (d[pos] >> log2_scale)) >> (6 - log2_scale); \ in store_slice2_c()
122 if (temp & 0x100) temp = ~(temp >> 3 in store_slice2_c()
128 int temp; store_slice2_c() local
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dnfsubs.cpp549 UnicodeString temp; in toString() local
551 ruleSet->getName(temp); in toString()
553 numberFormat->toPattern(temp); in toString()
555 text.append(temp); in toString()
592 UnicodeString temp; in doSubstitution() local
593 numberFormat->format(numberToFormat, temp, status); in doSubstitution()
594 toInsertInto.insert(_pos + this->pos, temp); in doSubstitution()
605 UnicodeString temp; in doSubstitution() local
606 numberFormat->format(numberToFormat, temp, status); in doSubstitution()
607 toInsertInto.insert(_pos + this->pos, temp); in doSubstitution()
647 UnicodeString temp; doSubstitution() local
1152 Formattable temp; doParse() local
1250 UnicodeString temp; doSubstitution() local
1278 Formattable temp; doParse() local
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dnfsubs.cpp567 UnicodeString temp; in toString() local
569 ruleSet->getName(temp); in toString()
571 numberFormat->toPattern(temp); in toString()
573 text.append(temp); in toString()
610 UnicodeString temp; in doSubstitution() local
611 numberFormat->format(numberToFormat, temp, status); in doSubstitution()
612 toInsertInto.insert(_pos + this->pos, temp); in doSubstitution()
623 UnicodeString temp; in doSubstitution() local
624 numberFormat->format(numberToFormat, temp, status); in doSubstitution()
625 toInsertInto.insert(_pos + this->pos, temp); in doSubstitution()
665 UnicodeString temp; doSubstitution() local
1170 Formattable temp; doParse() local
1268 UnicodeString temp; doSubstitution() local
1296 Formattable temp; doParse() local
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnfsubs.cpp549 UnicodeString temp; in toString() local
551 ruleSet->getName(temp); in toString()
553 numberFormat->toPattern(temp); in toString()
555 text.append(temp); in toString()
592 UnicodeString temp; in doSubstitution() local
593 numberFormat->format(numberToFormat, temp, status); in doSubstitution()
594 toInsertInto.insert(_pos + this->pos, temp); in doSubstitution()
605 UnicodeString temp; in doSubstitution() local
606 numberFormat->format(numberToFormat, temp, status); in doSubstitution()
607 toInsertInto.insert(_pos + this->pos, temp); in doSubstitution()
647 UnicodeString temp; doSubstitution() local
1152 Formattable temp; doParse() local
1250 UnicodeString temp; doSubstitution() local
1278 Formattable temp; doParse() local
[all...]
/third_party/node/deps/v8/src/execution/arm64/
H A Dsimulator-logic-arm64.cc627 SimVRegister temp; in cmp() local
628 LogicVRegister imm_reg = dup_immediate(vform, temp, imm); in cmp()
686 SimVRegister temp; in mla() local
687 mul(vform, temp, src1, src2); in mla()
688 add(vform, dst, dst, temp); in mla()
695 SimVRegister temp; in mls() local
696 mul(vform, temp, src1, src2); in mls()
697 sub(vform, dst, dst, temp); in mls()
714 SimVRegister temp; in mul() local
716 return mul(vform, dst, src1, dup_element(indexform, temp, src in mul()
722 SimVRegister temp; mla() local
730 SimVRegister temp; mls() local
738 SimVRegister temp; smull() local
747 SimVRegister temp; smull2() local
756 SimVRegister temp; umull() local
765 SimVRegister temp; umull2() local
774 SimVRegister temp; smlal() local
783 SimVRegister temp; smlal2() local
792 SimVRegister temp; umlal() local
801 SimVRegister temp; umlal2() local
810 SimVRegister temp; smlsl() local
819 SimVRegister temp; smlsl2() local
828 SimVRegister temp; umlsl() local
837 SimVRegister temp; umlsl2() local
846 SimVRegister temp; sqdmull() local
855 SimVRegister temp; sqdmull2() local
864 SimVRegister temp; sqdmlal() local
873 SimVRegister temp; sqdmlal2() local
882 SimVRegister temp; sqdmlsl() local
891 SimVRegister temp; sqdmlsl2() local
900 SimVRegister temp; sqdmulh() local
908 SimVRegister temp; sqrdmulh() local
1342 SimVRegister temp; shl() local
1412 SimVRegister temp; sqshl() local
1420 SimVRegister temp; uqshl() local
1428 SimVRegister temp; sqshlu() local
1459 SimVRegister temp; ushr() local
1467 SimVRegister temp; sshr() local
1474 SimVRegister temp; ssra() local
1481 SimVRegister temp; usra() local
1488 SimVRegister temp; srsra() local
1495 SimVRegister temp; ursra() local
1850 SimVRegister temp; saba() local
1860 SimVRegister temp; uaba() local
2110 SimVRegister temp; shrn() local
2119 SimVRegister temp; shrn2() local
2128 SimVRegister temp; rshrn() local
2137 SimVRegister temp; rshrn2() local
2251 SimVRegister temp; sqshrn() local
2260 SimVRegister temp; sqshrn2() local
2269 SimVRegister temp; sqrshrn() local
2278 SimVRegister temp; sqrshrn2() local
2287 SimVRegister temp; sqshrun() local
2296 SimVRegister temp; sqshrun2() local
2305 SimVRegister temp; sqrshrun() local
2314 SimVRegister temp; sqrshrun2() local
2344 SimVRegister temp; uaddw() local
2353 SimVRegister temp; uaddw2() local
2382 SimVRegister temp; saddw() local
2391 SimVRegister temp; saddw2() local
2420 SimVRegister temp; usubw() local
2429 SimVRegister temp; usubw2() local
2458 SimVRegister temp; ssubw() local
2467 SimVRegister temp; ssubw2() local
2676 SimVRegister temp; sqdmlal() local
2684 SimVRegister temp; sqdmlal2() local
2692 SimVRegister temp; sqdmlsl() local
2700 SimVRegister temp; sqdmlsl2() local
2708 SimVRegister temp; sqdmull() local
2716 SimVRegister temp; sqdmull2() local
2757 SimVRegister temp; addhn() local
2758 add(VectorFormatDoubleWidth(vform), temp, src1, src2); addhn() local
2766 SimVRegister temp; addhn2() local
2775 SimVRegister temp; raddhn() local
2776 add(VectorFormatDoubleWidth(vform), temp, src1, src2); raddhn() local
2784 SimVRegister temp; raddhn2() local
2793 SimVRegister temp; subhn() local
2794 sub(VectorFormatDoubleWidth(vform), temp, src1, src2); subhn() local
2802 SimVRegister temp; subhn2() local
2811 SimVRegister temp; rsubhn() local
2812 sub(VectorFormatDoubleWidth(vform), temp, src1, src2); rsubhn() local
2820 SimVRegister temp; rsubhn2() local
3280 SimVRegister temp; fnmul() local
3446 SimVRegister temp; fcmp_zero() local
3582 SimVRegister temp; fabd() local
3669 SimVRegister temp; fmul() local
3685 SimVRegister temp; fmla() local
3701 SimVRegister temp; fmls() local
3717 SimVRegister temp; fmulx() local
[all...]
/kernel/linux/linux-5.10/drivers/char/
H A Dnwflash.c149 int nBlock, temp, rc; in flash_write() local
187 temp = ((int) (p + count) >> 16) - nBlock + 1; in flash_write()
193 temp -= 1; in flash_write()
197 "starting at %d.\n", temp, nBlock); in flash_write()
199 for (; temp; temp--, nBlock++) { in flash_write()
297 int temp, temp1; in erase_block() local
382 for (temp = 0; temp < 16 * 1024; temp in erase_block()
[all...]
/kernel/linux/linux-5.10/drivers/iio/adc/
H A Dmcp3422.c113 u32 temp; in mcp3422_read() local
117 temp = get_unaligned_be24(&buf[0]); in mcp3422_read()
121 temp = get_unaligned_be16(&buf[0]); in mcp3422_read()
125 *value = sign_extend32(temp, mcp3422_sign_extend[sample_rate]); in mcp3422_read()
199 u8 temp; in mcp3422_write_raw() local
227 temp = MCP3422_SRATE_240; in mcp3422_write_raw()
230 temp = MCP3422_SRATE_60; in mcp3422_write_raw()
233 temp = MCP3422_SRATE_15; in mcp3422_write_raw()
238 temp = MCP3422_SRATE_3; in mcp3422_write_raw()
247 config |= MCP3422_SAMPLE_RATE_VALUE(temp); in mcp3422_write_raw()
[all...]

Completed in 27 milliseconds

1...<<21222324252627282930>>...179