Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 25 of 4731) sorted by relevance

12345678910>>...190

/third_party/boost/boost/endian/detail/
Dendian_load.hpp75 typename integral_by_size<N>::type tmp; in operator ()() local
76 std::memcpy( &tmp, p, N ); in operator ()()
78 endian_reverse_inplace( tmp ); in operator ()()
81 std::memcpy( &t, &tmp, N ); in operator ()()
94 unsigned char tmp[ 2 ]; in operator ()() local
96 tmp[0] = p[0]; in operator ()()
97 tmp[1] = boost::is_signed<T>::value && ( p[0] & 0x80 )? 0xFF: 0x00; in operator ()()
99 return boost::endian::endian_load<T, 2, order::little>( tmp ); in operator ()()
109 unsigned char tmp[ 2 ]; in operator ()() local
111 tmp[0] = boost::is_signed<T>::value && ( p[0] & 0x80 )? 0xFF: 0x00; in operator ()()
[all …]
Dendian_store.hpp72 typename integral_by_size<N>::type tmp; in operator ()() local
73 std::memcpy( &tmp, &v, N ); in operator ()()
75 endian_reverse_inplace( tmp ); in operator ()()
77 std::memcpy( p, &tmp, N ); in operator ()()
89 unsigned char tmp[ 2 ]; in operator ()() local
90 boost::endian::endian_store<T, 2, order::little>( tmp, v ); in operator ()()
92 p[0] = tmp[0]; in operator ()()
102 unsigned char tmp[ 2 ]; in operator ()() local
103 boost::endian::endian_store<T, 2, order::big>( tmp, v ); in operator ()()
105 p[0] = tmp[1]; in operator ()()
[all …]
/third_party/boost/libs/numeric/odeint/examples/
Dfpu.cpp42 double tmp = q[0] - 0.0; in operator ()() local
43 double tmp2 = tmp + m_beta * tmp * tmp * tmp; in operator ()()
47 tmp = q[i+1] - q[i]; in operator ()()
48 tmp2 = tmp + m_beta * tmp * tmp * tmp; in operator ()()
52 tmp = - q[n-1]; in operator ()()
53 tmp2 = tmp + m_beta * tmp * tmp * tmp; in operator ()()
65 double tmp = q[0]; in energy() local
66 energy += 0.5 * tmp * tmp + 0.25 * m_beta * tmp * tmp * tmp * tmp; in energy()
69 tmp = q[i+1] - q[i]; in energy()
70 energy += 0.5 * ( p[i] * p[i] + tmp * tmp ) + 0.25 * m_beta * tmp * tmp * tmp * tmp; in energy()
[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/lz4/tests/
DMakefile119 @$(RM) -rf core *.o *.test tmp* \
213 ls -ls tmp*
236 @echo -n > tmp-lfc-empty
237 @echo hi > tmp-lfc-nonempty
238 $(CAT) tmp-lfc-nonempty tmp-lfc-empty tmp-lfc-nonempty > tmp-lfc-src
239 $(LZ4) -zq tmp-lfc-empty -c > tmp-lfc-empty.lz4
240 $(LZ4) -zq tmp-lfc-nonempty -c > tmp-lfc-nonempty.lz4
241 $(CAT) tmp-lfc-nonempty.lz4 tmp-lfc-empty.lz4 tmp-lfc-nonempty.lz4 > tmp-lfc-concat.lz4
242 $(LZ4) -d tmp-lfc-concat.lz4 -c > tmp-lfc-result
243 $(CMP) tmp-lfc-src tmp-lfc-result
[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/gettext/gettext-tools/src/
Dmsgl-cat.c70 is_message_selected (const message_ty *tmp) in is_message_selected() argument
72 int used = (tmp->used >= 0 ? tmp->used : - tmp->used); in is_message_selected()
74 return (is_header (tmp) in is_message_selected()
86 return mp->tmp->used < 0 && is_message_selected (mp->tmp); in is_message_needed()
89 return is_message_selected (mp->tmp); in is_message_needed()
97 if (mp->tmp->obsolete && is_message_needed (mp)) in is_message_first_needed()
99 mp->tmp->obsolete = false; in is_message_first_needed()
296 message_ty *tmp; in catenate_msgdomain_list() local
299 tmp = message_list_search (total_mlp, mp->msgctxt, mp->msgid); in catenate_msgdomain_list()
300 if (tmp != NULL) in catenate_msgdomain_list()
[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/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/boost/boost/atomic/detail/
Dcore_arch_ops_gcc_arm.hpp88 uint32_t tmp; in exchange() local
91 BOOST_ATOMIC_DETAIL_ARM_ASM_START(%[tmp]) in exchange()
97 BOOST_ATOMIC_DETAIL_ARM_ASM_END(%[tmp]) in exchange()
98 : [tmp] "=&l" (tmp), [original] "=&r" (original), [storage] "+Q" (storage) in exchange()
112 uint32_t tmp; in compare_exchange_weak() local
117 BOOST_ATOMIC_DETAIL_ARM_ASM_START(%[tmp]) in compare_exchange_weak()
123 BOOST_ATOMIC_DETAIL_ARM_ASM_END(%[tmp]) in compare_exchange_weak()
127 [tmp] "=&l" (tmp), in compare_exchange_weak()
148 uint32_t tmp; in compare_exchange_strong() local
153 BOOST_ATOMIC_DETAIL_ARM_ASM_START(%[tmp]) in compare_exchange_strong()
[all …]
Dops_gcc_arm.hpp87 uint32_t tmp; in exchange() local
90 BOOST_ATOMIC_DETAIL_ARM_ASM_START(%[tmp]) in exchange()
96 BOOST_ATOMIC_DETAIL_ARM_ASM_END(%[tmp]) in exchange()
97 : [tmp] "=&l" (tmp), [original] "=&r" (original), [storage] "+Q" (storage) in exchange()
110 uint32_t tmp; in compare_exchange_weak() local
114 BOOST_ATOMIC_DETAIL_ARM_ASM_START(%[tmp]) in compare_exchange_weak()
121 BOOST_ATOMIC_DETAIL_ARM_ASM_END(%[tmp]) in compare_exchange_weak()
124 [tmp] "=&l" (tmp), // %2 in compare_exchange_weak()
143 uint32_t tmp; in compare_exchange_strong() local
147 BOOST_ATOMIC_DETAIL_ARM_ASM_START(%[tmp]) in compare_exchange_strong()
[all …]
Dextra_ops_gcc_arm.hpp107 uint32_t tmp; in fetch_negate() local
111 BOOST_ATOMIC_DETAIL_ARM_ASM_START(%[tmp]) in fetch_negate()
118 BOOST_ATOMIC_DETAIL_ARM_ASM_END(%[tmp]) in fetch_negate()
121 [tmp] "=&l" (tmp), // %2 in fetch_negate()
133 uint32_t tmp; in negate() local
137 BOOST_ATOMIC_DETAIL_ARM_ASM_START(%[tmp]) in negate()
144 BOOST_ATOMIC_DETAIL_ARM_ASM_END(%[tmp]) in negate()
147 [tmp] "=&l" (tmp), // %2 in negate()
159 uint32_t tmp; in add() local
163 BOOST_ATOMIC_DETAIL_ARM_ASM_START(%[tmp]) in add()
[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/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/boost/libs/locale/src/std/
Dnumeric.cpp58 std::string const tmp = conv::from_utf<wchar_t>(wtmp,"UTF-8"); in do_put() local
59 for(unsigned i=0;i<tmp.size();i++) { in do_put()
60 *out++ = tmp[i]; in do_put()
295 std::locale tmp = std::locale(in,new std::numpunct_byname<CharType>(locale_name.c_str())); in create_basic_parsing() local
296 tmp = std::locale(tmp,new std::moneypunct_byname<CharType,true>(locale_name.c_str())); in create_basic_parsing()
297 tmp = std::locale(tmp,new std::moneypunct_byname<CharType,false>(locale_name.c_str())); in create_basic_parsing()
298 tmp = std::locale(tmp,new std::ctype_byname<CharType>(locale_name.c_str())); in create_basic_parsing()
299 return tmp; in create_basic_parsing()
305 std::locale tmp = create_basic_parsing<CharType>(in,locale_name); in create_basic_formatting() local
307 tmp = std::locale(tmp,new time_put_from_base<CharType>(base)); in create_basic_formatting()
[all …]
/third_party/e2fsprogs/lib/uuid/
Dpack.c41 uint32_t tmp; in uuid_pack() local
44 tmp = uu->time_low; in uuid_pack()
45 out[3] = (unsigned char) tmp; in uuid_pack()
46 tmp >>= 8; in uuid_pack()
47 out[2] = (unsigned char) tmp; in uuid_pack()
48 tmp >>= 8; in uuid_pack()
49 out[1] = (unsigned char) tmp; in uuid_pack()
50 tmp >>= 8; in uuid_pack()
51 out[0] = (unsigned char) tmp; in uuid_pack()
53 tmp = uu->time_mid; in uuid_pack()
[all …]
Dunpack.c42 uint32_t tmp; in uuid_unpack() local
44 tmp = *ptr++; in uuid_unpack()
45 tmp = (tmp << 8) | *ptr++; in uuid_unpack()
46 tmp = (tmp << 8) | *ptr++; in uuid_unpack()
47 tmp = (tmp << 8) | *ptr++; in uuid_unpack()
48 uu->time_low = tmp; in uuid_unpack()
50 tmp = *ptr++; in uuid_unpack()
51 tmp = (tmp << 8) | *ptr++; in uuid_unpack()
52 uu->time_mid = tmp; in uuid_unpack()
54 tmp = *ptr++; in uuid_unpack()
[all …]
/third_party/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/libwebsockets/scripts/
Dattack.sh18 LOG=/tmp/lwslog
40 diff /tmp/lwscap $CORPUS > /dev/null
47 cat $CORPUS > /tmp/plusforb
48 …\" type=\"text/css\" href=\"/error.css\"/></head><body><h1>403</h1></body></html>" >> /tmp/plusforb
49 diff /tmp/lwscap /tmp/plusforb > /dev/null
51 cat $CORPUS > /tmp/plusforb
53 …\" type=\"text/css\" href=\"/error.css\"/></head><body><h1>403</h1></body></html>" >> /tmp/plusforb
54 diff /tmp/lwscap /tmp/plusforb > /dev/null
58 tail -n 10 /tmp/lwscap
146 rm -f /tmp/lwscap
[all …]
/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/boost/libs/locale/src/util/
Dlocale_data.cpp29 std::string tmp = locale_name.substr(0,end); in parse_from_lang() local
30 if(tmp.empty()) in parse_from_lang()
32 for(unsigned i=0;i<tmp.size();i++) { in parse_from_lang()
33 if('A' <= tmp[i] && tmp[i]<='Z') in parse_from_lang()
34 tmp[i]=tmp[i]-'A'+'a'; in parse_from_lang()
35 else if(tmp[i] < 'a' || 'z' < tmp[i]) in parse_from_lang()
38 language = tmp; in parse_from_lang()
56 std::string tmp = locale_name.substr(0,end); in parse_from_country() local
57 if(tmp.empty()) in parse_from_country()
59 for(unsigned i=0;i<tmp.size();i++) { in parse_from_country()
[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/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 …]

12345678910>>...190