/openbmc/qemu/target/arm/tcg/ |
H A D | cpu64.c | 160 uint64_t t; in cpu_arm_set_rme() local 162 t = cpu->isar.id_aa64pfr0; in cpu_arm_set_rme() 163 t = FIELD_DP64(t, ID_AA64PFR0, RME, value); in cpu_arm_set_rme() 164 cpu->isar.id_aa64pfr0 = t; in cpu_arm_set_rme() 1086 uint64_t t; in aarch64_max_tcg_initfn() local 1110 t = FIELD_DP64(0, MIDR_EL1, IMPLEMENTER, 0); in aarch64_max_tcg_initfn() 1111 t = FIELD_DP64(t, MIDR_EL1, ARCHITECTURE, 0xf); in aarch64_max_tcg_initfn() 1112 t = FIELD_DP64(t, MIDR_EL1, PARTNUM, 'Q'); in aarch64_max_tcg_initfn() 1113 t = FIELD_DP64(t, MIDR_EL1, VARIANT, 0); in aarch64_max_tcg_initfn() 1114 t = FIELD_DP64(t, MIDR_EL1, REVISION, 0); in aarch64_max_tcg_initfn() [all …]
|
/openbmc/linux/mm/damon/ |
H A D | core-test.h | 20 struct damon_target *t; in damon_test_regions() local 27 t = damon_new_target(); in damon_test_regions() 28 KUNIT_EXPECT_EQ(test, 0u, damon_nr_regions(t)); in damon_test_regions() 30 damon_add_region(r, t); in damon_test_regions() 31 KUNIT_EXPECT_EQ(test, 1u, damon_nr_regions(t)); in damon_test_regions() 33 damon_del_region(r, t); in damon_test_regions() 34 KUNIT_EXPECT_EQ(test, 0u, damon_nr_regions(t)); in damon_test_regions() 36 damon_free_target(t); in damon_test_regions() 41 struct damon_target *t; in nr_damon_targets() local 44 damon_for_each_target(t, ctx) in nr_damon_targets() [all …]
|
/openbmc/linux/tools/perf/util/scripting-engines/ |
H A D | trace-event-python.c | 214 PyObject *t; in define_value() local 221 t = PyTuple_New(4); in define_value() 222 if (!t) in define_value() 227 PyTuple_SetItem(t, n++, _PyUnicode_FromString(ev_name)); in define_value() 228 PyTuple_SetItem(t, n++, _PyUnicode_FromString(field_name)); in define_value() 229 PyTuple_SetItem(t, n++, _PyLong_FromLong(value)); in define_value() 230 PyTuple_SetItem(t, n++, _PyUnicode_FromString(field_str)); in define_value() 232 try_call_object(handler_name, t); in define_value() 234 Py_DECREF(t); in define_value() 255 PyObject *t; in define_field() local [all …]
|
/openbmc/linux/drivers/media/usb/pvrusb2/ |
H A D | pvrusb2-util.h | 9 #define PVR2_DECOMPOSE_LE(t,i,d) \ argument 11 (t)[i] = (d) & 0xff;\ 12 (t)[i+1] = ((d) >> 8) & 0xff;\ 13 (t)[i+2] = ((d) >> 16) & 0xff;\ 14 (t)[i+3] = ((d) >> 24) & 0xff;\ 17 #define PVR2_DECOMPOSE_BE(t,i,d) \ argument 19 (t)[i+3] = (d) & 0xff;\ 20 (t)[i+2] = ((d) >> 8) & 0xff;\ 21 (t)[i+1] = ((d) >> 16) & 0xff;\ 22 (t)[i] = ((d) >> 24) & 0xff;\ [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/classes/ |
H A D | fitimage.bbclass | 140 fd.write('\t#address-cells = <1>;\n') 152 fd.write(f'\t{section} {{\n') 158 fd.write('\t};\n') 169 fd.write(f'\t\tkernel-{kernelcount} {{\n') 170 fd.write('\t\t\tdescription = "Linux kernel";\n') 171 fd.write(f'\t\t\tdata = /incbin/("{imgpath}/{imgsource}");\n') 172 fd.write('\t\t\ttype = "kernel";\n') 173 fd.write(f'\t\t\tarch = "{arch}";\n') 174 fd.write('\t\t\tos = "linux";\n') 175 fd.write(f'\t\t\tcompression = "{imgcomp}";\n') [all …]
|
/openbmc/qemu/target/riscv/ |
H A D | crypto_helper.c | 85 AESState t; in HELPER() local 87 t.d[HOST_BIG_ENDIAN] = rs1; in HELPER() 88 t.d[!HOST_BIG_ENDIAN] = rs2; in HELPER() 89 aesenc_SB_SR_MC_AK(&t, &t, &aes_zero, false); in HELPER() 90 return t.d[HOST_BIG_ENDIAN]; in HELPER() 95 AESState t; in HELPER() local 97 t.d[HOST_BIG_ENDIAN] = rs1; in HELPER() 98 t.d[!HOST_BIG_ENDIAN] = rs2; in HELPER() 99 aesenc_SB_SR_AK(&t, &t, &aes_zero, false); in HELPER() 100 return t.d[HOST_BIG_ENDIAN]; in HELPER() [all …]
|
/openbmc/linux/net/ipv6/ |
H A D | ip6_gre.c | 78 static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t); 79 static void ip6gre_tnl_link_config(struct ip6_tnl *t, int set_mtu); 80 static void ip6erspan_tnl_link_config(struct ip6_tnl *t, int set_mtu); 123 struct ip6_tnl *t, *cand = NULL; in ip6gre_tunnel_lookup() local 132 for_each_ip_tunnel_rcu(t, ign->tunnels_r_l[h0 ^ h1]) { in ip6gre_tunnel_lookup() 133 if (!ipv6_addr_equal(local, &t->parms.laddr) || in ip6gre_tunnel_lookup() 134 !ipv6_addr_equal(remote, &t->parms.raddr) || in ip6gre_tunnel_lookup() 135 key != t->parms.i_key || in ip6gre_tunnel_lookup() 136 !(t->dev->flags & IFF_UP)) in ip6gre_tunnel_lookup() 139 if (t->dev->type != ARPHRD_IP6GRE && in ip6gre_tunnel_lookup() [all …]
|
H A D | ip6_tunnel.c | 98 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next)) 118 struct ip6_tnl *t, *cand = NULL; in ip6_tnl_lookup() local 123 if (!ipv6_addr_equal(local, &t->parms.laddr) || in ip6_tnl_lookup() 124 !ipv6_addr_equal(remote, &t->parms.raddr) || in ip6_tnl_lookup() 125 !(t->dev->flags & IFF_UP)) in ip6_tnl_lookup() 128 if (link == t->parms.link) in ip6_tnl_lookup() 129 return t; in ip6_tnl_lookup() 131 cand = t; in ip6_tnl_lookup() 137 if (!ipv6_addr_equal(local, &t->parms.laddr) || in ip6_tnl_lookup() 138 !ipv6_addr_any(&t->parms.raddr) || in ip6_tnl_lookup() [all …]
|
H A D | ip6_vti.c | 75 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next)) 93 struct ip6_tnl *t; in vti6_tnl_lookup() local 98 if (ipv6_addr_equal(local, &t->parms.laddr) && in vti6_tnl_lookup() 99 ipv6_addr_equal(remote, &t->parms.raddr) && in vti6_tnl_lookup() 100 (t->dev->flags & IFF_UP)) in vti6_tnl_lookup() 101 return t; in vti6_tnl_lookup() 107 if (ipv6_addr_equal(local, &t->parms.laddr) && in vti6_tnl_lookup() 108 (t->dev->flags & IFF_UP)) in vti6_tnl_lookup() 109 return t; in vti6_tnl_lookup() 114 if (ipv6_addr_equal(remote, &t->parms.raddr) && in vti6_tnl_lookup() [all …]
|
/openbmc/linux/drivers/misc/cb710/ |
H A D | debug.c | 29 #define CB710_READ_REGS_TEMPLATE(t) \ argument 30 static void cb710_read_regs_##t(void __iomem *iobase, \ 31 u##t *reg, unsigned select) \ 35 for (i = 0; i < ARRAY_SIZE(allow); ++i, reg += 16/(t/8)) { \ 39 for (j = 0; j < 0x10/(t/8); ++j) { \ 40 if (!allow_reg_read(i, j, t)) \ 42 reg[j] = ioread##t(iobase \ 43 + (i << 4) + (j * (t/8))); \ 53 #define CB710_DUMP_REGS_TEMPLATE(t) \ argument 54 static void cb710_dump_regs_##t(struct device *dev, \ [all …]
|
/openbmc/webui-vue/src/components/AppNavigation/ |
H A D | AppNavigationMixin.js | 33 label: i18n.global.t('appNavigation.overview'), 39 label: i18n.global.t('appNavigation.logs'), 44 label: i18n.global.t('appNavigation.eventLogs'), 49 label: i18n.global.t('appNavigation.postCodeLogs'), 54 label: i18n.global.t('appNavigation.dumps'), 61 label: i18n.global.t('appNavigation.hardwareStatus'), 66 label: i18n.global.t('appNavigation.inventory'), 71 label: i18n.global.t('appNavigation.sensors'), 78 label: i18n.global.t('appNavigation.operations'), 83 label: i18n.global.t('appNavigation.factoryReset'), [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 049.out | 6 qemu-img create -f qcow2 TEST_DIR/t.qcow2 1024 7 Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 cluster_size=65536 extended_l2=off compression_type=zlib s… 9 qemu-img create -f qcow2 TEST_DIR/t.qcow2 1024b 10 Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 cluster_size=65536 extended_l2=off compression_type=zlib s… 12 qemu-img create -f qcow2 TEST_DIR/t.qcow2 1k 13 Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 cluster_size=65536 extended_l2=off compression_type=zlib s… 15 qemu-img create -f qcow2 TEST_DIR/t.qcow2 1K 16 Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 cluster_size=65536 extended_l2=off compression_type=zlib s… 18 qemu-img create -f qcow2 TEST_DIR/t.qcow2 1M 19 Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 cluster_size=65536 extended_l2=off compression_type=zlib s… [all …]
|
H A D | 092.out | 4 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 5 qemu-io: can't open device TEST_DIR/t.qcow: Cluster size must be between 512 and 64k 6 qemu-io: can't open device TEST_DIR/t.qcow: Cluster size must be between 512 and 64k 7 qemu-io: can't open device TEST_DIR/t.qcow: Cluster size must be between 512 and 64k 8 qemu-io: can't open device TEST_DIR/t.qcow: Cluster size must be between 512 and 64k 11 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 12 qemu-io: can't open device TEST_DIR/t.qcow: L2 table size must be between 512 and 64k 13 qemu-io: can't open device TEST_DIR/t.qcow: L2 table size must be between 512 and 64k 14 qemu-io: can't open device TEST_DIR/t.qcow: L2 table size must be between 512 and 64k 15 qemu-io: can't open device TEST_DIR/t.qcow: L2 table size must be between 512 and 64k [all …]
|
H A D | 043.out | 2 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=134217728 5 qemu-img: Backing file 'TEST_DIR/t.IMGFMT' creates an infinite loop. 6 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=134217728 7 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=134217728 backing_file=TEST_DIR/t.IMGFMT.base backi… 10 qemu-img: Backing file 'TEST_DIR/t.IMGFMT' creates an infinite loop. 11 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=134217728 12 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=134217728 backing_file=TEST_DIR/t.IMGFMT.1.base bac… 13 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=134217728 backing_file=TEST_DIR/t.IMGFMT.2.base bac… 14 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=134217728 backing_file=TEST_DIR/t.IMGFMT.3.base bac… 17 qemu-img: Backing file 'TEST_DIR/t.IMGFMT.2.base' creates an infinite loop. [all …]
|
/openbmc/linux/tools/lib/bpf/ |
H A D | btf_dump.c | 314 const struct btf_type *t; in btf_dump_mark_referenced() local 318 t = btf__type_by_id(d->btf, i); in btf_dump_mark_referenced() 319 vlen = btf_vlen(t); in btf_dump_mark_referenced() 321 switch (btf_kind(t)) { in btf_dump_mark_referenced() 338 d->type_states[t->type].referenced = 1; in btf_dump_mark_referenced() 342 const struct btf_array *a = btf_array(t); in btf_dump_mark_referenced() 350 const struct btf_member *m = btf_members(t); in btf_dump_mark_referenced() 357 const struct btf_param *p = btf_params(t); in btf_dump_mark_referenced() 364 const struct btf_var_secinfo *v = btf_var_secinfos(t); in btf_dump_mark_referenced() 483 const struct btf_type *t; in btf_dump_order_type() local [all …]
|
/openbmc/linux/drivers/block/aoe/ |
H A D | aoecmd.c | 128 aoehdr_atainit(struct aoedev *d, struct aoetgt *t, struct aoe_hdr *h) in aoehdr_atainit() argument 132 memcpy(h->src, t->ifp->nd->dev_addr, sizeof h->src); in aoehdr_atainit() 133 memcpy(h->dst, t->addr, sizeof h->dst); in aoehdr_atainit() 156 ifrotate(struct aoetgt *t) in ifrotate() argument 160 ifp = t->ifp; in ifrotate() 162 if (ifp >= &t->ifs[NAOEIFS] || ifp->nd == NULL) in ifrotate() 163 ifp = t->ifs; in ifrotate() 166 return t->ifp = ifp; in ifrotate() 194 struct aoetgt *t; in aoe_freetframe() local 196 t = f->t; in aoe_freetframe() [all …]
|
/openbmc/linux/arch/ia64/kernel/ |
H A D | unwind_decoder.c | 89 unw_word t, off; in unw_decode_x1() local 92 t = unw_decode_uleb128 (&dp); in unw_decode_x1() 96 UNW_DEC_SPILL_SPREL(X1, t, abreg, off, arg); in unw_decode_x1() 98 UNW_DEC_SPILL_PSPREL(X1, t, abreg, off, arg); in unw_decode_x1() 106 unw_word t; in unw_decode_x2() local 109 t = unw_decode_uleb128 (&dp); in unw_decode_x2() 114 UNW_DEC_RESTORE(X2, t, abreg, arg); in unw_decode_x2() 116 UNW_DEC_SPILL_REG(X2, t, abreg, x, ytreg, arg); in unw_decode_x2() 124 unw_word t, off; in unw_decode_x3() local 127 t = unw_decode_uleb128 (&dp); in unw_decode_x3() [all …]
|
/openbmc/linux/tools/testing/selftests/ |
H A D | kselftest_harness.h | 858 static inline void __register_test(struct __test_metadata *t) in __register_test() argument 860 __LIST_APPEND(t->fixture->tests, t); in __register_test() 863 static inline int __bail(int for_realz, struct __test_metadata *t) in __bail() argument 867 t->aborted = true; in __bail() 868 longjmp(t->env, 1); in __bail() 874 static inline void __test_check_assert(struct __test_metadata *t) in __test_check_assert() argument 876 if (t->aborted) { in __test_check_assert() 877 if (t->no_print) in __test_check_assert() 878 _exit(t->step); in __test_check_assert() 886 struct __test_metadata *t = __active_test; in __timeout_handler() local [all …]
|
/openbmc/linux/sound/soc/intel/avs/ |
H A D | path.c | 147 struct avs_tplg_module *t = mod->template; in avs_copier_create() local 156 dma_type = t->cfg_ext->copier.dma_type; in avs_copier_create() 170 if (t->cfg_ext->copier.blob_fmt) in avs_copier_create() 171 fmt = t->cfg_ext->copier.blob_fmt; in avs_copier_create() 173 fmt = t->in_fmt; in avs_copier_create() 175 fmt = t->cfg_ext->copier.out_fmt; in avs_copier_create() 178 nhlt, t->cfg_ext->copier.vindex.i2s.instance, in avs_copier_create() 190 node_id.vindex = t->cfg_ext->copier.vindex.val; in avs_copier_create() 197 if (t->cfg_ext->copier.blob_fmt) in avs_copier_create() 198 fmt = t->cfg_ext->copier.blob_fmt; in avs_copier_create() [all …]
|
/openbmc/linux/arch/x86/crypto/ |
H A D | sha512-ssse3-asm.S | 85 # WK_2(t) points to 1 of 2 qwords at frame.WK depdending on t being odd/even 99 # W[t]+K[t] (stack frame) 117 # Compute Round %%t 126 add WK_2(idx), T1 # W[t] + K[t] from message scheduler 130 add h_64, T1 # T1 = CH(e,f,g) + W[t] + K[t] + h 132 add tmp0, T1 # T1 = CH(e,f,g) + W[t] + K[t] + S1(e) 152 # Compute rounds t-2 and t-1 153 # Compute message schedule QWORDS t and t+1 155 # Two rounds are computed based on the values for K[t-2]+W[t-2] and 156 # K[t-1]+W[t-1] which were previously stored at WK_2 by the message [all …]
|
/openbmc/qemu/hw/i3c/ |
H A D | core.c | 145 static int i3c_target_event(I3CTarget *t, enum I3CEvent event) in i3c_target_event() argument 147 I3CTargetClass *tc = I3C_TARGET_GET_CLASS(t); in i3c_target_event() 148 trace_i3c_target_event(t->address, event); in i3c_target_event() 151 t->curr_ccc = 0; in i3c_target_event() 152 t->ccc_byte_offset = 0; in i3c_target_event() 153 t->in_ccc = false; in i3c_target_event() 155 return tc->event(t, event); in i3c_target_event() 187 I3CTarget *t = node->target; in i3c_do_start_transfer() local 189 tc = I3C_TARGET_GET_CLASS(t); in i3c_do_start_transfer() 191 int rv = i3c_target_event(t, event); in i3c_do_start_transfer() [all …]
|
/openbmc/linux/kernel/bpf/ |
H A D | btf.c | 276 const struct btf_type *t; member 336 const char *btf_type_str(const struct btf_type *t) in btf_type_str() argument 338 return btf_kind_str[BTF_INFO_KIND(t->info)]; in btf_type_str() 434 const struct btf_type *t, 447 const struct btf_type *t); 448 void (*show)(const struct btf *btf, const struct btf_type *t, 457 const struct btf_type *t, u32 type_id); 460 const struct btf_type *t); 462 static bool btf_type_is_modifier(const struct btf_type *t) in btf_type_is_modifier() argument 474 switch (BTF_INFO_KIND(t->info)) { in btf_type_is_modifier() [all …]
|
/openbmc/linux/kernel/rcu/ |
H A D | tasks.h | 18 typedef void (*pertask_func_t)(struct task_struct *t, struct list_head *hop); 679 struct task_struct *t; in rcu_spawn_tasks_kthread_generic() local 681 t = kthread_run(rcu_tasks_kthread, rtp, "%s_kthread", rtp->kname); in rcu_spawn_tasks_kthread_generic() 682 …if (WARN_ONCE(IS_ERR(t), "%s: Could not start %s grace-period kthread, OOM is now expected behavio… in rcu_spawn_tasks_kthread_generic() 754 static void exit_tasks_rcu_finish_trace(struct task_struct *t); 773 struct task_struct *t; in rcu_tasks_wait_gp() local 787 for_each_process_thread(g, t) in rcu_tasks_wait_gp() 788 rtp->pertask_func(t, &holdouts); in rcu_tasks_wait_gp() 927 static bool rcu_tasks_is_holdout(struct task_struct *t) in rcu_tasks_is_holdout() argument 932 if (!READ_ONCE(t->on_rq)) in rcu_tasks_is_holdout() [all …]
|
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt76x2/ |
H A D | eeprom.c | 292 void mt76x2_get_rate_power(struct mt76x02_dev *dev, struct mt76x02_rate_power *t, in mt76x2_get_rate_power() argument 300 memset(t, 0, sizeof(*t)); in mt76x2_get_rate_power() 303 t->cck[0] = t->cck[1] = mt76x02_rate_power_val(val); in mt76x2_get_rate_power() 304 t->cck[2] = t->cck[3] = mt76x02_rate_power_val(val >> 8); in mt76x2_get_rate_power() 310 t->ofdm[0] = t->ofdm[1] = mt76x02_rate_power_val(val); in mt76x2_get_rate_power() 311 t->ofdm[2] = t->ofdm[3] = mt76x02_rate_power_val(val >> 8); in mt76x2_get_rate_power() 317 t->ofdm[4] = t->ofdm[5] = mt76x02_rate_power_val(val); in mt76x2_get_rate_power() 318 t->ofdm[6] = t->ofdm[7] = mt76x02_rate_power_val(val >> 8); in mt76x2_get_rate_power() 321 t->ht[0] = t->ht[1] = mt76x02_rate_power_val(val); in mt76x2_get_rate_power() 322 t->ht[2] = t->ht[3] = mt76x02_rate_power_val(val >> 8); in mt76x2_get_rate_power() [all …]
|
/openbmc/webui-vue/src/env/components/AppNavigation/ |
H A D | ibm.js | 27 label: i18n.global.t('appNavigation.overview'), 33 label: i18n.global.t('appNavigation.logs'), 38 label: i18n.global.t('appNavigation.dumps'), 43 label: i18n.global.t('appNavigation.eventLogs'), 48 label: i18n.global.t('appNavigation.postCodeLogs'), 55 label: i18n.global.t('appNavigation.hardwareStatus'), 60 label: i18n.global.t('appNavigation.inventory'), 65 label: i18n.global.t('appNavigation.sensors'), 72 label: i18n.global.t('appNavigation.operations'), 78 label: i18n.global.t('appNavigation.settings'), [all …]
|