Searched defs:state1 (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/net/http/
H A Ddisk_cache_based_quic_server_info_unittest.cc126 const QuicServerInfo::State& state1 = quic_server_info->state(); local
127 EXPECT_EQ(server_config_a, state1.server_config);
128 EXPECT_EQ(source_address_token_a, state1.source_address_token);
129 EXPECT_EQ(server_config_sig_a, state1.server_config_sig);
130 EXPECT_EQ(2U, state1.certs.size());
131 EXPECT_EQ(cert_a, state1.certs[0]);
132 EXPECT_EQ(cert_b, state1.certs[1]);
152 QuicServerInfo::State* state1 = quic_server_info1->mutable_state(); local
153 EXPECT_TRUE(state1->certs.empty());
159 state1
272 const QuicServerInfo::State& state1 = quic_server_info->state(); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_code.c87 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state0, unsigned state1) argument
95 c->Constants[index].u.State[1] == state1)
104 constant.u.State[1] = state1;
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dresample_by_2.c76 register int32_t state1 = filtState[1]; local
87 diff = in32 - state1;
91 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1);
92 state1 = tmp1;
117 filtState[1] = state1;
134 register int32_t state1 = filtState[1]; local
145 diff = in32 - state1;
149 tmp2 = MUL_ACCUM_1(kResampleAllpass1[1], diff, state1);
150 state1 = tmp1;
176 filtState[1] = state1;
[all...]
H A Dresample_by_2_mips.c39 register int32_t state1 = filtState[1]; local
72 "subu %[diff1], %[in321], %[state1] \n\t"
77 : [state1] "r" (state1), [state5] "r" (state5)
103 "addu %[tmp21], %[state1], %[tmp21] \n\t"
106 "addiu %[state1], %[tmp11], 0 \n\t"
110 [state1] "+r" (state1),
157 diff = in32 - state1;
161 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1);
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_code.c87 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state0, unsigned state1) argument
95 c->Constants[index].u.State[1] == state1)
104 constant.u.State[1] = state1;
/external/webrtc/src/common_audio/signal_processing/
H A Dresample_by_2.c75 register WebRtc_Word32 state1 = filtState[1]; local
86 diff = in32 - state1;
90 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1);
91 state1 = tmp1;
116 filtState[1] = state1;
132 register WebRtc_Word32 state1 = filtState[1]; local
143 diff = in32 - state1;
147 tmp2 = MUL_ACCUM_1(kResampleAllpass1[1], diff, state1);
148 state1 = tmp1;
174 filtState[1] = state1;
[all...]
/external/aac/libSBRenc/src/
H A Dresampler.cpp391 FIXP_BQS state1, state2, state1b, state2b; local
393 state1 = states[0][s1];
405 state0 = input + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]);
417 state1 = state1b;
433 FIXP_BQS state1, state2; local
437 state1 = states[i][s1];
440 state0 = input - fMult(state1, coeff[A1]) - fMult(state2, coeff[A2]);
441 y = state0 + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]);
/external/chromium_org/chrome/browser/ui/fullscreen/
H A Dfullscreen_controller_state_test.cc805 State state1 = static_cast<State>(state1_int); local
806 output << "{ // " << GetStateString(state1) << ":\n";
809 const StateTransitionInfo& info = state_transitions_[state1][state2];
H A Dfullscreen_controller_state_unittest.cc400 State state1 = static_cast<State>(state1_int); local
403 if (ShouldSkipStateAndEventPair(state1, EVENT_INVALID) ||
407 if (NextTransitionInShortestPath(state1, state2, NUM_STATES).state ==
410 << GetStateString(state1) << " " << GetStateString(state2);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dpubsubstateclient.h173 virtual bool StatesEqual(const C& state1, const C& state2) { argument
174 return state1 == state2;
H A Dhangoutpubsubclient.cc116 virtual bool StatesEqual(const bool& state1, const bool& state2) { argument
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilterbanks.c101 int32_t state1 = state[1]; local
114 "smmulr %[b2], %[tmp_coeff1], %[state1]\n\t"
118 "smmulr %[b1], %[tmp_coeff1], %[state1]\n\t"
127 [state1]"r"(state1)
134 b1 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[7], state1) +
135 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[6], state1) >> 16);
140 b2 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[3], state1) +
141 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[2], state1) >> 16);
150 state1
[all...]
H A Dfilterbanks_mips.c113 int32_t state1 = state[1]; local
127 "sra %[state1_hi], %[state1], 16 \n\t"
129 "andi %[state1_lo], %[state1], 0xFFFF \n\t"
141 [state1] "r" (state1)
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dfilterbanks.c62 WebRtc_Word32 state1 = state[1]; local
75 "smmulr %[b2], %[tmp_coeff1], %[state1]\n\t"
79 "smmulr %[b1], %[tmp_coeff1], %[state1]\n\t"
88 [state1]"r"(state1)
94 b1 = WEBRTC_SPL_MUL_32_32_RSFT32(coefficient[7], coefficient[6], state1);
98 b2 = WEBRTC_SPL_MUL_32_32_RSFT32(coefficient[3], coefficient[2], state1);
107 state1 = state0;
111 state[1] = state1;
/external/chromium_org/v8/src/
H A Dhydrogen-check-elimination.cc54 static State StateMerge(State state1, State state2) { argument
55 if (state1 == state2) return state1;
56 if ((state1 == CHECKED && state2 == CHECKED_STABLE) ||
57 (state2 == CHECKED && state1 == CHECKED_STABLE)) {
60 DCHECK((state1 == CHECKED_STABLE && state2 == UNCHECKED_STABLE) ||
61 (state2 == CHECKED_STABLE && state1 == UNCHECKED_STABLE));
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_impl_unittest.cc1982 TestInterstitialPage::InterstitialState state1 = local
1987 new TestInterstitialPage(contents(), true, url1, &state1, &deleted1);
2004 EXPECT_EQ(TestInterstitialPage::CANCELED, state1);
2035 TestInterstitialPage::InterstitialState state1 = local
2040 new TestInterstitialPage(contents(), true, url1, &state1, &deleted1);
2048 EXPECT_EQ(TestInterstitialPage::OKED, state1);
2122 TestInterstitialPage::InterstitialState state1 = local
2127 &state1, &deleted1);
2143 EXPECT_EQ(TestInterstitialPage::CANCELED, state1);
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_window_tree_host_x11.cc1375 ::Atom state1,
1385 xclient.xclient.data.l[1] = state1;
1374 SetWMSpecState(bool enabled, ::Atom state1, ::Atom state2) argument
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcmsccoll.c5493 uint32_t state1[2] = { 0, 0 }; local
5524 keySize1 = ucol_nextSortKeyPart(ucol, &uiter1, state1, sortKey1, SORTKEYLEN, &status);
/external/chromium_org/third_party/libxml/src/
H A Drelaxng.c667 xmlRelaxNGValidStatePtr state1,
1336 * @state1: a validation state
1345 xmlRelaxNGValidStatePtr state1,
1350 if ((state1 == NULL) || (state2 == NULL))
1352 if (state1 == state2)
1354 if (state1->node != state2->node)
1356 if (state1->seq != state2->seq)
1358 if (state1->nbAttrLeft != state2->nbAttrLeft)
1360 if (state1->nbAttrs != state2->nbAttrs)
1362 if (state1
1344 xmlRelaxNGEqualValidState(xmlRelaxNGValidCtxtPtr ctxt ATTRIBUTE_UNUSED, xmlRelaxNGValidStatePtr state1, xmlRelaxNGValidStatePtr state2) argument
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcmsccoll.c4138 uint32_t state1[2] = { 0, 0 }; local
4169 keySize1 = ucol_nextSortKeyPart(ucol, &uiter1, state1, sortKey1, SORTKEYLEN, &status);
/external/libxml2/
H A Drelaxng.c668 xmlRelaxNGValidStatePtr state1,
1337 * @state1: a validation state
1346 xmlRelaxNGValidStatePtr state1,
1351 if ((state1 == NULL) || (state2 == NULL))
1353 if (state1 == state2)
1355 if (state1->node != state2->node)
1357 if (state1->seq != state2->seq)
1359 if (state1->nbAttrLeft != state2->nbAttrLeft)
1361 if (state1->nbAttrs != state2->nbAttrs)
1363 if (state1
1345 xmlRelaxNGEqualValidState(xmlRelaxNGValidCtxtPtr ctxt ATTRIBUTE_UNUSED, xmlRelaxNGValidStatePtr state1, xmlRelaxNGValidStatePtr state2) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.el_1.0.0.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 9304 milliseconds