/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
D | lp_bld_blend.c | 90 LLVMValueRef term2) in lp_build_blend_func() argument 94 return lp_build_add(bld, term1, term2); in lp_build_blend_func() 96 return lp_build_sub(bld, term1, term2); in lp_build_blend_func() 98 return lp_build_sub(bld, term2, term1); in lp_build_blend_func() 100 return lp_build_min(bld, term1, term2); in lp_build_blend_func() 102 return lp_build_max(bld, term1, term2); in lp_build_blend_func()
|
D | lp_bld_blend.h | 97 LLVMValueRef term2);
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_bld_blend.c | 90 LLVMValueRef term2) in lp_build_blend_func() argument 94 return lp_build_add(bld, term1, term2); in lp_build_blend_func() 96 return lp_build_sub(bld, term1, term2); in lp_build_blend_func() 98 return lp_build_sub(bld, term2, term1); in lp_build_blend_func() 100 return lp_build_min(bld, term1, term2); in lp_build_blend_func() 102 return lp_build_max(bld, term1, term2); in lp_build_blend_func()
|
D | lp_bld_blend.h | 97 LLVMValueRef term2);
|
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/ |
D | sctp_crc32.c | 537 uint32_t term1, term2; in sctp_crc32c_sb8_64_bit() local 559 term2 = crc >> 16; in sctp_crc32c_sb8_64_bit() 561 sctp_crc_tableil8_o72[term2 & 0x000000FF] ^ in sctp_crc32c_sb8_64_bit() 562 sctp_crc_tableil8_o64[(term2 >> 8) & 0x000000FF]; in sctp_crc32c_sb8_64_bit() 573 term2 = (*(const uint32_t *) p_buf) >> 16; in sctp_crc32c_sb8_64_bit() 576 sctp_crc_tableil8_o40[term2 & 0x000000FF] ^ in sctp_crc32c_sb8_64_bit() 577 sctp_crc_tableil8_o32[(term2 >> 8) & 0x000000FF]; in sctp_crc32c_sb8_64_bit()
|
/external/markdown/tests/extensions-x-def_list/ |
D | simple_def-lists.txt | 6 term2-1 7 term2-2
|
/external/valgrind/main/memcheck/tests/vbit-test/ |
D | binary.c | 133 vbits_t term1, term2, term3; in check_result_for_binary() local 135 term2 = and_combine(opnd1->vbits, opnd2->vbits, opnd2->value, 0); in check_result_for_binary() 137 expected_vbits = or_vbits(term1, or_vbits(term2, term3)); in check_result_for_binary() 149 vbits_t term1, term2, term3; in check_result_for_binary() local 151 term2 = and_combine(opnd1->vbits, opnd2->vbits, opnd2->value, 1); in check_result_for_binary() 153 expected_vbits = or_vbits(term1, or_vbits(term2, term3)); in check_result_for_binary()
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | fts3rnd.test | 400 set term2 [random_term] 401 set match "$term1 $op $term2" 404 } [$proc [simple_phrase $term1] [simple_phrase $term2]] 417 set term2 [random_term] 420 set match "$term1 NEAR $term2 $op $term3 NEAR $term4" 424 [simple_near [list $term1 $term2] 10] \
|
/external/skia/experimental/Intersection/ |
D | LineIntersection.cpp | 24 double term2 = b[1].x * b[0].y - b[1].y * b[0].x; in lineIntersect() local 25 p.x = (term1 * bxLen - axLen * term2) / denom; in lineIntersect() 26 p.y = (term1 * byLen - ayLen * term2) / denom; in lineIntersect()
|
/external/chromium_org/third_party/skia/experimental/Intersection/ |
D | LineIntersection.cpp | 24 double term2 = b[1].x * b[0].y - b[1].y * b[0].x; in lineIntersect() local 25 p.x = (term1 * bxLen - axLen * term2) / denom; in lineIntersect() 26 p.y = (term1 * byLen - ayLen * term2) / denom; in lineIntersect()
|
/external/qemu/fpu/ |
D | softfloat.c | 4785 uint64_t rem0, rem1, rem2, term0, term1, term2; in floatx80_div() local 4840 mul64To128( bSig, zSig1, &term1, &term2 ); in floatx80_div() 4841 sub128( rem1, 0, term1, term2, &rem1, &rem2 ); in floatx80_div() 4961 uint64_t rem0, rem1, rem2, rem3, term0, term1, term2, term3; in floatx80_sqrt() local 4999 mul64To128( doubleZSig0, zSig1, &term1, &term2 ); in floatx80_sqrt() 5000 sub128( rem1, 0, term1, term2, &rem1, &rem2 ); in floatx80_sqrt() 5001 mul64To128( zSig1, zSig1, &term2, &term3 ); in floatx80_sqrt() 5002 sub192( rem1, rem2, 0, 0, term2, term3, &rem1, &rem2, &rem3 ); in floatx80_sqrt() 5005 shortShift128Left( 0, zSig1, 1, &term2, &term3 ); in floatx80_sqrt() 5007 term2 |= doubleZSig0; in floatx80_sqrt() [all …]
|
/external/chromium_org/third_party/skia/src/pathops/ |
D | SkDLineIntersection.cpp | 22 double term2 = b[1].fX * b[0].fY - b[1].fY * b[0].fX; in Line() local 24 p.fX = (term1 * bxLen - axLen * term2) / denom; in Line() 25 p.fY = (term1 * byLen - ayLen * term2) / denom; in Line()
|
/external/skia/src/pathops/ |
D | SkDLineIntersection.cpp | 22 double term2 = b[1].fX * b[0].fY - b[1].fY * b[0].fX; in Line() local 24 p.fX = (term1 * bxLen - axLen * term2) / denom; in Line() 25 p.fY = (term1 * byLen - ayLen * term2) / denom; in Line()
|
/external/chromium_org/chrome/browser/history/ |
D | history_backend_unittest.cc | 453 const base::string16& term2); 3115 const base::string16& term2) { in PopulateTestURLsAndSearchTerms() argument 3129 backend_->SetKeywordSearchTermsForURL(row2->url(), kTestKeywordId, term2); in PopulateTestURLsAndSearchTerms() 3136 base::string16 term2(base::UTF8ToUTF16(kTestSearchTerm2)); in TEST_F() local 3137 PopulateTestURLsAndSearchTerms(&row1, &row2, term1, term2); in TEST_F() 3150 EXPECT_EQ(1u, GetNumberOfMatchingSearchTerms(kTestKeywordId, term2)); in TEST_F() 3159 base::string16 term2(base::UTF8ToUTF16(kTestSearchTerm2)); in TEST_F() local 3160 PopulateTestURLsAndSearchTerms(&row1, &row2, term1, term2); in TEST_F() 3175 EXPECT_EQ(0u, GetNumberOfMatchingSearchTerms(kTestKeywordId, term2)); in TEST_F() 3184 base::string16 term2(base::UTF8ToUTF16(kTestSearchTerm2)); in TEST_F() local [all …]
|
/external/chromium_org/chrome/browser/history/android/ |
D | android_provider_backend_unittest.cc | 1241 base::string16 term2 = UTF8ToUTF16("Search term 2"); in TEST_F() local 1242 ASSERT_TRUE(history_db_.SetKeywordSearchTermsForURL(url_id, 1, term2)); in TEST_F() 1252 SearchTermID id2 = history_db_.GetSearchTerm(term2, &keyword_cache); in TEST_F() 1254 EXPECT_EQ(term2, keyword_cache.term); in TEST_F() 1274 EXPECT_EQ(id2, history_db_.GetSearchTerm(term2, NULL)); in TEST_F() 1282 EXPECT_EQ(id2, history_db_.GetSearchTerm(term2, NULL)); in TEST_F() 1472 base::string16 term2 = UTF8ToUTF16("Search term 2"); in TEST_F() local 1475 ASSERT_TRUE(history_db_.SetKeywordSearchTermsForURL(url_id2, 1, term2)); in TEST_F() 1483 args.push_back(term2); in TEST_F()
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/ |
D | v8-earley-boyer.js | 3599 var term2; 3616 …if ((((term2 = ((lst.car).cdr.car)), (unify_subst_nboyer = null), (one_way_unify1_nboyer(sc_term_1… 3629 one_way_unify1_nboyer = function(term1, term2) { argument 3633 if (!(term2 instanceof sc_Pair)) 3635 (temp_temp = (sc_assq(term2, unify_subst_nboyer))); 3639 if ((sc_isNumber(term2))) 3640 return (sc_isEqual(term1, term2)); 3643 … (unify_subst_nboyer = (new sc_Pair((new sc_Pair(term2, term1)), unify_subst_nboyer))); 3651 if (((term1.car)===(term2.car))) 3654 (lst2 = (term2.cdr));
|
/external/chromium_org/v8/benchmarks/ |
D | earley-boyer.js | 3605 var term2; 3622 …if ((((term2 = ((lst.car).cdr.car)), (unify_subst_nboyer = null), (one_way_unify1_nboyer(sc_term_1… 3635 one_way_unify1_nboyer = function(term1, term2) { argument 3639 if (!(term2 instanceof sc_Pair)) 3641 (temp_temp = (sc_assq(term2, unify_subst_nboyer))); 3645 if ((sc_isNumber(term2))) 3646 return (sc_isEqual(term1, term2)); 3649 … (unify_subst_nboyer = (new sc_Pair((new sc_Pair(term2, term1)), unify_subst_nboyer))); 3657 if (((term1.car)===(term2.car))) 3660 (lst2 = (term2.cdr));
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/ |
D | v8-earley-boyer.js | 3599 var term2; 3616 …if ((((term2 = ((lst.car).cdr.car)), (unify_subst_nboyer = null), (one_way_unify1_nboyer(sc_term_1… 3629 one_way_unify1_nboyer = function(term1, term2) { argument 3633 if (!(term2 instanceof sc_Pair)) 3635 (temp_temp = (sc_assq(term2, unify_subst_nboyer))); 3639 if ((sc_isNumber(term2))) 3640 return (sc_isEqual(term1, term2)); 3643 … (unify_subst_nboyer = (new sc_Pair((new sc_Pair(term2, term1)), unify_subst_nboyer))); 3651 if (((term1.car)===(term2.car))) 3654 (lst2 = (term2.cdr));
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/ |
D | v8-earley-boyer.js | 3599 var term2; 3616 …if ((((term2 = ((lst.car).cdr.car)), (unify_subst_nboyer = null), (one_way_unify1_nboyer(sc_term_1… 3629 one_way_unify1_nboyer = function(term1, term2) { argument 3633 if (!(term2 instanceof sc_Pair)) 3635 (temp_temp = (sc_assq(term2, unify_subst_nboyer))); 3639 if ((sc_isNumber(term2))) 3640 return (sc_isEqual(term1, term2)); 3643 … (unify_subst_nboyer = (new sc_Pair((new sc_Pair(term2, term1)), unify_subst_nboyer))); 3651 if (((term1.car)===(term2.car))) 3654 (lst2 = (term2.cdr));
|
/external/svox/pico/lib/ |
D | picosig2.c | 528 picoos_int32 delta, term1, term2; in mel_2_lin_lookup() local 571 term2 = XXr[k]; in mel_2_lin_lookup() 573 delta = term1 - term2; in mel_2_lin_lookup() 574 XXr[nI] = term2 + ((D[nI] * delta) >> 5); /* ok because nI<=A[nI] <=B[nI] */ in mel_2_lin_lookup()
|