Home
last modified time | relevance | path

Searched refs:temp (Results 701 - 725 of 4150) sorted by relevance

1...<<21222324252627282930>>...166

/kernel/linux/linux-5.10/arch/loongarch/kernel/
H A Dcmpxchg.c16 u32 old32, mask, temp; in __xchg_small() local
48 : "=&r" (old32), "=&r" (temp), "=ZC" (*ptr32) in __xchg_small()
58 u32 old32, mask, temp; in __cmpxchg_small() local
99 : "=&r" (old32), "=&r" (temp), "=ZC" (*ptr32) in __cmpxchg_small()
/kernel/liteos_a/testsuites/kernel/sample/posix/pthread/full/
H A DIt_posix_pthread_057.c62 UINTPTR temp = 1; in Testcase() local
75 ret = pthread_join(newTh2, (void *)&temp); in Testcase()
77 ICUNIT_ASSERT_EQUAL(temp, (UINTPTR)PTHREAD_CANCELED, temp); in Testcase()
H A DIt_posix_pthread_056.c72 UINTPTR temp = 1; in Testcase() local
85 ret = pthread_join(newTh, (void *)&temp); in Testcase()
87 ICUNIT_ASSERT_EQUAL(temp, (UINTPTR)PTHREAD_CANCELED, temp); in Testcase()
H A DIt_posix_pthread_051.c65 UINTPTR temp; in Testcase() local
83 ret = pthread_join(newTh, (void *)&temp); in Testcase()
85 ICUNIT_ASSERT_EQUAL(temp, (UINTPTR)PTHREAD_CANCELED, temp); in Testcase()
H A DIt_posix_pthread_103.c71 UINTPTR temp; in Testcase() local
85 ret = pthread_join(g_testNewTh, (void *)&temp); in Testcase()
87 ICUNIT_ASSERT_EQUAL(temp, 8, temp); // 8, here assert the result. in Testcase()
H A DIt_posix_pthread_098.c56 UINTPTR temp = 1; in Testcase() local
78 ret = pthread_join(newTh, (void *)&temp); in Testcase()
80 ICUNIT_ASSERT_EQUAL(temp, (UINTPTR)PTHREAD_CANCELED, temp); in Testcase()
/kernel/liteos_m/testsuites/sample/kernel/task/
H A DIt_los_task_122.c54 UINTPTR temp = 0; in TestCase() local
76 ret = LOS_TaskJoin(g_joinTaskID, &temp); in TestCase()
78 ICUNIT_ASSERT_EQUAL(temp, taskID, temp); in TestCase()
/kernel/liteos_a/testsuites/unittest/libc/posix/pthread/full/
H A DIt_posix_pthread_051.cpp58 UINTPTR temp; in Testcase() local
79 ret = pthread_join(newTh, (void **)&temp); in Testcase()
81 ICUNIT_ASSERT_EQUAL(temp, (UINTPTR)PTHREAD_CANCELED, temp); in Testcase()
/third_party/ffmpeg/libavcodec/
H A Dhuffyuv.c63 s->temp[i]= av_malloc(4*s->width + 16); in ff_huffyuv_alloc_temp()
64 if (!s->temp[i]) in ff_huffyuv_alloc_temp()
66 s->temp16[i] = (uint16_t*)s->temp[i]; in ff_huffyuv_alloc_temp()
91 av_freep(&s->temp[i]); in ff_huffyuv_common_end()
/third_party/jerryscript/jerry-libm/
H A Dlog10.c75 double_accessor temp; in log10() local
106 temp.dbl = x; in log10()
107 temp.as_int.hi = hx; in log10()
108 z = y * log10_2lo + ivln10 * log (temp.dbl); in log10()
/third_party/ltp/testcases/misc/math/abs/
H A Dabs01.c56 FILE *temp; variable
71 setup(); /* temp file is now open */ in main()
78 fprintf(temp, "abs of minimum integer failed."); in main()
88 fprintf(temp, "abs(0) failed, returned %lld\n", i); in main()
116 temp = stderr; in setup()
/third_party/ltp/testcases/lib/
H A Dtst_checkpoint.c24 unsigned long temp; in get_val() local
28 temp = strtoul(arg, &e, 10); in get_val()
29 if (errno || (e == arg) || (temp > UINT_MAX)) { in get_val()
35 *val = temp; in get_val()
/third_party/typescript/tests/baselines/reference/
H A DarrayLiterals3.js23 var temp = ["s", "t", "r"]; variable
35 var c2: myArray = [...temp1, ...temp]; // Error cannot assign (number|string)[] to number[]
64 var temp = ["s", "t", "r"]; variable
69 var c2 = __spreadArray(__spreadArray([], temp1, true), temp, true); // Error cannot assign (number|string)[] to number[]
H A DdestructuringVariableDeclaration2.js9 var temp = { t1: true, t2: "false" };
10 var [b0 = 3, b1 = true, b2 = temp] = [3, false, { t1: false, t2: 5}]; // Error
29 var temp = { t1: true, t2: "false" };
30 var _c = [3, false, { t1: false, t2: 5 }], _d = _c[0], b0 = _d === void 0 ? 3 : _d, _e = _c[1], b1 = _e === void 0 ? true : _e, _f = _c[2], b2 = _f === void 0 ? temp : _f; // Error
/third_party/pulseaudio/src/pulsecore/
H A Dsconv_sse.c39 pa_reg_x86 temp, i; in pa_sconv_s16le_from_f32ne_sse() local
97 : "=&r" (i), "=&r" (temp) in pa_sconv_s16le_from_f32ne_sse()
104 pa_reg_x86 temp, i; in pa_sconv_s16le_from_f32ne_sse2() local
155 : "=&r" (i), "=&r" (temp) in pa_sconv_s16le_from_f32ne_sse2()
/third_party/ffmpeg/libavfilter/
H A Dvf_vaguedenoiser.c276 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...]
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftcalc.c441 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 Dt42parse.c250 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...]
/third_party/ffmpeg/libavcodec/mips/
H A Dh264qpel_mmi.c2592 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...]
/kernel/linux/linux-5.10/drivers/char/agp/
H A Dnvidia-agp.c111 u32 temp; in nvidia_configure() local
148 pci_read_config_dword(nvidia_private.dev_2, NVIDIA_2_GARTCTRL, &temp); in nvidia_configure()
149 pci_write_config_dword(nvidia_private.dev_2, NVIDIA_2_GARTCTRL, temp | 0x11); in nvidia_configure()
152 pci_read_config_dword(agp_bridge->dev, NVIDIA_0_APSIZE, &temp); in nvidia_configure()
153 pci_write_config_dword(agp_bridge->dev, NVIDIA_0_APSIZE, temp | 0x100); in nvidia_configure()
169 u32 temp; in nvidia_cleanup() local
172 pci_read_config_dword(agp_bridge->dev, NVIDIA_0_APSIZE, &temp); in nvidia_cleanup()
173 pci_write_config_dword(agp_bridge->dev, NVIDIA_0_APSIZE, temp & ~(0x100)); in nvidia_cleanup()
176 pci_read_config_dword(nvidia_private.dev_2, NVIDIA_2_GARTCTRL, &temp); in nvidia_cleanup()
177 pci_write_config_dword(nvidia_private.dev_2, NVIDIA_2_GARTCTRL, temp in nvidia_cleanup()
264 u32 wbc_reg, temp; nvidia_tlbflush() local
[all...]
/kernel/linux/linux-5.10/sound/pci/au88x0/
H A Dau88x0_synth.c30 int temp; in vortex_wt_setstereo() local
32 //temp = hwread(vortex->mmio, 0x80 + ((wt >> 0x5)<< 0xf) + (((wt & 0x1f) >> 1) << 2)); in vortex_wt_setstereo()
33 temp = hwread(vortex->mmio, WT_STEREO(wt)); in vortex_wt_setstereo()
34 temp = (temp & 0xfe) | (stereo & 1); in vortex_wt_setstereo()
35 //hwwrite(vortex->mmio, 0x80 + ((wt >> 0x5)<< 0xf) + (((wt & 0x1f) >> 1) << 2), temp); in vortex_wt_setstereo()
36 hwwrite(vortex->mmio, WT_STEREO(wt), temp); in vortex_wt_setstereo()
42 int temp; in vortex_wt_setdsout() local
45 temp = hwread(vortex->mmio, WT_DSREG((wt >= 0x20) ? 1 : 0)); in vortex_wt_setdsout()
47 temp | in vortex_wt_setdsout()
57 int temp; vortex_wt_allocroute() local
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/gma500/
H A Dmdfld_device.c234 u32 temp = 0; in mdfld_restore_display_registers() local
374 temp = REG_READ(mipi_reg); in mdfld_restore_display_registers()
375 temp |= LP_OUTPUT_HOLD_RELEASE; in mdfld_restore_display_registers()
376 REG_WRITE(mipi_reg, temp); in mdfld_restore_display_registers()
381 temp = REG_READ(device_ready_reg); in mdfld_restore_display_registers()
382 temp &= ~ULPS_MASK; in mdfld_restore_display_registers()
383 temp |= 0x3; in mdfld_restore_display_registers()
384 temp |= EXIT_ULPS_DEV_READY; in mdfld_restore_display_registers()
385 REG_WRITE(device_ready_reg, temp); in mdfld_restore_display_registers()
388 temp in mdfld_restore_display_registers()
[all...]
/kernel/linux/linux-6.6/drivers/char/agp/
H A Dnvidia-agp.c111 u32 temp; in nvidia_configure() local
148 pci_read_config_dword(nvidia_private.dev_2, NVIDIA_2_GARTCTRL, &temp); in nvidia_configure()
149 pci_write_config_dword(nvidia_private.dev_2, NVIDIA_2_GARTCTRL, temp | 0x11); in nvidia_configure()
152 pci_read_config_dword(agp_bridge->dev, NVIDIA_0_APSIZE, &temp); in nvidia_configure()
153 pci_write_config_dword(agp_bridge->dev, NVIDIA_0_APSIZE, temp | 0x100); in nvidia_configure()
169 u32 temp; in nvidia_cleanup() local
172 pci_read_config_dword(agp_bridge->dev, NVIDIA_0_APSIZE, &temp); in nvidia_cleanup()
173 pci_write_config_dword(agp_bridge->dev, NVIDIA_0_APSIZE, temp & ~(0x100)); in nvidia_cleanup()
176 pci_read_config_dword(nvidia_private.dev_2, NVIDIA_2_GARTCTRL, &temp); in nvidia_cleanup()
177 pci_write_config_dword(nvidia_private.dev_2, NVIDIA_2_GARTCTRL, temp in nvidia_cleanup()
265 u32 __maybe_unused temp; nvidia_tlbflush() local
[all...]
/kernel/linux/linux-6.6/drivers/interconnect/qcom/
H A Dbcm-voter.c97 u64 temp; in bcm_aggregate() local
102 temp = bcm_div(node->sum_avg[bucket] * bcm->aux_data.width, in bcm_aggregate()
104 agg_avg[bucket] = max(agg_avg[bucket], temp); in bcm_aggregate()
106 temp = bcm_div(node->max_peak[bucket] * bcm->aux_data.width, in bcm_aggregate()
108 agg_peak[bucket] = max(agg_peak[bucket], temp); in bcm_aggregate()
111 temp = agg_avg[bucket] * bcm->vote_scale; in bcm_aggregate()
112 bcm->vote_x[bucket] = bcm_div(temp, bcm->aux_data.unit); in bcm_aggregate()
114 temp = agg_peak[bucket] * bcm->vote_scale; in bcm_aggregate()
115 bcm->vote_y[bucket] = bcm_div(temp, bcm->aux_data.unit); in bcm_aggregate()
212 struct bcm_voter *temp; in of_bcm_voter_get() local
[all...]
/kernel/linux/linux-6.6/sound/pci/au88x0/
H A Dau88x0_synth.c30 int temp; in vortex_wt_setstereo() local
32 //temp = hwread(vortex->mmio, 0x80 + ((wt >> 0x5)<< 0xf) + (((wt & 0x1f) >> 1) << 2)); in vortex_wt_setstereo()
33 temp = hwread(vortex->mmio, WT_STEREO(wt)); in vortex_wt_setstereo()
34 temp = (temp & 0xfe) | (stereo & 1); in vortex_wt_setstereo()
35 //hwwrite(vortex->mmio, 0x80 + ((wt >> 0x5)<< 0xf) + (((wt & 0x1f) >> 1) << 2), temp); in vortex_wt_setstereo()
36 hwwrite(vortex->mmio, WT_STEREO(wt), temp); in vortex_wt_setstereo()
42 int temp; in vortex_wt_setdsout() local
45 temp = hwread(vortex->mmio, WT_DSREG((wt >= 0x20) ? 1 : 0)); in vortex_wt_setdsout()
47 temp | in vortex_wt_setdsout()
57 int temp; vortex_wt_allocroute() local
[all...]

Completed in 18 milliseconds

1...<<21222324252627282930>>...166