Home
last modified time | relevance | path

Searched refs:err2 (Results 26 - 50 of 65) sorted by relevance

123

/third_party/openssl/crypto/objects/
H A Dobj_dat.c186 goto err2; in OBJ_add_object()
189 goto err2; in OBJ_add_object()
192 goto err2; in OBJ_add_object()
195 goto err2; in OBJ_add_object()
211 err2: in OBJ_add_object()
/third_party/ffmpeg/libavcodec/tests/
H A Ddct.c185 int64_t err2, ti, ti1, it1, err_sum = 0; in dct_error() local
198 err2 = 0; in dct_error()
228 err2 += v * v; in dct_error()
249 omse = (double) err2 / NB_ITS / 64; in dct_error()
/third_party/node/deps/base64/base64/test/
H A Dbenchmark.c265 goto err2; in main()
280 err2: free(b.enc); in main()
/third_party/vk-gl-cts/framework/common/
H A DtcuFuzzyImageCompare.cpp334 const float err2 = float(minDist2) / float(scale*scale); in fuzzyCompare() local
335 const float err4 = err2*err2; in fuzzyCompare()
/third_party/ltp/testcases/kernel/device-drivers/block/block_dev_kernel/
H A Dltp_block_dev.c414 goto err2; in test_init_module()
419 err2: in test_init_module()
/third_party/node/deps/npm/node_modules/graceful-fs/
H A Dpolyfills.js178 fs.close(fd, function(err2) {
179 if (callback) callback(err || err2)
/third_party/openssl/crypto/x509/
H A Dx509_att.c93 goto err2; in STACK_OF()
101 err2: in STACK_OF()
/third_party/selinux/libselinux/src/
H A Dstringrep.c82 goto err2; in discover_class()
166 err2: in discover_class()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/
H A Drdb_general_store_test.cpp662 auto [err2, result2] = store->Query(table, sql, std::move(g_RdbValues)); in HWTEST_F()
663 EXPECT_EQ(err2, GeneralError::E_OK); in HWTEST_F()
686 auto [err2, result2] = store->Query(table, query); in HWTEST_F()
687 EXPECT_EQ(err2, GeneralError::E_ALREADY_CLOSED); in HWTEST_F()
1018 auto [err2, result2] = store->QuerySql("sql", std::move(g_RdbValues)); in HWTEST_F()
/third_party/ltp/testcases/kernel/device-drivers/acpi/
H A Dltp_acpi_cmds.c644 goto err2; in init_module()
673 err2: in init_module()
/third_party/ltp/testcases/kernel/device-drivers/pci/tpci_kernel/
H A Dltp_tpci.c703 goto err2; in tpci_init_module()
716 err2: in tpci_init_module()
/third_party/node/test/parallel/
H A Dtest-util-isDeepStrictEqual.js420 const err2 = new Error('foo2');
422 notUtilIsDeepStrict(err1, err2, assert.AssertionError);
H A Dtest-assert.js1368 const err2 = new assert.AssertionError({
1374 assert(!err2.stack.includes('hidden'));
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx509_att.c93 goto err2; in STACK_OF()
101 err2: in STACK_OF()
/third_party/musl/src/malloc/liteos_a/user_debug/
H A Dmemory_check.c563 goto err2; in watch_mem()
597 goto err2; in watch_mem()
607 err2: in watch_mem()
/third_party/musl/porting/liteos_a/user_debug/src/malloc/
H A Dmemory_check.c548 goto err2; in watch_mem()
582 goto err2; in watch_mem()
592 err2: in watch_mem()
/third_party/alsa-lib/src/ucm/
H A Dparser.c639 int err1 = 0, err2 = 0, err3 = 0, err4 = 0, err5 = 0; in uc_mgr_evaluate_inplace() local
641 while (err1 == 0 || err2 == 0 || err3 == 0 || err4 == 0 || err5 == 0) { in uc_mgr_evaluate_inplace()
652 err2 = evaluate_include(uc_mgr, cfg); in uc_mgr_evaluate_inplace()
653 if (err2 < 0) in uc_mgr_evaluate_inplace()
654 return err2; in uc_mgr_evaluate_inplace()
657 if (err2 == 0) in uc_mgr_evaluate_inplace()
/third_party/openssl/test/
H A Ddhtest.c77 goto err2; in dh_test()
89 goto err2; in dh_test()
96 goto err2; in dh_test()
102 goto err2; in dh_test()
107 goto err2; in dh_test()
214 err2: in dh_test()
/third_party/lwip/src/apps/lwiperf/
H A Dlwiperf.c503 err_t err2 = lwiperf_tx_start_passive(conn); in lwiperf_tcp_recv() local
504 if (err2 != ERR_OK) { in lwiperf_tcp_recv()
/third_party/node/deps/openssl/openssl/crypto/rand/
H A Drand_lib.c467 goto err2; in rand_ossl_ctx_new()
471 err2: in rand_ossl_ctx_new()
/third_party/openssl/crypto/rand/
H A Drand_lib.c467 goto err2; in rand_ossl_ctx_new()
471 err2: in rand_ossl_ctx_new()
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dquant_enc.c862 // left[1] | tmp[2] tmp[3] err2 err3 in CorrectDCValues()
864 // Final errors {err1,err2,err3} are preserved and later restored in CorrectDCValues()
871 int err0, err1, err2, err3; in CorrectDCValues() local
877 err2 = QuantizeSingle(&c[2][0], mtx); in CorrectDCValues()
878 c[3][0] += (C1 * err1 + C2 * err2) >> (DSHIFT - DSCALE); in CorrectDCValues()
882 assert(abs(err1) <= 127 && abs(err2) <= 127 && abs(err3) <= 127); in CorrectDCValues()
884 rd->derr[ch][1] = (int8_t)err2; in CorrectDCValues()
897 top[0] = rd->derr[ch][1]; // ... err2 in StoreDiffusionErrors()
/third_party/node/deps/openssl/openssl/crypto/cms/
H A Dcms_smime.c409 goto err2; in CMS_verify()
479 err2: in CMS_verify()
/third_party/node/deps/openssl/openssl/ssl/
H A Dt1_enc.c726 goto err2; in tls1_export_keying_material()
780 err2: in tls1_export_keying_material()
/third_party/openssl/crypto/cms/
H A Dcms_smime.c410 goto err2; in CMS_verify()
480 err2: in CMS_verify()

Completed in 27 milliseconds

123