/third_party/boost/boost/endian/detail/ |
D | endian_load.hpp | 75 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 …]
|
D | endian_store.hpp | 72 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/musl/ndk-test/script/ |
D | runtest-sanitize.sh | 20 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/musl/ndk-test/sanitize/ |
D | runtest.sh | 21 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/boost/libs/numeric/odeint/examples/ |
D | fpu.cpp | 42 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/lz4/tests/ |
D | Makefile | 119 @$(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/boost/boost/atomic/detail/ |
D | extra_ops_gcc_arm.hpp | 107 uint32_t tmp; in fetch_negate() local 111 BOOST_ATOMIC_DETAIL_ARM_ASM_START(%[tmp]) in fetch_negate() 115 … "strexb %[tmp], %[result], %[storage]\n\t" // *(&storage) = result, tmp = store failed in fetch_negate() 116 "teq %[tmp], #0\n\t" // flags = tmp==0 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() 141 … "strexb %[tmp], %[result], %[storage]\n\t" // *(&storage) = result, tmp = store failed in negate() 142 "teq %[tmp], #0\n\t" // flags = tmp==0 in negate() [all …]
|
D | extra_ops_gcc_aarch64.hpp | 132 uint32_t tmp; in fetch_negate() local 140 "st" st_mo "xrb %w[tmp], %w[result], %[storage]\n\t"\ in fetch_negate() 141 "cbnz %w[tmp], 1b\n\t"\ in fetch_negate() 142 …: [tmp] "=&r" (tmp), [result] "=&r" (result), [storage] "+Q" (storage), [original] "=&r" (original… in fetch_negate() 156 uint32_t tmp; in negate() local 164 "st" st_mo "xrb %w[tmp], %w[result], %[storage]\n\t"\ in negate() 165 "cbnz %w[tmp], 1b\n\t"\ in negate() 166 : [tmp] "=&r" (tmp), [storage] "+Q" (storage), [result] "=&r" (result)\ in negate() 182 uint32_t tmp; in add() local 190 "st" st_mo "xrb %w[tmp], %w[result], %[storage]\n\t"\ in add() [all …]
|
D | ops_gcc_arm.hpp | 87 uint32_t tmp; in exchange() local 90 BOOST_ATOMIC_DETAIL_ARM_ASM_START(%[tmp]) in exchange() 93 "strex %[tmp], %[value], %[storage]\n" // store the replacement, tmp = store failed in exchange() 94 "teq %[tmp], #0\n" // check if store succeeded 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() [all …]
|
D | core_arch_ops_gcc_arm.hpp | 88 uint32_t tmp; in exchange() local 91 BOOST_ATOMIC_DETAIL_ARM_ASM_START(%[tmp]) in exchange() 94 … "strex %[tmp], %[value], %[storage]\n\t" // store the replacement, tmp = store failed in exchange() 95 "teq %[tmp], #0\n\t" // check if store succeeded 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() [all …]
|
D | extra_ops_gcc_aarch32.hpp | 130 uint32_t tmp; in fetch_negate() local 137 "st" st_mo "exb %[tmp], %[result], %[storage]\n\t"\ in fetch_negate() 138 "teq %[tmp], #0\n\t"\ in fetch_negate() 140 …: [original] "=&r" (original), [result] "=&r" (result), [tmp] "=&r" (tmp), [storage] "+Q" (storage… in fetch_negate() 154 uint32_t tmp; in negate() local 161 "st" st_mo "exb %[tmp], %[result], %[storage]\n\t"\ in negate() 162 "teq %[tmp], #0\n\t"\ in negate() 164 : [result] "=&r" (result), [tmp] "=&r" (tmp), [storage] "+Q" (storage)\ in negate() 178 uint32_t tmp; in add() local 185 "st" st_mo "exb %[tmp], %[result], %[storage]\n\t"\ in add() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
D | sae.c | 24 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/gettext/gettext-tools/src/ |
D | msgl-cat.c | 70 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/ltp/testcases/kernel/security/tomoyo/ |
D | tomoyo_new_test.c | 66 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/boost/libs/locale/src/std/ |
D | numeric.cpp | 58 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/gstreamer/gstplugins_bad/gst/gaudieffects/ |
D | gstgaudieffectsorc.orc | 9 .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/skia/third_party/externals/abseil-cpp/absl/debugging/internal/ |
D | demangle_test.cc | 43 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/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
D | sae.c | 26 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/mbedtls/tests/suites/ |
D | test_suite_mps.function | 46 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/json/test/thirdparty/Fuzzer/test/ |
D | merge.test | 3 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/ |
D | ipcrm.c | 78 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/ |
D | cts128.c | 95 } 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/ |
D | tree.h | 87 /* 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/ |
D | cabac.h | 58 #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/flutter/skia/docker/skia-wasm-release/ |
D | Dockerfile | 4 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 …]
|