Home
last modified time | relevance | path

Searched refs:prev_val (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Lib/test/
Dsymlink_support.py9 prev_val = getattr(can_symlink, 'prev_val', None)
10 if prev_val is not None:
11 return prev_val
20 can_symlink.prev_val = can
/external/flatbuffers/include/flatbuffers/
Dminireflect.h121 const TypeTable *type_table, const uint8_t *prev_val, in IterateValue() argument
193 FLATBUFFERS_ASSERT(prev_val); in IterateValue()
194 auto union_type = *prev_val; // Always a uint8_t. in IterateValue()
196 auto type_vec = reinterpret_cast<const Vector<uint8_t> *>(prev_val); in IterateValue()
234 const uint8_t *prev_val = nullptr; in IterateObject() local
261 IterateValue(type, elem_ptr, ref, prev_val, static_cast<soffset_t>(j), in IterateObject()
267 IterateValue(type, val, ref, prev_val, -1, visitor); in IterateObject()
270 prev_val = val; in IterateObject()
/external/python/cpython3/Lib/
Dtoken.py116 prev_val = None
123 prev_val = val
126 if comment_match and prev_val is not None:
128 tokens[prev_val]['comment'] = comment
/external/webrtc/webrtc/modules/audio_processing/vad/
Dvad_audio_proc.cc157 static float QuadraticInterpolation(float prev_val, in QuadraticInterpolation() argument
163 prev_val = 1.0f / prev_val; in QuadraticInterpolation()
167 -(next_val - prev_val) * 0.5f / (next_val + prev_val - 2.f * curr_val); in QuadraticInterpolation()
/external/tensorflow/tensorflow/python/training/
Dwarm_starting_util_test.py118 _, prev_val = self._create_prev_run_var(
129 self.assertAllClose(prev_val, fruit_weights.eval(sess))
137 prev_val = np.concatenate([weights[0], weights[1]], axis=0)
147 self.assertAllClose(prev_val, fruit_weights.eval(sess))
150 _, prev_val = self._create_prev_run_var(
169 self.assertAllClose(prev_val, new_val)
177 prev_val = np.concatenate([weights[0], weights[1]], axis=0)
196 self.assertAllClose(prev_val, new_val)
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_squeezer.py122 prev_val = idleConf.GetOption(configType, section, option)
125 configType, section, option, prev_val)
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dnetworkconfig.cpp145 QString prev_val = phase2Select->currentText(); in eapChanged() local
177 if (phase2Select->itemText(i).compare(prev_val) == 0) { in eapChanged()
/external/tensorflow/tensorflow/contrib/verbs/
Drdma.cc946 int64_t prev_val = *(int64_t*)DMAHelper::base(&in) - 1; in ValidateChecksum() local
947 actual = Hash64((const char*)&prev_val, 8, 0); in ValidateChecksum()