/external/bcc/tests/cc/ |
D | test_bpf_table.cc | 39 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);
|
D | test_hash_table.cc | 49 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);
|
D | test_array_table.cc | 54 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);
|
D | test_prog_table.cc | 50 res = t.update_value(0, fd); 58 res = t.update_value(17, fd);
|
D | test_shared_table.cc | 57 res = t_ns1_a.update_value(13, 42); 65 res = t_ns2_a.update_value(13, 69);
|
/external/bcc/src/cc/api/ |
D | BPFTable.h | 99 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 …]
|
D | BPFTable.cc | 84 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/tensorflow/tensorflow/python/distribute/ |
D | vars_test.py | 88 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/ |
D | TensorIndexList.h | 86 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/ |
D | RandomRead.cc | 100 auto update_res = cgroup_array.update_value(0, argv[1]); in main()
|
D | UseExternalMap.cc | 119 res = control_table_hdl.update_value(0, val); in main()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | quantize_training.cc | 392 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/ |
D | multikey.rs | 177 fn update_value() { in update_value() function
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | dynamic_ops_test.cc | 383 Literal update_value = in RunR0() local 395 auto update = ConstantLiteral(&builder, update_value); in RunR0()
|
/external/protobuf/php/src/Google/Protobuf/Internal/ |
D | Message.php | 1861 private function kvUpdateHelper($field, $update_key, $update_value) argument 1867 $field_arr_value[$update_key] = $update_value;
|