Home
last modified time | relevance | path

Searched refs:update_value (Results 1 – 15 of 15) sorted by relevance

/external/bcc/src/cc/api/
DBPFTable.h99 StatusTuple update_value(const std::string& key_str,
101 StatusTuple update_value(const std::string& key_str,
138 virtual StatusTuple update_value(const int& index, const ValueType& value) { in update_value() function
182 StatusTuple update_value(const int& index, in update_value() function
186 return BPFArrayTable<std::vector<ValueType>>::update_value(index, value); in update_value()
212 virtual StatusTuple update_value(const KeyType& key, const ValueType& value) { in update_value() function
284 StatusTuple update_value(const KeyType& key, in update_value() function
288 return BPFHashTable<KeyType, std::vector<ValueType>>::update_value(key, in update_value()
358 StatusTuple update_value(const int& index, const int& prog_fd);
366 StatusTuple update_value(const int& index, const int& cgroup2_fd);
[all …]
DBPFTable.cc84 StatusTuple BPFTable::update_value(const std::string& key_str, in update_value() function in ebpf::BPFTable
105 StatusTuple BPFTable::update_value(const std::string& key_str, in update_value() function in ebpf::BPFTable
523 StatusTuple BPFProgTable::update_value(const int& index, const int& prog_fd) { in update_value() function in ebpf::BPFProgTable
542 StatusTuple BPFCgroupArray::update_value(const int& index, in update_value() function in ebpf::BPFCgroupArray
549 StatusTuple BPFCgroupArray::update_value(const int& index, in update_value() function in ebpf::BPFCgroupArray
554 TRY2(update_value(index, (int)f)); in update_value()
571 StatusTuple BPFDevmapTable::update_value(const int& index, in update_value() function in ebpf::BPFDevmapTable
/external/bcc/tests/cc/
Dtest_bpf_table.cc39 res = t.update_value("0x07", "0x42");
46 res = t.update_value("0x11", "0x777");
58 res = t.update_value("0x15", "0x888");
84 res = t.update_value("0x07", "0x42");
115 res = t.update_value("0x07", v1);
142 res = t.update_value(key, value);
149 res = t.update_value(key, value);
153 res = t.update_value(key, value);
Dtest_hash_table.cc49 res = t.update_value(k, v1);
57 res = t.update_value(k, v1);
78 res = t.update_value(i * 3, i);
131 res = t.update_value(k, v1);
143 res = t.update_value(k, v1);
171 res = t.update_value(k, v);
Dtest_array_table.cc54 res = t.update_value(i, v1);
63 res = t.update_value(i, v1);
86 res = t.update_value(i, v);
133 res = t.update_value(i, v1);
Dtest_prog_table.cc50 res = t.update_value(0, fd);
58 res = t.update_value(17, fd);
Dtest_shared_table.cc57 res = t_ns1_a.update_value(13, 42);
65 res = t_ns2_a.update_value(13, 69);
/external/tensorflow/tensorflow/python/distribute/
Dvars_test.py88 def assign(fn, v, update_value, cross_replica): argument
89 update_fn = lambda: getattr(v, fn)(update_value)
119 fn, update_value = update
120 self.evaluate(assign(fn, v, update_value, cross_replica))
134 def assign(fn, v, update_value, cross_replica): argument
135 update_fn = lambda: getattr(v, fn)(update_value)
165 fn, update_value = update
166 self.evaluate(assign(fn, v, update_value, cross_replica))
185 def assign(fn, v, update_value, cross_replica): argument
186 update_fn = lambda: getattr(v, fn)(update_value)
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorIndexList.h86 EIGEN_DEVICE_FUNC void update_value(T& val, DenseIndex new_val) {
90 EIGEN_DEVICE_FUNC void update_value(type2index<n>& val, DenseIndex new_val) {
95 EIGEN_DEVICE_FUNC void update_value(T& val, IndexPair<DenseIndex> new_val) {
99 EIGEN_DEVICE_FUNC void update_value(type2indexpair<f, s>& val, IndexPair<DenseIndex> new_val) {
241 update_value(array_get<Idx>(t), value);
278 update_value(array_get<0>(t), value);
/external/bcc/examples/cpp/
DRandomRead.cc100 auto update_res = cgroup_array.update_value(0, argv[1]); in main()
DUseExternalMap.cc119 res = control_table_hdl.update_value(0, val); in main()
/external/tensorflow/tensorflow/core/common_runtime/
Dquantize_training.cc392 Node* update_value; in MakeExponentialMovingAverage() local
397 .Finalize(graph, &update_value)); in MakeExponentialMovingAverage()
402 .Input(update_value) in MakeExponentialMovingAverage()
/external/crosvm/devices/src/virtio/fs/
Dmultikey.rs177 fn update_value() { in update_value() function
/external/tensorflow/tensorflow/compiler/xla/tests/
Ddynamic_ops_test.cc383 Literal update_value = in RunR0() local
395 auto update = ConstantLiteral(&builder, update_value); in RunR0()
/external/protobuf/php/src/Google/Protobuf/Internal/
DMessage.php1861 private function kvUpdateHelper($field, $update_key, $update_value) argument
1867 $field_arr_value[$update_key] = $update_value;