Home
last modified time | relevance | path

Searched full:tmp (Results 1 – 25 of 5457) sorted by relevance

12345678910>>...219

/third_party/elfutils/tests/
Drun-addr2line-i-test.sh58 /tmp/x.cpp:5
62 /tmp/x.cpp:6
66 /tmp/x.cpp:10
70 /tmp/x.cpp:11
74 /tmp/x.cpp:5
75 /tmp/x.cpp:15
79 /tmp/x.cpp:10
80 /tmp/x.cpp:20
84 /tmp/x.cpp:5
85 /tmp/x.cpp:15
[all …]
Drun-addr2line-C-test.sh31 0x00000000000005a0: foobar at /tmp/x.cpp:5
32 0x00000000000005a1: foobar at /tmp/x.cpp:6
33 0x00000000000005b0: fubar at /tmp/x.cpp:10
34 0x00000000000005b1: fubar at /tmp/x.cpp:11
35 0x00000000000005c0: foobar at /tmp/x.cpp:5
36 (inlined by) bar at /tmp/x.cpp:15
37 0x00000000000005d0: fubar at /tmp/x.cpp:10
38 (inlined by) baz at /tmp/x.cpp:20
39 0x00000000000005e0: foobar at /tmp/x.cpp:5
40 (inlined by) bar at /tmp/x.cpp:15
[all …]
Drun-addr2line-i-demangle-test.sh31 /tmp/x.cpp:5
33 /tmp/x.cpp:6
35 /tmp/x.cpp:10
37 /tmp/x.cpp:11
38 foobar inlined at /tmp/x.cpp:15 in bar()
39 /tmp/x.cpp:5
41 /tmp/x.cpp:15
42 fubar inlined at /tmp/x.cpp:20 in baz()
43 /tmp/x.cpp:10
45 /tmp/x.cpp:20
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
Dsae.c24 struct sae_temporary_data *tmp; in sae_set_group() local
36 tmp = sae->tmp = os_zalloc(sizeof(*tmp)); in sae_set_group()
37 if (tmp == NULL) in sae_set_group()
41 tmp->ec = crypto_ec_init(group); in sae_set_group()
42 if (tmp->ec) { in sae_set_group()
46 tmp->prime_len = crypto_ec_prime_len(tmp->ec); in sae_set_group()
47 tmp->prime = crypto_ec_get_prime(tmp->ec); in sae_set_group()
48 tmp->order_len = crypto_ec_order_len(tmp->ec); in sae_set_group()
49 tmp->order = crypto_ec_get_order(tmp->ec); in sae_set_group()
54 tmp->dh = dh_groups_get(group); in sae_set_group()
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/cpu/kernel/nnacl/include/nnacl/neon/
Dreduce_fp32_neon.h35 SIMD_F32 tmp = SIMD_MOV_F32(0); in ReduceSumNEON() local
37 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(inner_src + i * inner_size)); in ReduceSumNEON()
39 SIMD_ST_F32(outer_dst + index, tmp); in ReduceSumNEON()
45 SIMD_F32 tmp = SIMD_MOV_F32(0); in ReduceSumByLastAxisNEON() local
47 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(src + index)); in ReduceSumByLastAxisNEON()
49 *tmp_sum += SIMD_GET_SUM_F32(tmp); in ReduceSumByLastAxisNEON()
57 SIMD_F32 tmp = SIMD_MOV_F32(0); in ReduceMeanNEON() local
59 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(inner_src + i * inner_size)); in ReduceMeanNEON()
61 SIMD_ST_F32(outer_dst + index, SIMD_DIV_N_F32(tmp, axis_size)); in ReduceMeanNEON()
70 SIMD_F32 tmp = SIMD_MOV_F32(FLT_MAX); in ReduceMinNEON() local
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/cpu/kernel/nnacl/include/nnacl/avx512/
Dreduce_fp32_avx512.h36 SIMD_F32 tmp = SIMD_MOV_F32(0); in ReduceSumAVX512() local
38 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(inner_src + i * inner_size)); in ReduceSumAVX512()
40 SIMD_ST_F32(outer_dst + index, tmp); in ReduceSumAVX512()
46 SIMD_F32 tmp = SIMD_MOV_F32(0); in ReduceSumByLastAxisAVX512() local
48 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(src + index)); in ReduceSumByLastAxisAVX512()
50 *tmp_sum += SIMD_GET_SUM_F32(tmp); in ReduceSumByLastAxisAVX512()
58 SIMD_F32 tmp = SIMD_MOV_F32(0); in ReduceMeanAVX512() local
60 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(inner_src + i * inner_size)); in ReduceMeanAVX512()
62 SIMD_ST_F32(outer_dst + index, SIMD_DIV_N_F32(tmp, axis_size)); in ReduceMeanAVX512()
71 SIMD_F32 tmp = SIMD_MOV_F32(FLT_MAX); in ReduceMinAVX512() local
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/cpu/kernel/nnacl/include/nnacl/avx/
Dreduce_fp32_avx.h36 SIMD_F32 tmp = SIMD_MOV_F32(0); in ReduceSumAVX() local
38 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(inner_src + i * inner_size)); in ReduceSumAVX()
40 SIMD_ST_F32(outer_dst + index, tmp); in ReduceSumAVX()
46 SIMD_F32 tmp = SIMD_MOV_F32(0); in ReduceSumByLastAxisAVX() local
48 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(src + index)); in ReduceSumByLastAxisAVX()
50 *tmp_sum += SIMD_GET_SUM_F32(tmp); in ReduceSumByLastAxisAVX()
58 SIMD_F32 tmp = SIMD_MOV_F32(0); in ReduceMeanAVX() local
60 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(inner_src + i * inner_size)); in ReduceMeanAVX()
62 SIMD_ST_F32(outer_dst + index, SIMD_DIV_N_F32(tmp, axis_size)); in ReduceMeanAVX()
71 SIMD_F32 tmp = SIMD_MOV_F32(FLT_MAX); in ReduceMinAVX() local
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/cpu/kernel/nnacl/include/nnacl/sse/
Dreduce_fp32_sse.h36 SIMD_F32 tmp = SIMD_MOV_F32(0); in ReduceSumSSE() local
38 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(inner_src + i * inner_size)); in ReduceSumSSE()
40 SIMD_ST_F32(outer_dst + index, tmp); in ReduceSumSSE()
46 SIMD_F32 tmp = SIMD_MOV_F32(0); in ReduceSumByLastAxisSSE() local
48 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(src + index)); in ReduceSumByLastAxisSSE()
50 *tmp_sum += SIMD_GET_SUM_F32(tmp); in ReduceSumByLastAxisSSE()
58 SIMD_F32 tmp = SIMD_MOV_F32(0); in ReduceMeanSSE() local
60 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(inner_src + i * inner_size)); in ReduceMeanSSE()
62 SIMD_ST_F32(outer_dst + index, SIMD_DIV_N_F32(tmp, axis_size)); in ReduceMeanSSE()
71 SIMD_F32 tmp = SIMD_MOV_F32(FLT_MAX); in ReduceMinSSE() local
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/cpu/kernel/nnacl/fp32/
Dreduce_fp32_simd.h.in32 SIMD_F32 tmp = SIMD_MOV_F32(0); variable
34 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(inner_src + i * inner_size));
36 SIMD_ST_F32(outer_dst + index, tmp);
42 SIMD_F32 tmp = SIMD_MOV_F32(0); variable
44 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(src + index));
46 *tmp_sum += SIMD_GET_SUM_F32(tmp);
54 SIMD_F32 tmp = SIMD_MOV_F32(0); variable
56 tmp = SIMD_ADD_F32(tmp, SIMD_LD_F32(inner_src + i * inner_size));
58 SIMD_ST_F32(outer_dst + index, SIMD_DIV_N_F32(tmp, axis_size));
67 SIMD_F32 tmp = SIMD_MOV_F32(FLT_MAX); variable
[all …]
Dreduce_fp32.c55 #define ReduceSumPreDeal float tmp = 0;
56 #define ReduceSumMidCalc tmp += inner_src[i * inner_size];
57 #define ReduceSumPostDeal outer_dst[k] = tmp;
69 float tmp = src_tmp[0]; in ReduceSumByLastAxis() local
72 SIMD_RUN_NO_SCALAR(ReduceSumByLastAxis, i, src_tmp, &tmp, axis_size); in ReduceSumByLastAxis()
74 tmp += src_tmp[i]; in ReduceSumByLastAxis()
76 dst_data[j] = tmp; in ReduceSumByLastAxis()
82 #define ReduceMeanPreDeal float tmp = 0;
83 #define ReduceMeanMidCalc tmp += inner_src[i * inner_size];
84 #define ReduceMeanPostDeal outer_dst[k] = tmp / axis_size;
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
Dsae.c28 struct sae_temporary_data *tmp; in sae_set_group() local
40 tmp = sae->tmp = os_zalloc(sizeof(*tmp)); in sae_set_group()
41 if (tmp == NULL) in sae_set_group()
45 tmp->ec = crypto_ec_init(group); in sae_set_group()
46 if (tmp->ec) { in sae_set_group()
50 tmp->prime_len = crypto_ec_prime_len(tmp->ec); in sae_set_group()
51 tmp->prime = crypto_ec_get_prime(tmp->ec); in sae_set_group()
52 tmp->order_len = crypto_ec_order_len(tmp->ec); in sae_set_group()
53 tmp->order = crypto_ec_get_order(tmp->ec); in sae_set_group()
58 tmp->dh = dh_groups_get(group); in sae_set_group()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
Ddemangle_test.cc43 char tmp[10]; in TEST() local
44 EXPECT_TRUE(Demangle("_Z6foobarv", tmp, sizeof(tmp))); in TEST()
46 EXPECT_STREQ("foobar()", tmp); in TEST()
47 EXPECT_TRUE(Demangle("_Z6foobarv", tmp, 9)); in TEST()
48 EXPECT_STREQ("foobar()", tmp); in TEST()
49 EXPECT_FALSE(Demangle("_Z6foobarv", tmp, 8)); // Not enough. in TEST()
50 EXPECT_FALSE(Demangle("_Z6foobarv", tmp, 1)); in TEST()
51 EXPECT_FALSE(Demangle("_Z6foobarv", tmp, 0)); in TEST()
53 EXPECT_FALSE(Demangle("_Z1000000", tmp, 9)); in TEST()
62 char tmp[20]; in TEST() local
[all …]
/third_party/json/tests/thirdparty/Fuzzer/test/
Dmerge.test3 RUN: rm -rf %tmp/T1 %tmp/T2
4 RUN: mkdir -p %tmp/T1 %tmp/T2
5 RUN: echo F..... > %tmp/T1/1
6 RUN: echo .U.... > %tmp/T1/2
7 RUN: echo ..Z... > %tmp/T1/3
10 RUN: LLVMFuzzer-FullCoverageSetTest -merge=1 %tmp/T1 %tmp/T2 2>&1 | FileCheck %s --check-pr…
14 RUN: echo ...Z.. > %tmp/T2/1
15 RUN: echo ....E. > %tmp/T2/2
16 RUN: echo .....R > %tmp/T2/3
17 RUN: echo F..... > %tmp/T2/a
[all …]
/third_party/toybox/toys/pending/
Dipcrm.c78 struct arg_list *tmp; in ipcrm_main() local
80 for (tmp = TT.mkey; tmp; tmp = tmp->next) do_ipcrm(1, 1, tmp->arg); in ipcrm_main()
81 for (tmp = TT.mid; tmp; tmp = tmp->next) do_ipcrm(0, 1, tmp->arg); in ipcrm_main()
82 for (tmp = TT.qkey; tmp; tmp = tmp->next) do_ipcrm(1, 2, tmp->arg); in ipcrm_main()
83 for (tmp = TT.qid; tmp; tmp = tmp->next) do_ipcrm(0, 2, tmp->arg); in ipcrm_main()
84 for (tmp = TT.skey; tmp; tmp = tmp->next) do_ipcrm(1, 3, tmp->arg); in ipcrm_main()
85 for (tmp = TT.sid; tmp; tmp = tmp->next) do_ipcrm(0, 3, tmp->arg); in ipcrm_main()
/third_party/openssl/crypto/modes/
Dcts128.c95 } tmp; in CRYPTO_cts128_encrypt() local
111 memcpy(tmp.c, out - 16, 16); in CRYPTO_cts128_encrypt()
113 memcpy(out, tmp.c, residue); in CRYPTO_cts128_encrypt()
115 memset(tmp.c, 0, sizeof(tmp)); in CRYPTO_cts128_encrypt()
116 memcpy(tmp.c, in, residue); in CRYPTO_cts128_encrypt()
118 (*cbc) (tmp.c, out - 16, 16, key, ivec, 1); in CRYPTO_cts128_encrypt()
131 } tmp; in CRYPTO_nistcts128_encrypt() local
151 memset(tmp.c, 0, sizeof(tmp)); in CRYPTO_nistcts128_encrypt()
152 memcpy(tmp.c, in, residue); in CRYPTO_nistcts128_encrypt()
153 (*cbc) (tmp.c, out - 16 + residue, 16, key, ivec, 1); in CRYPTO_nistcts128_encrypt()
[all …]
/third_party/libuv/include/uv/
Dtree.h87 /* SPLAY_ROTATE_{LEFT,RIGHT} expect that tmp hold SPLAY_{RIGHT,LEFT} */
88 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \ argument
89 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
90 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
91 (head)->sph_root = tmp; \
94 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \ argument
95 SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \
96 SPLAY_LEFT(tmp, field) = (head)->sph_root; \
97 (head)->sph_root = tmp; \
100 #define SPLAY_LINKLEFT(head, tmp, field) do { \ argument
[all …]
/third_party/ffmpeg/libavcodec/x86/
Dcabac.h58 #define BRANCHLESS_GET_CABAC_UPDATE(ret, retq, low, range, tmp) \ argument
59 "cmp "low" , "tmp" \n\t"\
62 "and %%ecx , "tmp" \n\t"\
64 "sub "tmp" , "low" \n\t"
66 #define BRANCHLESS_GET_CABAC_UPDATE(ret, retq, low, range, tmp) \ argument
68 "sub "low" , "tmp" \n\t"\
69 "sar $31 , "tmp" \n\t"\
71 "and "tmp" , "range" \n\t"\
74 "and "tmp" , %%ecx \n\t"\
76 "xor "tmp" , "ret" \n\t"\
[all …]
/third_party/skia/docker/skia-wasm-release/
DDockerfile8 RUN cd /tmp \
11 ENV PATH=${PATH}:/tmp/depot_tools
14 RUN mkdir -p /tmp/skia \
15 && cd /tmp/skia \
20 RUN cd /tmp/skia/skia \
28 RUN cd /tmp/skia/skia \
34 RUN if [ ! -z "${PATCH_REF}" ] ; then cd /tmp/skia/skia \
39 RUN cd /tmp/skia/skia \
43 # PathKit should be in /tmp/skia/skia/out/pathkit/
44 RUN /tmp/skia/skia/modules/pathkit/compile.sh
[all …]
/third_party/mbedtls/tests/suites/
Dtest_suite_mps.function46 unsigned char *tmp;
62 TEST_ASSERT(mbedtls_mps_reader_get(&rd, 100, &tmp, NULL) == 0);
63 TEST_MEMORY_COMPARE(tmp, 100, bufA, 100);
94 unsigned char *tmp;
112 TEST_ASSERT(mbedtls_mps_reader_get(&rd, 100, &tmp, NULL) == 0);
113 TEST_MEMORY_COMPARE(tmp, 100, bufA, 100);
119 TEST_ASSERT(mbedtls_mps_reader_get(&rd, 100, &tmp, NULL) == 0);
120 TEST_MEMORY_COMPARE(tmp, 100, bufB, 100);
153 unsigned char *tmp;
168 TEST_ASSERT(mbedtls_mps_reader_get(&rd, 10, &tmp, NULL) == 0);
[all …]
/third_party/skia/src/core/
DSkLineClipper.cpp120 SkPoint tmp[2]; in IntersectLine() local
121 memcpy(tmp, src, sizeof(tmp)); in IntersectLine()
124 if (tmp[index0].fY < clip.fTop) { in IntersectLine()
125 tmp[index0].set(sect_with_horizontal(src, clip.fTop), clip.fTop); in IntersectLine()
127 if (tmp[index1].fY > clip.fBottom) { in IntersectLine()
128 tmp[index1].set(sect_with_horizontal(src, clip.fBottom), clip.fBottom); in IntersectLine()
131 if (tmp[0].fX < tmp[1].fX) { in IntersectLine()
140 if ((tmp[index1].fX <= clip.fLeft || tmp[index0].fX >= clip.fRight)) { in IntersectLine()
143 if (tmp[0].fX != tmp[1].fX || tmp[0].fX < clip.fLeft || tmp[0].fX > clip.fRight) { in IntersectLine()
148 if (tmp[index0].fX < clip.fLeft) { in IntersectLine()
[all …]
/third_party/mesa3d/src/util/format/
Du_format_s3tc.c73 uint8_t tmp[4]; in util_format_dxt1_rgb_fetch_rgba() local
74 util_format_dxt1_rgb_fetch(0, src, i, j, tmp); in util_format_dxt1_rgb_fetch_rgba()
75 dst[0] = ubyte_to_float(tmp[0]); in util_format_dxt1_rgb_fetch_rgba()
76 dst[1] = ubyte_to_float(tmp[1]); in util_format_dxt1_rgb_fetch_rgba()
77 dst[2] = ubyte_to_float(tmp[2]); in util_format_dxt1_rgb_fetch_rgba()
85 uint8_t tmp[4]; in util_format_dxt1_rgba_fetch_rgba() local
86 util_format_dxt1_rgba_fetch(0, src, i, j, tmp); in util_format_dxt1_rgba_fetch_rgba()
87 dst[0] = ubyte_to_float(tmp[0]); in util_format_dxt1_rgba_fetch_rgba()
88 dst[1] = ubyte_to_float(tmp[1]); in util_format_dxt1_rgba_fetch_rgba()
89 dst[2] = ubyte_to_float(tmp[2]); in util_format_dxt1_rgba_fetch_rgba()
[all …]
/third_party/skia/m133/src/core/
DSkLineClipper.cpp126 SkPoint tmp[2]; in IntersectLine() local
127 memcpy(tmp, src, sizeof(tmp)); in IntersectLine()
130 if (tmp[index0].fY < clip.fTop) { in IntersectLine()
131 tmp[index0].set(sect_with_horizontal(src, clip.fTop), clip.fTop); in IntersectLine()
133 if (tmp[index1].fY > clip.fBottom) { in IntersectLine()
134 tmp[index1].set(sect_with_horizontal(src, clip.fBottom), clip.fBottom); in IntersectLine()
137 if (tmp[0].fX < tmp[1].fX) { in IntersectLine()
146 if ((tmp[index1].fX <= clip.fLeft || tmp[index0].fX >= clip.fRight)) { in IntersectLine()
149 if (tmp[0].fX != tmp[1].fX || tmp[0].fX < clip.fLeft || tmp[0].fX > clip.fRight) { in IntersectLine()
154 if (tmp[index0].fX < clip.fLeft) { in IntersectLine()
[all …]
/third_party/skia/bench/
DInterpBench.cpp84 SkFixed tmp; in performTest() local
86 tmp = (SkFixed)(curr >> 16); in performTest()
87 dst[i + 0] = TILE(tmp, count); in performTest()
90 tmp = (SkFixed)(curr >> 16); in performTest()
91 dst[i + 1] = TILE(tmp, count); in performTest()
94 tmp = (SkFixed)(curr >> 16); in performTest()
95 dst[i + 2] = TILE(tmp, count); in performTest()
98 tmp = (SkFixed)(curr >> 16); in performTest()
99 dst[i + 3] = TILE(tmp, count); in performTest()
115 SkFixed tmp; in performTest() local
[all …]
/third_party/skia/m133/bench/
DInterpBench.cpp84 SkFixed tmp; in performTest() local
86 tmp = (SkFixed)(curr >> 16); in performTest()
87 dst[i + 0] = TILE(tmp, count); in performTest()
90 tmp = (SkFixed)(curr >> 16); in performTest()
91 dst[i + 1] = TILE(tmp, count); in performTest()
94 tmp = (SkFixed)(curr >> 16); in performTest()
95 dst[i + 2] = TILE(tmp, count); in performTest()
98 tmp = (SkFixed)(curr >> 16); in performTest()
99 dst[i + 3] = TILE(tmp, count); in performTest()
115 SkFixed tmp; in performTest() local
[all …]
/third_party/FreeBSD/sys/sys/
Dtree.h91 /* SPLAY_ROTATE_{LEFT,RIGHT} expect that tmp hold SPLAY_{RIGHT,LEFT} */
92 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \ argument
93 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
94 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
95 (head)->sph_root = tmp; \
98 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \ argument
99 SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \
100 SPLAY_LEFT(tmp, field) = (head)->sph_root; \
101 (head)->sph_root = tmp; \
104 #define SPLAY_LINKLEFT(head, tmp, field) do { \ argument
[all …]

12345678910>>...219