/openbmc/qemu/hw/xen/ |
H A D | xen-operations.c | 265 xs_transaction_t t, const char *path, in libxenstore_directory() argument 268 return xs_directory(h->xsh, t, path, num); in libxenstore_directory() 271 static void *libxenstore_read(struct qemu_xs_handle *h, xs_transaction_t t, in libxenstore_read() argument 274 return xs_read(h->xsh, t, path, len); in libxenstore_read() 277 static bool libxenstore_write(struct qemu_xs_handle *h, xs_transaction_t t, in libxenstore_write() argument 281 return xs_write(h->xsh, t, path, data, len); in libxenstore_write() 299 if (!xs_mkdir(h->xsh, t, path)) { in libxenstore_create() 303 return xs_set_permissions(h->xsh, t, path, perms_list, in libxenstore_create() 310 return xs_rm(h->xsh, t, path); in libxenstore_destroy() 387 xs_transaction_t t, bool abort) in libxenstore_transaction_end() argument [all …]
|
/openbmc/linux/arch/m68k/mac/ |
H A D | misc.c | 609 int mac_hwclk(int op, struct rtc_time *t) in mac_hwclk() argument 635 t->tm_wday = 0; in mac_hwclk() 637 &t->tm_year, &t->tm_mon, &t->tm_mday, in mac_hwclk() 638 &t->tm_hour, &t->tm_min, &t->tm_sec); in mac_hwclk() 639 pr_debug("%s: read %ptR\n", __func__, t); in mac_hwclk() 641 pr_debug("%s: tried to write %ptR\n", __func__, t); in mac_hwclk() 647 via_set_rtc_time(t); in mac_hwclk() 652 cuda_set_rtc_time(t); in mac_hwclk() 657 pmu_set_rtc_time(t); in mac_hwclk()
|
/openbmc/linux/scripts/ |
H A D | check-sysctl-docs | 124 curpath && /\.procname[\t ]*=[\t ]*".+"/ { 125 match($0, /.procname[\t ]*=[\t ]*"([^"]+)"/, names) 143 /\.child[\t ]*=/ {
|
/openbmc/qemu/tcg/ |
H A D | tcg-op.c | 755 tcg_gen_ctpop_i32(t, t); in tcg_gen_ctz_i32() 760 tcg_gen_clzi_i32(t, t, 32); in tcg_gen_ctz_i32() 761 tcg_gen_xori_i32(t, t, 31); in tcg_gen_ctz_i32() 777 tcg_gen_andc_i32(t, t, arg1); in tcg_gen_ctzi_i32() 790 tcg_gen_xor_i32(t, t, arg); in tcg_gen_clrsb_i32() 791 tcg_gen_clzi_i32(t, t, 32); in tcg_gen_clrsb_i32() 806 tcg_gen_ctpop_i64(t, t); in tcg_gen_ctpop_i32() 2465 tcg_gen_addi_i32(t, t, 32); in tcg_gen_clzi_i64() 2484 tcg_gen_ctpop_i64(t, t); in tcg_gen_ctz_i64() 2531 tcg_gen_xor_i64(t, t, arg); in tcg_gen_clrsb_i64() [all …]
|
/openbmc/linux/sound/firewire/fireworks/ |
H A D | fireworks_pcm.c | 71 struct snd_interval t = { in hw_rule_rate() local 81 t.min = min(t.min, freq_table[i]); in hw_rule_rate() 82 t.max = max(t.max, freq_table[i]); in hw_rule_rate() 85 return snd_interval_refine(r, &t); in hw_rule_rate() 96 struct snd_interval t = { in hw_rule_channels() local 106 t.min = min(t.min, pcm_channels[mode]); in hw_rule_channels() 107 t.max = max(t.max, pcm_channels[mode]); in hw_rule_channels() 110 return snd_interval_refine(c, &t); in hw_rule_channels()
|
/openbmc/linux/sound/firewire/fireface/ |
H A D | ff-pcm.c | 18 struct snd_interval t = { in hw_rule_rate() local 34 t.min = min(t.min, amdtp_rate_table[i]); in hw_rule_rate() 35 t.max = max(t.max, amdtp_rate_table[i]); in hw_rule_rate() 38 return snd_interval_refine(r, &t); in hw_rule_rate() 49 struct snd_interval t = { in hw_rule_channels() local 65 t.min = min(t.min, pcm_channels[mode]); in hw_rule_channels() 66 t.max = max(t.max, pcm_channels[mode]); in hw_rule_channels() 69 return snd_interval_refine(c, &t); in hw_rule_channels()
|
/openbmc/linux/sound/firewire/bebob/ |
H A D | bebob_pcm.c | 18 struct snd_interval t = { in hw_rule_rate() local 31 t.min = min(t.min, snd_bebob_rate_table[i]); in hw_rule_rate() 32 t.max = max(t.max, snd_bebob_rate_table[i]); in hw_rule_rate() 35 return snd_interval_refine(r, &t); in hw_rule_rate() 46 struct snd_interval t = { in hw_rule_channels() local 60 t.min = min(t.min, formations[i].pcm); in hw_rule_channels() 61 t.max = max(t.max, formations[i].pcm); in hw_rule_channels() 64 return snd_interval_refine(c, &t); in hw_rule_channels()
|
/openbmc/linux/drivers/spi/ |
H A D | spi-omap-uwire.c | 202 static int uwire_txrx(struct spi_device *spi, struct spi_transfer *t) in uwire_txrx() argument 204 unsigned len = t->len; in uwire_txrx() 205 unsigned bits = t->bits_per_word; in uwire_txrx() 210 if (!t->tx_buf && !t->rx_buf) in uwire_txrx() 216 if (t->tx_buf) { in uwire_txrx() 217 const u8 *buf = t->tx_buf; in uwire_txrx() 263 } else if (t->rx_buf) { in uwire_txrx() 264 u8 *buf = t->rx_buf; in uwire_txrx() 306 static int uwire_setup_transfer(struct spi_device *spi, struct spi_transfer *t) in uwire_setup_transfer() argument 344 if (t != NULL) in uwire_setup_transfer() [all …]
|
/openbmc/linux/drivers/media/platform/samsung/s5p-jpeg/ |
H A D | jpeg-hw-exynos3250.c | 187 reg &= ~EXYNOS3250_QT_NUM_MASK(t); in exynos3250_jpeg_qtbl() 188 reg |= (n << EXYNOS3250_QT_NUM_SHIFT(t)) & in exynos3250_jpeg_qtbl() 189 EXYNOS3250_QT_NUM_MASK(t); in exynos3250_jpeg_qtbl() 193 void exynos3250_jpeg_htbl_ac(void __iomem *regs, unsigned int t) in exynos3250_jpeg_htbl_ac() argument 198 reg &= ~EXYNOS3250_HT_NUM_AC_MASK(t); in exynos3250_jpeg_htbl_ac() 200 reg |= (0 << EXYNOS3250_HT_NUM_AC_SHIFT(t)) & in exynos3250_jpeg_htbl_ac() 201 EXYNOS3250_HT_NUM_AC_MASK(t); in exynos3250_jpeg_htbl_ac() 205 void exynos3250_jpeg_htbl_dc(void __iomem *regs, unsigned int t) in exynos3250_jpeg_htbl_dc() argument 210 reg &= ~EXYNOS3250_HT_NUM_DC_MASK(t); in exynos3250_jpeg_htbl_dc() 212 reg |= (0 << EXYNOS3250_HT_NUM_DC_SHIFT(t)) & in exynos3250_jpeg_htbl_dc() [all …]
|
/openbmc/linux/drivers/mtd/devices/ |
H A D | sst25l.c | 70 struct spi_transfer t; in sst25l_status() local 75 memset(&t, 0, sizeof(struct spi_transfer)); in sst25l_status() 79 t.tx_buf = cmd_resp; in sst25l_status() 80 t.rx_buf = cmd_resp; in sst25l_status() 81 t.len = sizeof(cmd_resp); in sst25l_status() 82 spi_message_add_tail(&t, &m); in sst25l_status() 312 struct spi_transfer t; in sst25l_match_device() local 326 t.tx_buf = cmd_resp; in sst25l_match_device() 327 t.rx_buf = cmd_resp; in sst25l_match_device() 328 t.len = sizeof(cmd_resp); in sst25l_match_device() [all …]
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | Parity-7.0.0 | 13 …nt and conditions to your license. Don't do anything with this software that triggers a rule you … 25 You don't have to [contribute](#contribute) any change, addition, or other software that meets all … 27 1. You don't use it for more than thirty days. 29 2. You don't share it outside the team developing it, other than for non-production user testing. 31 3. You don't develop, operate, or analyze other software with it for anyone outside the team devel… 35 You may use this software to operate and analyze software you can't [contribute](#contribute) in or… 55 Don't make any legal claim against anyone accusing this software, with or without changes, alone or… 67 The contributor can't revoke this license. 71 …are comes as is, without any warranty or condition, and the contributor won't be liable to anyone …
|
/openbmc/qemu/target/xtensa/ |
H A D | helper.c | 50 static GHashTable *hash_opcode_translators(const XtensaOpcodeTranslators *t) in hash_opcode_translators() argument 55 for (i = 0; i < t->num_opcodes; ++i) { in hash_opcode_translators() 56 if (t->opcode[i].op_flags & XTENSA_OP_NAME_ARRAY) { in hash_opcode_translators() 57 const char * const *name = t->opcode[i].name; in hash_opcode_translators() 62 (void *)(t->opcode + i)); in hash_opcode_translators() 66 (void *)t->opcode[i].name, in hash_opcode_translators() 67 (void *)(t->opcode + i)); in hash_opcode_translators() 74 xtensa_find_opcode_ops(const XtensaOpcodeTranslators *t, in xtensa_find_opcode_ops() argument 83 translator = g_hash_table_lookup(translators, t); in xtensa_find_opcode_ops() 85 translator = hash_opcode_translators(t); in xtensa_find_opcode_ops() [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 270.out | 2 Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=4294967296 5 …ormatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=4294967296 backing_file=TEST_DIR/t.IMGFMT.base back…
|
H A D | 024.out | 4 Formatting 'TEST_DIR/t.IMGFMT.base_old', fmt=IMGFMT size=1073741824 36 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=1073741824 backing_file=TEST_DIR/t.IMGFMT.base_old … 149 Formatting 'TEST_DIR/subdir/t.IMGFMT', fmt=IMGFMT size=1048576 backing_file=t.IMGFMT.base_old backi… 160 backing file: t.IMGFMT.base_new (actual path: TEST_DIR/subdir/t.IMGFMT.base_new) 172 0 0x30000 TEST_DIR/subdir/t.IMGFMT 180 Formatting 'TEST_DIR/subdir/t.IMGFMT.base_old', fmt=IMGFMT size=262144 backing_file=TEST_DIR/subdir… 181 Formatting 'TEST_DIR/subdir/t.IMGFMT', fmt=IMGFMT size=327680 backing_file=TEST_DIR/subdir/t.IMGFMT… 210 Formatting 'TEST_DIR/subdir/t.IMGFMT.base_old', fmt=IMGFMT size=393216 backing_file=TEST_DIR/subdir… 211 Formatting 'TEST_DIR/subdir/t.IMGFMT', fmt=IMGFMT size=393216 backing_file=TEST_DIR/subdir/t.IMGFMT… 212 image: TEST_DIR/subdir/t.IMGFMT [all …]
|
/openbmc/pldm/libpldmresponder/test/ |
H A D | meson.build | 30 foreach t : tests 32 t, 34 t.underscorify(), 35 t + '.cpp',
|
/openbmc/linux/net/sctp/ |
H A D | ipv6.c | 146 sctp_icmp_redirect(sk, t, skb); in sctp_v6_err_handle() 196 struct sctp_transport *t; in sctp_udp_v6_err() local 211 sctp_err_finish(sk, t); in sctp_udp_v6_err() 218 sctp_err_finish(sk, t); in sctp_udp_v6_err() 329 t->dst = dst; in sctp_v6_get_dst() 355 t->dst = dst; in sctp_v6_get_dst() 395 t->dst = dst; in sctp_v6_get_dst() 410 t->dst = dst; in sctp_v6_get_dst() 425 t->dst = NULL; in sctp_v6_get_dst() 449 pr_debug("%s: asoc:%p dst:%p\n", __func__, t->asoc, t->dst); in sctp_v6_get_saddr() [all …]
|
/openbmc/linux/net/ipv6/ |
H A D | tunnel6.c | 35 struct xfrm6_tunnel *t; in xfrm6_tunnel_register() local 55 for (; (t = rcu_dereference_protected(*pprev, in xfrm6_tunnel_register() 57 pprev = &t->next) { in xfrm6_tunnel_register() 58 if (t->priority > priority) in xfrm6_tunnel_register() 60 if (t->priority == priority) in xfrm6_tunnel_register() 79 struct xfrm6_tunnel *t; in xfrm6_tunnel_deregister() local 98 for (; (t = rcu_dereference_protected(*pprev, in xfrm6_tunnel_deregister() 100 pprev = &t->next) { in xfrm6_tunnel_deregister() 101 if (t == handler) { in xfrm6_tunnel_deregister()
|
/openbmc/linux/net/ipv4/ |
H A D | xfrm4_protocol.c | 221 struct xfrm4_protocol *t; in xfrm4_protocol_register() local 236 (t = rcu_dereference_protected(*pprev, in xfrm4_protocol_register() 238 pprev = &t->next) { in xfrm4_protocol_register() 239 if (t->priority < priority) in xfrm4_protocol_register() 241 if (t->priority == priority) in xfrm4_protocol_register() 268 struct xfrm4_protocol *t; in xfrm4_protocol_deregister() local 277 (t = rcu_dereference_protected(*pprev, in xfrm4_protocol_deregister() 279 pprev = &t->next) { in xfrm4_protocol_deregister() 280 if (t == handler) { in xfrm4_protocol_deregister()
|
/openbmc/linux/drivers/input/joystick/ |
H A D | cobra.c | 42 int r[2], t[2]; in cobra_read_packet() local 49 t[i] = COBRA_MAX_STROBE; in cobra_read_packet() 57 t[0]--; t[1]--; in cobra_read_packet() 61 if ((w & 0x30) < 0x30 && r[i] < COBRA_LENGTH && t[i] > 0) { in cobra_read_packet() 63 t[i] = strobe; in cobra_read_packet() 65 } else t[i] = 0; in cobra_read_packet() 67 } while (t[0] > 0 || t[1] > 0); in cobra_read_packet()
|
/openbmc/webui-vue/src/views/Login/ |
H A D | Login.vue | 5 {{ $t('pageLogin.alert.message') }} 8 <b-form-group label-for="language" :label="$t('pageLogin.language')"> 16 <b-form-group label-for="username" :label="$t('pageLogin.username')"> 30 {{ $t('global.form.fieldRequired') }} 35 <label for="password">{{ $t('pageLogin.password') }}</label> 50 {{ $t('global.form.fieldRequired') }} 61 >{{ $t('pageLogin.logIn') }}</b-button 93 $t: useI18n().t,
|
/openbmc/linux/arch/arm64/kernel/ |
H A D | entry.S | 589 entry_handler 1, t, 64, sync 590 entry_handler 1, t, 64, irq 591 entry_handler 1, t, 64, fiq 592 entry_handler 1, t, 64, error 599 entry_handler 0, t, 64, sync 600 entry_handler 0, t, 64, irq 601 entry_handler 0, t, 64, fiq 602 entry_handler 0, t, 64, error 604 entry_handler 0, t, 32, sync 605 entry_handler 0, t, 32, irq [all …]
|
/openbmc/u-boot/fs/yaffs2/ |
H A D | yaffs_mtdif2.c | 53 dev->param.no_tags_ecc ? sizeof(pt.t) : sizeof(pt); in nandmtd2_write_chunk_tags() 55 dev->param.no_tags_ecc ? (void *)&pt.t : (void *)&pt; in nandmtd2_write_chunk_tags() 106 dev->param.no_tags_ecc ? sizeof(pt.t) : sizeof(pt); in nandmtd2_read_chunk_tags() 108 dev->param.no_tags_ecc ? (void *)&pt.t : (void *)&pt; in nandmtd2_read_chunk_tags() 211 struct yaffs_ext_tags t; in nandmtd2_QueryNANDBlock() local 215 &t); in nandmtd2_QueryNANDBlock() 217 if (t.chunk_used) { in nandmtd2_QueryNANDBlock() 218 *sequenceNumber = t.seq_number; in nandmtd2_QueryNANDBlock()
|
/openbmc/linux/arch/x86/kernel/ |
H A D | tls.c | 24 struct thread_struct *t = ¤t->thread; in get_free_idx() local 28 if (desc_empty(&t->tls_array[idx])) in get_free_idx() 88 struct thread_struct *t = &p->thread; in set_tls_desc() local 89 struct desc_struct *desc = &t->tls_array[idx - GDT_ENTRY_TLS_MIN]; in set_tls_desc() 106 if (t == ¤t->thread) in set_tls_desc() 107 load_TLS(t, cpu); in set_tls_desc() 246 struct thread_struct *t = &target->thread; in regset_tls_active() local 248 while (n > 0 && desc_empty(&t->tls_array[n - 1])) in regset_tls_active()
|
/openbmc/webui-vue/src/views/Operations/ServerPowerOperations/ |
H A D | BootSettings.vue | 6 $t('pageServerPowerOperations.bootSettings.bootSettingsOverride') 26 {{ $t('pageServerPowerOperations.bootSettings.enableOneTimeBoot') }} 29 :label="$t('pageServerPowerOperations.bootSettings.tpmRequiredPolicy')" 33 $t('pageServerPowerOperations.bootSettings.tpmRequiredPolicyHelper') 42 {{ $t('global.status.enabled') }} 46 {{ $t('global.action.save') }} 69 $t: useI18n().t,
|
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/ |
H A D | 0020-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch | 23 * config/i386/t-linux (HOST_LIBGCC2_CFLAGS): Remove -DUSE_ELF_SYMVER. 38 libgcc/config/i386/t-linux | 2 +- 73 diff --git a/libgcc/config/i386/t-linux b/libgcc/config/i386/t-linux 75 --- a/libgcc/config/i386/t-linux 76 +++ b/libgcc/config/i386/t-linux 78 # t-slibgcc-elf-ver and t-linux
|