Home
last modified time | relevance | path

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

12345678910>>...201

/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-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/musl/ndk-test/sanitize/
Druntest.sh21 ASAN_OPTIONS=detect_stack_use_after_return=1 sanitize/asan/$case 2>tmp
23 ASAN_OPTIONS=check_initialization_order=true sanitize/asan/$case 2>tmp
25 ASAN_OPTIONS='' sanitize/asan/$case 2>tmp
30 grep -nr 'SUMMARY: ' tmp | grep "leaked in"
32 grep -nr 'SUMMARY: ' tmp | grep $case
52 cat /dev/null > tmp
55 sanitize/scudo/$case valid 2>tmp
57 SCUDO_OPTIONS=allocator_may_return_null=1 sanitize/scudo/$case invalid 2>tmp
59 SCUDO_OPTIONS=allocator_may_return_null=0 sanitize/scudo/$case invalid 2>tmp #not
60 grep -nr 'Scudo ERROR: ' tmp >/dev/null
[all …]
/third_party/musl/ndk-test/script/
Druntest-sanitize.sh20 ASAN_OPTIONS=detect_stack_use_after_return=1 sanitize/asan/$case 2>tmp
22 ASAN_OPTIONS=check_initialization_order=true sanitize/asan/$case 2>tmp
24 ASAN_OPTIONS='' sanitize/asan/$case 2>tmp
29 grep -nr 'SUMMARY: ' tmp | grep "leaked in"
31 grep -nr 'SUMMARY: ' tmp | grep $case
51 cat /dev/null > tmp
54 sanitize/scudo/$case valid 2>tmp
56 SCUDO_OPTIONS=allocator_may_return_null=1 sanitize/scudo/$case invalid 2>tmp
58 SCUDO_OPTIONS=allocator_may_return_null=0 sanitize/scudo/$case invalid 2>tmp #not
59 grep -nr 'Scudo ERROR: ' tmp >/dev/null
[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/ltp/testcases/kernel/security/tomoyo/
Dtomoyo_new_test.c66 result = mkdir("/tmp/testdir", 0755); in test_mkdir_testdir()
71 rmdir("/tmp/testdir"); in cleanup_mkdir_testdir()
76 mkdir("/tmp/testdir", 0755); in setup_mkdir_testdir()
81 result = rmdir("/tmp/testdir"); in test_rmdir_testdir()
200 result = open("/tmp/testfile0", O_RDONLY, 0600); in test_file_open_0()
205 result = open("/tmp/testfile1", O_CREAT | O_RDONLY, 0600); in test_file_open_1()
210 result = open("/tmp/testfile2", O_TRUNC | O_RDONLY, 0600); in test_file_open_2()
215 result = open("/tmp/testfile3", O_TRUNC | O_CREAT | O_RDONLY, 0600); in test_file_open_3()
220 result = open("/tmp/testfile4", O_APPEND | O_RDONLY, 0600); in test_file_open_4()
225 result = open("/tmp/testfile5", O_APPEND | O_CREAT | O_RDONLY, 0600); in test_file_open_5()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
Dsae.c26 struct sae_temporary_data *tmp; in sae_set_group() local
38 tmp = sae->tmp = os_zalloc(sizeof(*tmp)); in sae_set_group()
39 if (tmp == NULL) in sae_set_group()
43 tmp->ec = crypto_ec_init(group); in sae_set_group()
44 if (tmp->ec) { in sae_set_group()
48 tmp->prime_len = crypto_ec_prime_len(tmp->ec); in sae_set_group()
49 tmp->prime = crypto_ec_get_prime(tmp->ec); in sae_set_group()
50 tmp->order_len = crypto_ec_order_len(tmp->ec); in sae_set_group()
51 tmp->order = crypto_ec_get_order(tmp->ec); in sae_set_group()
56 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/mbedtls/tests/suites/
Dtest_suite_mps.function46 unsigned char *tmp;
60 TEST_ASSERT( mbedtls_mps_reader_get( &rd, 100, &tmp, NULL ) == 0 );
61 ASSERT_COMPARE( tmp, 100, bufA, 100 );
90 unsigned char *tmp;
105 TEST_ASSERT( mbedtls_mps_reader_get( &rd, 100, &tmp, NULL ) == 0 );
106 ASSERT_COMPARE( tmp, 100, bufA, 100 );
112 TEST_ASSERT( mbedtls_mps_reader_get( &rd, 100, &tmp, NULL ) == 0 );
113 ASSERT_COMPARE( tmp, 100, bufB, 100 );
144 unsigned char *tmp;
157 TEST_ASSERT( mbedtls_mps_reader_get( &rd, 10, &tmp, NULL ) == 0 );
[all …]
/third_party/gstreamer/gstplugins_bad/gst/gaudieffects/
Dgstgaudieffectsorc.orc9 .temp 4 tmp guint32
13 x4 copyb tmp, src # tmp <- src
14 x4 convubw tmp2, tmp # convert from size 1 to 2
16 x4 addw a2, tmp2, adj # a = tmp + adjustment
18 x4 subb tmp, c255, tmp # tmp = 255 - tmp
19 #x4 mulubw tmp2, tmp, c127 # tmp = tmp * 127
20 x4 convubw tmp2, tmp # convert from size 1 to 2
21 x4 shlw tmp2, tmp2, c7 # tmp = tmp * 128
22 x4 divluw tmp2, tmp2, a2 # tmp = tmp / a
23 x4 subw tmp2, c255, tmp2 # tmp = 255 - tmp
[all …]
/third_party/json/test/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 …]
Dmdct15_init.c36 FFTComplex tmp[30]; in perm_twiddles() local
46 tmp[6*k + 0] = s->exptab[k + 0]; in perm_twiddles()
47 tmp[6*k + 2] = s->exptab[k + 5]; in perm_twiddles()
48 tmp[6*k + 4] = s->exptab[k + 10]; in perm_twiddles()
50 tmp[6*k + 1] = s->exptab[2 * (k + 0)]; in perm_twiddles()
51 tmp[6*k + 3] = s->exptab[2 * (k + 5)]; in perm_twiddles()
52 tmp[6*k + 5] = s->exptab[2 * k + 5 ]; in perm_twiddles()
57 { tmp[6*1 + k].re, tmp[6*1 + k].re }, in perm_twiddles()
58 { tmp[6*2 + k].re, tmp[6*2 + k].re }, in perm_twiddles()
59 { tmp[6*3 + k].re, tmp[6*3 + k].re }, in perm_twiddles()
[all …]
/third_party/flutter/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/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/flutter/skia/docker/skia-wasm-release/
DDockerfile4 RUN cd /tmp \
6 && mkdir -p /tmp/skia \
7 && cd /tmp/skia \
8 && /tmp/depot_tools/fetch skia
10 RUN cd /tmp/skia/skia \
14 # PathKit should be in /tmp/skia/skia/out/pathkit/
15 RUN /tmp/skia/skia/modules/pathkit/compile.sh
17 # CanvasKit should be in /tmp/skia/skia/out/canvaskit_wasm
18 RUN /tmp/skia/skia/modules/canvaskit/compile.sh
20 # Debugger should be in /tmp/skia/skia/out/debugger_wasm
[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/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/FreeBSD/sys/sys/
Dtree.h92 /* SPLAY_ROTATE_{LEFT,RIGHT} expect that tmp hold SPLAY_{RIGHT,LEFT} */
93 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \ argument
94 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
95 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
96 (head)->sph_root = tmp; \
99 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \ argument
100 SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \
101 SPLAY_LEFT(tmp, field) = (head)->sph_root; \
102 (head)->sph_root = tmp; \
105 #define SPLAY_LINKLEFT(head, tmp, field) do { \ argument
[all …]
/third_party/flutter/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/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/python/Python/
DPython-ast.c5335 PyObject *tmp = NULL; in obj2ast_mod() local
5351 if (_PyObject_LookupAttr(obj, state->body, &tmp) < 0) { in obj2ast_mod()
5354 if (tmp == NULL) { in obj2ast_mod()
5362 if (!PyList_Check(tmp)) { in obj2ast_mod()
5363 …PyExc_TypeError, "Module field \"body\" must be a list, not a %.200s", _PyType_Name(Py_TYPE(tmp))); in obj2ast_mod()
5366 len = PyList_GET_SIZE(tmp); in obj2ast_mod()
5371 PyObject *tmp2 = PyList_GET_ITEM(tmp, i); in obj2ast_mod()
5380 if (len != PyList_GET_SIZE(tmp)) { in obj2ast_mod()
5386 Py_CLEAR(tmp); in obj2ast_mod()
5388 if (_PyObject_LookupAttr(obj, state->type_ignores, &tmp) < 0) { in obj2ast_mod()
[all …]

12345678910>>...201