Home
last modified time | relevance | path

Searched refs:update_value (Results 1 – 18 of 18) 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/u-boot/drivers/ddr/altera/
Dsdram_arria10.c247 u32 update_value, io48_value; in sdram_mmr_init() local
274 update_value = readl(&socfpga_io48_mmr_base->niosreserve0); in sdram_mmr_init()
275 writel(((update_value & 0xFF) >> 5), in sdram_mmr_init()
298 update_value = match_ddr_conf(io48_value); in sdram_mmr_init()
299 if (update_value) in sdram_mmr_init()
300 writel(update_value, in sdram_mmr_init()
359 update_value = (caltim2_cfg_rd_to_pch + caltim4_cfg_pch_to_valid + in sdram_mmr_init()
372 (update_value << in sdram_mmr_init()
Dsdram_s10.c291 u32 update_value, io48_value, ddrioctl; in sdram_mmr_init_full() local
390 update_value = hmc_readl(plat, NIOSRESERVED0); in sdram_mmr_init_full()
391 hmc_ecc_writel(plat, ((update_value & 0xFF) >> 5), DDRIOCTRL); in sdram_mmr_init_full()
404 update_value = match_ddr_conf(io48_value); in sdram_mmr_init_full()
405 if (update_value) in sdram_mmr_init_full()
406 ddr_sch_writel(plat, update_value, DDR_SCH_DDRCONF); in sdram_mmr_init_full()
422 update_value = CALTIMING2_CFG_RD_TO_WR_PCH(caltim2) + in sdram_mmr_init_full()
435 (update_value << DDR_SCH_DDRTIMING_RDTOMISS_OFF) | in sdram_mmr_init_full()
/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/python/distribute/
Dvalues_test.py1085 def assign(fn, v, update_value, cross_replica): argument
1086 update_fn = lambda: getattr(v, fn)(update_value)
1111 fn, update_value = update
1112 self.evaluate(assign(fn, v, update_value, cross_replica))
1121 def assign(fn, v, update_value, cross_replica): argument
1122 update_fn = lambda: getattr(v, fn)(update_value)
1147 fn, update_value = update
1148 self.evaluate(assign(fn, v, update_value, cross_replica))
/external/tensorflow/tensorflow/core/graph/
Dquantize_training.cc394 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/
Ddynamic_ops_test.cc382 Literal update_value = in RunR0() local
394 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;
/external/tensorflow/tensorflow/python/keras/
Dbackend.py1147 def update_value(new_value): function
1153 x.update_value = update_value
/external/tensorflow/tensorflow/python/keras/layers/
Dnormalization.py287 self._trainable_var.update_value(value)