/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_subexp.c | 17 #define vp9_cost_upd256 ((int)(vp9_cost_one(upd) - vp9_cost_zero(upd))) 121 vpx_prob upd) { in vp9_prob_diff_update_savings_search() argument 143 vpx_prob upd, in vp9_prob_diff_update_savings_search_model() argument 201 const vpx_prob upd = DIFF_UPDATE_PROB; in vp9_cond_prob_diff_update() local 204 upd); in vp9_cond_prob_diff_update() 207 vpx_write(w, 1, upd); in vp9_cond_prob_diff_update() 211 vpx_write(w, 0, upd); in vp9_cond_prob_diff_update()
|
D | vp9_subexp.h | 31 vpx_prob upd); 37 vpx_prob upd,
|
D | vp9_bitstream.c | 535 const vpx_prob upd = DIFF_UPDATE_PROB; in update_coef_probs_common() local 557 old_coef_probs[i][j][k][l], &newp, upd, stepsize); in update_coef_probs_common() 560 frame_branch_ct[i][j][k][l][t], oldp, &newp, upd); in update_coef_probs_common() 564 savings += s - (int)(vp9_cost_zero(upd)); in update_coef_probs_common() 566 savings -= (int)(vp9_cost_zero(upd)); in update_coef_probs_common() 589 const vpx_prob upd = DIFF_UPDATE_PROB; in update_coef_probs_common() local 595 old_coef_probs[i][j][k][l], &newp, upd, stepsize); in update_coef_probs_common() 599 *oldp, &newp, upd); in update_coef_probs_common() 602 vpx_write(bc, u, upd); in update_coef_probs_common() 633 old_coef_probs[i][j][k][l], &newp, upd, stepsize); in update_coef_probs_common() [all …]
|
D | vp9_encoder.c | 4769 int upd = 7; local 4772 upd ^= VP9_LAST_FLAG; 4775 upd ^= VP9_GOLD_FLAG; 4778 upd ^= VP9_ALT_FLAG; 4780 vp9_update_reference(cpi, upd);
|
/external/libvpx/libvpx/vp8/encoder/ |
D | bitstream.c | 843 const vp8_prob upd) in prob_update_savings() argument 848 ((vp8_cost_one(upd) - vp8_cost_zero(upd)) >> 8); in prob_update_savings() 899 const vp8_prob upd = vp8_coef_update_probs [i][j][k][t]; in independent_coef_context_savings() local 900 const int s = prob_update_savings(ct, oldp, newp, upd); in independent_coef_context_savings() 960 const vp8_prob upd = vp8_coef_update_probs [i][j][k][t]; in default_coef_context_savings() local 961 const int s = prob_update_savings(ct, oldp, newp, upd); in default_coef_context_savings() 1108 const vp8_prob upd = vp8_coef_update_probs[i][j][k][t]; in vp8_update_coef_probs() local 1111 prob_update_savings(ct, oldp, newp, upd); in vp8_update_coef_probs() 1132 const vp8_prob upd = vp8_coef_update_probs [i][j][k][t]; in vp8_update_coef_probs() local 1142 *Pold, newp, upd); in vp8_update_coef_probs() [all …]
|
/external/libvpx/libvpx/vp8/ |
D | vp8_cx_iface.c | 835 int upd = 7; in set_reference_and_update() local 838 upd ^= VP8_LAST_FRAME; in set_reference_and_update() 841 upd ^= VP8_GOLD_FRAME; in set_reference_and_update() 844 upd ^= VP8_ALTR_FRAME; in set_reference_and_update() 846 vp8_update_reference(ctx->cpi, upd); in set_reference_and_update()
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/ |
D | MacTest.java | 433 byte[] upd = { (byte) 5, (byte) 4, (byte) 3, (byte) 2, (byte) 1, (byte) 0 }; in testMac12() 443 res2 = macs[i].doFinal(upd); in testMac12() 444 macs[i].update(upd); in testMac12()
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_nl80211.c | 3818 struct nl80211_sta_flag_update upd; in wpa_driver_nl80211_sta_add() local 3944 os_memset(&upd, 0, sizeof(upd)); in wpa_driver_nl80211_sta_add() 3945 upd.set = sta_flags_nl80211(params->flags); in wpa_driver_nl80211_sta_add() 3946 upd.mask = upd.set | sta_flags_nl80211(params->flags_mask); in wpa_driver_nl80211_sta_add() 3966 upd.mask &= ~(BIT(NL80211_STA_FLAG_ASSOCIATED) | in wpa_driver_nl80211_sta_add() 3971 upd.mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED); in wpa_driver_nl80211_sta_add() 3973 upd.mask |= BIT(NL80211_STA_FLAG_ASSOCIATED); in wpa_driver_nl80211_sta_add() 3978 upd.set, upd.mask); in wpa_driver_nl80211_sta_add() 3979 if (nla_put(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd)) in wpa_driver_nl80211_sta_add() 4434 struct nl80211_sta_flag_update upd; in wpa_driver_nl80211_sta_set_flags() local [all …]
|
/external/wpa_supplicant_8/hs20/server/ |
D | spp_server.c | 1218 xml_node_t *pps, *c, *trust, *aaa, *aaa1, *upd, *homesp; in build_pps() local 1239 upd = xml_node_create(ctx->xml, c, NULL, "SubscriptionUpdate"); in build_pps() 1240 add_text_node(ctx, upd, "UpdateInterval", "4294967295"); in build_pps() 1241 add_text_node(ctx, upd, "UpdateMethod", "ClientInitiated"); in build_pps() 1242 add_text_node(ctx, upd, "Restriction", "HomeSP"); in build_pps() 1243 add_text_node_conf(ctx, realm, upd, "URI", "spp_http_auth_url"); in build_pps() 1244 trust = xml_node_create(ctx->xml, upd, NULL, "TrustRoot"); in build_pps()
|
/external/valgrind/docs/internals/ |
D | 3_0_BUGSTATUS.txt | 590 n-i-bz Dirk r4360 (upd email addrs from trunk)
|
/external/hyphenation-patterns/de/ |
D | hyph-de-1996.pat.txt | 19160 3upd
|
D | hyph-de-1901.pat.txt | 19365 3upd
|
D | hyph-de-ch-1901.pat.txt | 19131 3upd
|
/external/dbus/ |
D | ChangeLog.pre-1-0 | 9410 * test/break-loader.c: (randomly_add_one_byte): upd. for
|
/external/valgrind/none/tests/arm64/ |
D | memory.stdout.exp | 37 LDRS{B,H,W} (simm9, upd) (upd check is MISSING) 2476 LDRS{B,H,W} (simm9, upd)
|