/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/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/u-boot/drivers/ddr/altera/ |
D | sdram_arria10.c | 257 u32 update_value, io48_value; in sdram_mmr_init() local 284 update_value = readl(&socfpga_io48_mmr_base->niosreserve0); in sdram_mmr_init() 285 writel(((update_value & 0xFF) >> 5), in sdram_mmr_init() 308 update_value = match_ddr_conf(io48_value); in sdram_mmr_init() 309 if (update_value) in sdram_mmr_init() 310 writel(update_value, in sdram_mmr_init() 369 update_value = (caltim2_cfg_rd_to_pch + caltim4_cfg_pch_to_valid + in sdram_mmr_init() 382 (update_value << in sdram_mmr_init()
|
/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/graph/ |
D | quantize_training.cc | 394 Node* update_value; in MakeExponentialMovingAverage() local 399 .Finalize(graph, &update_value)); in MakeExponentialMovingAverage() 404 .Input(update_value) in MakeExponentialMovingAverage()
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | dynamic_ops_test.cc | 382 Literal update_value = in RunR0() local 394 auto update = ConstantLiteral(&builder, update_value); in RunR0()
|