/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_compile_ff_gs.c | 57 struct brw_reg temp; member 104 c->reg.temp = retype(brw_vec8_grf(i++, 0), BRW_REGISTER_TYPE_UD); in brw_ff_gs_alloc_regs() 225 (flags & BRW_URB_WRITE_ALLOCATE) ? c->reg.temp in brw_ff_gs_emit_vue() 240 get_element_ud(c->reg.temp, 0)); in brw_ff_gs_emit_vue() 260 c->reg.temp, in brw_ff_gs_ff_sync() 267 get_element_ud(c->reg.temp, 0)); in brw_ff_gs_ff_sync() 390 brw_ADD(p, get_element_ud(c->reg.temp, 0), in gfx6_sol_program() 393 get_element_ud(c->reg.temp, 0), in gfx6_sol_program() 418 /* Get primitive type into temp register. */ in gfx6_sol_program() 419 brw_AND(p, get_element_ud(c->reg.temp, in gfx6_sol_program() [all...] |
/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | glX_XML.py | 284 temp = [ [], [], [] ] 289 temp[2].append( param ) 291 temp[0].append( param ) 293 temp[1].append( param ) 295 parameters = temp[0] 296 parameters.extend( temp[1] ) 298 parameters.extend( temp[2] ) 303 temp = [] 305 temp.append( self.parameters_by_name[ name ] ) 307 return iter(temp) [all...] |
/third_party/node/deps/uv/src/unix/ |
H A D | tcp.c | 477 uv_os_sock_t temp[2]; in uv_socketpair() local 486 if (socketpair(AF_UNIX, flags, protocol, temp)) in uv_socketpair() 490 fds[0] = temp[0]; in uv_socketpair() 491 fds[1] = temp[1]; in uv_socketpair() 495 if (socketpair(AF_UNIX, type, protocol, temp)) in uv_socketpair() 498 if ((err = uv__cloexec(temp[0], 1))) in uv_socketpair() 500 if ((err = uv__cloexec(temp[1], 1))) in uv_socketpair() 505 if ((err = uv__nonblock(temp[0], 1))) in uv_socketpair() 508 if ((err = uv__nonblock(temp[1], 1))) in uv_socketpair() 511 fds[0] = temp[ in uv_socketpair() [all...] |
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/config/ |
H A D | audio_usage_strategy_parser.cpp | 117 size_t temp = 0; in split() local 120 pos = line.find(sep, temp); in split() 124 buf.push_back(line.substr(temp, pos-temp)); in split() 125 temp = pos + sep.length(); in split() 127 buf.push_back(line.substr(temp, line.length())); in split()
|
H A D | audio_strategy_router_parser.cpp | 123 size_t temp = 0; in split() local 126 pos = line.find(sep, temp); in split() 130 buf.push_back(line.substr(temp, pos-temp)); in split() 131 temp = pos + sep.length(); in split() 133 buf.push_back(line.substr(temp, line.length())); in split()
|
/foundation/communication/netstack/utils/profiler_utils/src/ |
H A D | i_network_message.cpp | 109 auto temp = CommonUtils::Split(s, " "); in GetReasonParse() local 110 if (temp.size() < STATUS_LINE_SIZE) { in GetReasonParse() 113 if (temp.size() == STATUS_LINE_SIZE) { in GetReasonParse() 114 resVec.emplace_back(temp[STATUS_LINE_SIZE - 1]); in GetReasonParse() 117 for (size_t i = STATUS_LINE_SIZE - 1; i < temp.size(); ++i) { in GetReasonParse() 118 res += temp[i] + " "; in GetReasonParse()
|
/kernel/linux/linux-5.10/arch/arm/mach-mmp/ |
H A D | pm-mmp2.c | 160 int temp; in mmp2_pm_enter() local 162 temp = __raw_readl(MMP2_ICU_INT4_MASK); in mmp2_pm_enter() 163 if (temp & (1 << 1)) { in mmp2_pm_enter() 168 temp = __raw_readl(APMU_SRAM_PWR_DWN); in mmp2_pm_enter() 169 temp |= ((1 << 19) | (1 << 18)); in mmp2_pm_enter() 170 __raw_writel(temp, APMU_SRAM_PWR_DWN); in mmp2_pm_enter()
|
/kernel/linux/linux-5.10/arch/s390/kernel/syscalls/ |
H A D | syscalltbl | 20 local temp=$(mktemp ${TMPDIR:-/tmp}/syscalltbl-common.XXXXXXXXX) 54 ) >> $temp 59 if ! cat $temp |cut -f1 |uniq -d 2>&1; then 60 echo "Error: generated system call table contains duplicate entries: $temp" >&2 80 done < $temp 81 rm $temp
|
/kernel/linux/linux-6.6/arch/s390/kernel/syscalls/ |
H A D | syscalltbl | 20 local temp=$(mktemp ${TMPDIR:-/tmp}/syscalltbl-common.XXXXXXXXX) 54 ) >> $temp 59 if ! cat $temp |cut -f1 |uniq -d 2>&1; then 60 echo "Error: generated system call table contains duplicate entries: $temp" >&2 80 done < $temp 81 rm $temp
|
/kernel/linux/linux-6.6/drivers/thermal/ |
H A D | thermal_helpers.c | 73 * @temp: a valid pointer to where to store the resulting temperature. 76 * temperature and fill @temp. 84 int __thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp) in __thermal_zone_get_temp() argument 93 ret = tz->ops->get_temp(tz, temp); in __thermal_zone_get_temp() 109 if (!ret && *temp < crit_temp) in __thermal_zone_get_temp() 110 *temp = tz->emul_temperature; in __thermal_zone_get_temp() 122 * @temp: a valid pointer to where to store the resulting temperature. 125 * temperature and fill @temp. 129 int thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp) in thermal_zone_get_temp() argument 144 ret = __thermal_zone_get_temp(tz, temp); in thermal_zone_get_temp() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | destructuringVariableDeclaration1ES5iterable.js | 10 var temp = { t1: true, t2: "false" }; 11 var [b2 = 3, b3 = true, b4 = temp] = [3, false, { t1: false, t2: "hello" }]; 12 var [b5 = 3, b6 = true, b7 = temp] = [undefined, undefined, undefined]; 77 var temp = { t1: true, t2: "false" };
78 var _g = __read([3, false, { t1: false, t2: "hello" }], 3), _h = _g[0], b2 = _h === void 0 ? 3 : _h, _j = _g[1], b3 = _j === void 0 ? true : _j, _k = _g[2], b4 = _k === void 0 ? temp : _k;
79 var _l = __read([undefined, undefined, undefined], 3), _m = _l[0], b5 = _m === void 0 ? 3 : _m, _o = _l[1], b6 = _o === void 0 ? true : _o, _p = _l[2], b7 = _p === void 0 ? temp : _p;
|
/foundation/graphic/graphic_3d/lume/LumeBase/api/base/math/ |
H A D | vector.h | 172 const Vec2 temp = *this - rhs; in operator ==() local 173 const float sqmgt = temp.x * temp.x + temp.y * temp.y; in operator ==() 957 const Vec3 temp = *this - rhs; in operator ==() local 958 const float sqmgt = temp.x * temp.x + temp.y * temp in operator ==() 1113 const Vec4 temp = *this - rhs; operator ==() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_vaguedenoiser.c | 276 static void invert_step(const float *input, float *output, float *temp, const int size, VagueDenoiserContext *s) in invert_step() argument 283 memcpy(temp + NPAD, input + NPAD, low_size * sizeof(float)); in invert_step() 286 symmetric_extension(temp, low_size, left_ext, right_ext); in invert_step() 292 const float a = temp[i] * synthesis_low[0]; in invert_step() 293 const float b = temp[i] * synthesis_low[1]; in invert_step() 294 const float c = temp[i] * synthesis_low[2]; in invert_step() 295 const float d = temp[i] * synthesis_low[3]; in invert_step() 306 memcpy(temp + NPAD, input + NPAD + low_size, high_size * sizeof(float)); in invert_step() 310 symmetric_extension(temp, high_size, left_ext, right_ext); in invert_step() 313 const float a = temp[ in invert_step() 356 const float temp = FFABS(block[x]); soft_thresholding() local 377 const float temp = FFABS(block[x]); qian_thresholding() local [all...] |
H A D | vf_telecine.c | 53 AVFrame *temp; member 117 s->temp = ff_get_video_buffer(inlink, inlink->w, inlink->h); in config_input() 118 if (!s->temp) in config_input() 190 s->temp->data[i] + s->temp->linesize[i] * s->first_field, in filter_frame() 191 s->temp->linesize[i] * 2, in filter_frame() 226 av_image_copy_plane(s->temp->data[i], s->temp->linesize[i], in filter_frame() 261 av_frame_free(&s->temp); in uninit()
|
/third_party/skia/third_party/externals/freetype/src/base/ |
H A D | ftcalc.c | 441 FT_Int64 temp, temp2; in FT_EXPORT_DEF() local 444 ft_multo64( a, b, &temp ); in FT_EXPORT_DEF() 449 FT_Add64( &temp, &temp2, &temp ); in FT_EXPORT_DEF() 452 a = ( temp.hi == 0 ) ? temp.lo / c in FT_EXPORT_DEF() 453 : ft_div64by32( temp.hi, temp.lo, c ); in FT_EXPORT_DEF() 489 FT_Int64 temp; in FT_BASE_DEF() local 492 ft_multo64( a, b, &temp ); in FT_BASE_DEF() 636 FT_Int64 temp, temp2; FT_EXPORT_DEF() local [all...] |
/third_party/skia/third_party/externals/freetype/src/type42/ |
H A D | t42parse.c | 250 FT_Fixed temp[6]; in t42_parse_font_matrix() local 255 result = T1_ToFixedArray( parser, 6, temp, 0 ); in t42_parse_font_matrix() 263 temp_scale = FT_ABS( temp[3] ); in t42_parse_font_matrix() 275 temp[0] = FT_DivFix( temp[0], temp_scale ); in t42_parse_font_matrix() 276 temp[1] = FT_DivFix( temp[1], temp_scale ); in t42_parse_font_matrix() 277 temp[2] = FT_DivFix( temp[2], temp_scale ); in t42_parse_font_matrix() 278 temp[ in t42_parse_font_matrix() [all...] |
/kernel/linux/linux-5.10/drivers/iio/gyro/ |
H A D | adxrs290.c | 119 int temp; in adxrs290_get_rate_data() local 122 temp = spi_w8r16(st->spi, cmd); in adxrs290_get_rate_data() 123 if (temp < 0) { in adxrs290_get_rate_data() 124 ret = temp; in adxrs290_get_rate_data() 128 *val = sign_extend32(temp, 15); in adxrs290_get_rate_data() 140 int temp; in adxrs290_get_temp_data() local 143 temp = spi_w8r16(st->spi, cmd); in adxrs290_get_temp_data() 144 if (temp < 0) { in adxrs290_get_temp_data() 145 ret = temp; in adxrs290_get_temp_data() 150 *val = sign_extend32(temp, 1 in adxrs290_get_temp_data() 162 short temp; adxrs290_get_3db_freq() local [all...] |
/kernel/liteos_a/shell/full/src/cmds/ |
H A D | dmesg.c | 176 CHAR *temp = NULL;
in OsCopyToNew() local 188 temp = (CHAR *)malloc(g_dmesgInfo->logSize);
in OsCopyToNew() 189 if (temp == NULL) {
in OsCopyToNew() 194 (VOID)memset_s(temp, g_dmesgInfo->logSize, 0, g_dmesgInfo->logSize);
in OsCopyToNew() 200 ret = OsDmesgRead(temp, g_dmesgInfo->logSize);
in OsCopyToNew() 206 ret = memcpy_s(newBuf, bufSize, temp + copyStart, copyLen);
in OsCopyToNew() 211 free(temp);
in OsCopyToNew() 218 free(temp);
in OsCopyToNew() 224 VOID *temp = NULL;
in OsDmesgResetMem() local 233 temp in OsDmesgResetMem() 265 VOID *temp = NULL; OsDmesgChangeSize() local [all...] |
/third_party/lzma/C/Util/7z/ |
H A D | 7zMain.c | 268 char temp[32];
in UInt64ToStr() local 272 temp[pos++] = (char)('0' + (unsigned)(value % 10));
in UInt64ToStr() 281 *s++ = temp[--pos];
in UInt64ToStr() 288 char temp[16];
in UIntToStr() local 291 temp[pos++] = (char)('0' + (value % 10));
in UIntToStr() 298 *s++ = temp[--pos];
in UIntToStr() 553 UInt16 *temp = NULL;
in main() local 669 SzFree(NULL, temp);
in main() 671 temp = (UInt16 *)SzAlloc(NULL, tempSize * sizeof(temp[ in main() [all...] |
/third_party/ffmpeg/libavcodec/mips/ |
H A D | h264qpel_mmi.c | 2592 uint16_t __attribute__ ((aligned(8))) temp[192]; in ff_put_h264_qpel8_mc22_mmi() local 2594 put_h264_qpel8_hv_lowpass_mmi(dst, temp, src, stride, 8, stride); in ff_put_h264_qpel8_mc22_mmi() 2600 uint8_t __attribute__ ((aligned(8))) temp[448]; in ff_put_h264_qpel8_mc21_mmi() local 2601 uint8_t *const halfHV = temp; in ff_put_h264_qpel8_mc21_mmi() 2602 int16_t *const halfV = (int16_t *) (temp + 64); in ff_put_h264_qpel8_mc21_mmi() 2611 uint8_t __attribute__ ((aligned(8))) temp[448]; in ff_put_h264_qpel8_mc23_mmi() local 2612 uint8_t *const halfHV = temp; in ff_put_h264_qpel8_mc23_mmi() 2613 int16_t *const halfV = (int16_t *) (temp + 64); in ff_put_h264_qpel8_mc23_mmi() 2622 uint8_t __attribute__ ((aligned(8))) temp[448]; in ff_put_h264_qpel8_mc12_mmi() local 2623 uint8_t *const halfHV = temp; in ff_put_h264_qpel8_mc12_mmi() 2633 uint8_t __attribute__ ((aligned(8))) temp[448]; ff_put_h264_qpel8_mc32_mmi() local 2756 uint16_t __attribute__ ((aligned(8))) temp[192]; ff_avg_h264_qpel8_mc22_mmi() local 2764 uint8_t __attribute__ ((aligned(8))) temp[448]; ff_avg_h264_qpel8_mc21_mmi() local 2775 uint8_t __attribute__ ((aligned(8))) temp[448]; ff_avg_h264_qpel8_mc23_mmi() local 2786 uint8_t __attribute__ ((aligned(8))) temp[448]; ff_avg_h264_qpel8_mc12_mmi() local 2797 uint8_t __attribute__ ((aligned(8))) temp[448]; ff_avg_h264_qpel8_mc32_mmi() local 2920 uint16_t __attribute__ ((aligned(8))) temp[384]; ff_put_h264_qpel16_mc22_mmi() local 2928 uint8_t __attribute__ ((aligned(8))) temp[1024]; ff_put_h264_qpel16_mc21_mmi() local 2939 uint8_t __attribute__ ((aligned(8))) temp[1024]; ff_put_h264_qpel16_mc23_mmi() local 2950 uint8_t __attribute__ ((aligned(8))) temp[1024]; ff_put_h264_qpel16_mc12_mmi() local 2961 uint8_t __attribute__ ((aligned(8))) temp[1024]; ff_put_h264_qpel16_mc32_mmi() local 3084 uint16_t __attribute__ ((aligned(8))) temp[384]; ff_avg_h264_qpel16_mc22_mmi() local 3092 uint8_t __attribute__ ((aligned(8))) temp[1024]; ff_avg_h264_qpel16_mc21_mmi() local 3103 uint8_t __attribute__ ((aligned(8))) temp[1024]; ff_avg_h264_qpel16_mc23_mmi() local 3114 uint8_t __attribute__ ((aligned(8))) temp[1024]; ff_avg_h264_qpel16_mc12_mmi() local 3125 uint8_t __attribute__ ((aligned(8))) temp[1024]; ff_avg_h264_qpel16_mc32_mmi() local [all...] |
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/ |
H A D | jchuff-sse2.asm | 122 ; %1 - temp register 123 ; %2 - low byte of temp register 124 ; %3 - second byte of temp register 129 ; code, and put_buffer will contain those remaining bits. temp and code will 136 %define %%temp %1 141 movq mm_temp, mm_code ; temp = code; 143 movd mm_overflow_bits, free_bits ; overflow_bits (temp register) = free_bits; 146 psrlq mm_temp, mm_overflow_bits ; temp >>= overflow_bits; 148 por mm_temp, mm_put_buffer ; temp |= put_buffer; 149 %ifidn %%temp, nbits_bas [all...] |
/foundation/distributeddatamgr/data_share/test/native/unittest/mediadatashare_test/src/ |
H A D | abnormal_branch_test.cpp | 111 AppDataFwk::SharedBlock temp(name, nullptr, size, readOnly); in HWTEST_F() 112 int result = temp.Clear(); in HWTEST_F() 114 result = temp.SetColumnNum(1); in HWTEST_F() 116 result = temp.AllocRow(); in HWTEST_F() 118 result = temp.FreeLastRow(); in HWTEST_F() 121 result = temp.PutLong(1, 1, intValue); in HWTEST_F() 124 result = temp.PutDouble(1, 1, doubleValue); in HWTEST_F() 126 result = temp.PutNull(1, 1); in HWTEST_F() 128 result = temp.SetRawData(nullptr, size); in HWTEST_F()
|
/kernel/linux/linux-5.10/arch/arm64/crypto/ |
H A D | aes-ce.S | 40 .macro enc_prepare, rounds, rk, temp 41 mov \temp, \rk 42 load_round_keys \rounds, \temp 46 .macro enc_switch_key, rounds, rk, temp 47 mov \temp, \rk 48 load_round_keys \rounds, \temp 52 .macro dec_prepare, rounds, rk, temp 53 mov \temp, \rk 54 load_round_keys \rounds, \temp
|
/kernel/linux/linux-6.6/arch/arm64/crypto/ |
H A D | aes-ce.S | 40 .macro enc_prepare, rounds, rk, temp 41 mov \temp, \rk 42 load_round_keys \rounds, \temp 46 .macro enc_switch_key, rounds, rk, temp 47 mov \temp, \rk 48 load_round_keys \rounds, \temp 52 .macro dec_prepare, rounds, rk, temp 53 mov \temp, \rk 54 load_round_keys \rounds, \temp
|
/kernel/linux/linux-5.10/drivers/thermal/intel/ |
H A D | intel_pch_thermal.c | 171 static int pch_wpt_get_temp(struct pch_thermal_device *ptd, int *temp) in pch_wpt_get_temp() argument 178 *temp = (wpt_temp * 1000 / 2 - 50000); in pch_wpt_get_temp() 213 int (*get_temp)(struct pch_thermal_device *ptd, int *temp); 227 static int pch_thermal_get_temp(struct thermal_zone_device *tzd, int *temp) in pch_thermal_get_temp() argument 231 return ptd->ops->get_temp(ptd, temp); in pch_thermal_get_temp() 251 static int pch_get_trip_temp(struct thermal_zone_device *tzd, int trip, int *temp) in pch_get_trip_temp() argument 256 *temp = ptd->crt_temp; in pch_get_trip_temp() 258 *temp = ptd->hot_temp; in pch_get_trip_temp() 260 *temp = ptd->psv_temp; in pch_get_trip_temp()
|