/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | btf_helpers.c | 67 static const char *btf_func_linkage_str(const struct btf_type *t) in btf_func_linkage_str() argument 69 switch (btf_vlen(t)) { in btf_func_linkage_str() 90 const struct btf_type *t; in fprintf_btf_type_raw() local 94 t = btf__type_by_id(btf, id); in fprintf_btf_type_raw() 95 if (!t) in fprintf_btf_type_raw() 98 vlen = btf_vlen(t); in fprintf_btf_type_raw() 99 kind = btf_kind(t); in fprintf_btf_type_raw() 101 fprintf(out, "[%u] %s '%s'", id, btf_kind_str(kind), btf_str(btf, t->name_off)); in fprintf_btf_type_raw() 106 t->size, btf_int_offset(t), btf_int_bits(t), in fprintf_btf_type_raw() 107 btf_int_enc_str(btf_int_encoding(t))); in fprintf_btf_type_raw() [all …]
|
/openbmc/linux/arch/x86/crypto/ |
H A D | sha512-avx-asm.S | 78 # W[t] + K[t] | W[t+1] + K[t+1] 87 # WK_2(t) points to 1 of 2 qwords at frame.WK depdending on t being odd/even 101 # W[t]+K[t] (stack frame) 123 # Compute Round %%t 132 add WK_2(idx), T1 # W[t] + K[t] from message scheduler 136 add h_64, T1 # T1 = CH(e,f,g) + W[t] + K[t] + h 138 add tmp0, T1 # T1 = CH(e,f,g) + W[t] + K[t] + S1(e) 157 # Compute rounds t-2 and t-1 158 # Compute message schedule QWORDS t and t+1 160 # Two rounds are computed based on the values for K[t-2]+W[t-2] and [all …]
|
/openbmc/linux/arch/parisc/math-emu/ |
H A D | fpudispatch.c | 277 u_int r1,r2,t; /* operand register offsets */ in decode_0c() local 293 t = extru(ir,fptpos,5) * sizeof(double)/sizeof(u_int); in decode_0c() 294 if (t == 0 && class != 2) /* don't allow fr0 as a dest */ in decode_0c() 309 t &= ~3; /* force to even reg #s */ in decode_0c() 311 fpregs[t+3] = fpregs[r1+3]; in decode_0c() 312 fpregs[t+2] = fpregs[r1+2]; in decode_0c() 315 fpregs[t+1] = fpregs[r1+1]; in decode_0c() 318 fpregs[t] = fpregs[r1]; in decode_0c() 327 t &= ~3; /* force to even reg #s */ in decode_0c() 329 fpregs[t+3] = fpregs[r1+3]; in decode_0c() [all …]
|
/openbmc/phosphor-host-ipmid/include/ipmid/message/ |
H A D | pack.hpp | 82 static int op(Payload& p, const T& t) in op() 89 PackBytesUnaligned<T>(p, t); in op() 96 PackBytes<T>(out, t); in op() 119 static int op(Payload& p, const std::string& t) in op() 123 if (t.length() > std::numeric_limits<decltype(len)>::max()) in op() 128 len = static_cast<uint8_t>(t.length()); in op() 130 p.append(t.c_str(), t.c_str() + t.length()); in op() 140 static int op(Payload& p, const fixed_uint_t<N>& t) in op() 146 uint64_t bits = static_cast<uint64_t>(t); in op() 173 static int op(Payload& p, const std::bitset<N>& t) in op() [all …]
|
H A D | unpack.hpp | 78 static int op(Payload& p, T& t) in op() 82 t = 0; in op() 85 if (p.fillBits(CHAR_BIT * sizeof(t))) in op() 89 UnpackBytesUnaligned<T>(p, t); in op() 94 if (p.raw.size() < (p.rawIndex + sizeof(t))) in op() 99 t = 0; in op() 100 UnpackBytes<T>(iter, t); in op() 101 p.rawIndex += sizeof(t); in op() 112 int ret = p.unpack(t); in op() 115 t = T(); in op() [all …]
|
/openbmc/linux/drivers/media/dvb-frontends/ |
H A D | lgs8gxx.c | 104 u8 t; in wait_reg_mask() local 108 lgs8gxx_read_reg(priv, reg, &t); in wait_reg_mask() 110 if ((t & mask) == val) in wait_reg_mask() 182 u8 reg_addr, t; in lgs8gxx_get_afc_phase() local 191 lgs8gxx_read_reg(priv, reg_addr, &t); in lgs8gxx_get_afc_phase() 193 v32 |= t; in lgs8gxx_get_afc_phase() 206 u8 t; in lgs8gxx_set_mode_auto() local 213 lgs8gxx_read_reg(priv, 0x0C, &t); in lgs8gxx_set_mode_auto() 214 t &= (~0x04); in lgs8gxx_set_mode_auto() 215 lgs8gxx_write_reg(priv, 0x0C, t | 0x80); in lgs8gxx_set_mode_auto() [all …]
|
/openbmc/qemu/hw/smbios/ |
H A D | smbios.c | 568 t->bios_starting_address_segment = cpu_to_le16(0xE800); /* from SeaBIOS */ in smbios_build_type_0_table() 572 t->bios_rom_size = 0; /* hardcoded in SeaBIOS with FIXME comment */ in smbios_build_type_0_table() 574 t->bios_characteristics = cpu_to_le64(0x08); /* Not supported */ in smbios_build_type_0_table() 575 t->bios_characteristics_extension_bytes[0] = 0; in smbios_build_type_0_table() 576 t->bios_characteristics_extension_bytes[1] = 0x14; /* TCD/SVVP | VM */ in smbios_build_type_0_table() 578 t->bios_characteristics_extension_bytes[1] |= 0x08; /* |= UEFI */ in smbios_build_type_0_table() 582 t->system_bios_major_release = smbios_type0.major; in smbios_build_type_0_table() 583 t->system_bios_minor_release = smbios_type0.minor; in smbios_build_type_0_table() 585 t->system_bios_major_release = 0; in smbios_build_type_0_table() 586 t->system_bios_minor_release = 0; in smbios_build_type_0_table() [all …]
|
/openbmc/linux/drivers/gpu/drm/radeon/ |
H A D | mkregtable.c | 131 static void table_offset_add(struct table *t, struct offset *offset) in table_offset_add() argument 133 list_add_tail(&offset->list, &t->offsets); in table_offset_add() 136 static void table_init(struct table *t) in table_init() argument 138 INIT_LIST_HEAD(&t->offsets); in table_init() 139 t->offset_max = 0; in table_init() 140 t->nentry = 0; in table_init() 141 t->table = NULL; in table_init() 144 static void table_print(struct table *t) in table_print() argument 148 nlloop = (t->nentry + 3) / 4; in table_print() 149 c = t->nentry; in table_print() [all …]
|
/openbmc/linux/arch/powerpc/include/asm/ |
H A D | atomic.h | 29 int t; in arch_atomic_read() local 33 __asm__ __volatile__("lwz %0,0(%1)" : "=r"(t) : "b"(&v->counter)); in arch_atomic_read() 35 __asm__ __volatile__("lwz%U1%X1 %0,%1" : "=r"(t) : "m<>"(v->counter)); in arch_atomic_read() 37 return t; in arch_atomic_read() 52 int t; \ 59 : "=&r" (t), "+m" (v->counter) \ 67 int t; \ 74 : "=&r" (t), "+m" (v->counter) \ 78 return t; \ 84 int res, t; \ [all …]
|
/openbmc/linux/arch/powerpc/kernel/ |
H A D | cputable.c | 35 struct cpu_spec *t = &the_cpu_spec; in set_cur_cpu_spec() local 37 t = PTRRELOC(t); in set_cur_cpu_spec() 42 memcpy(t, s, sizeof(*t)); in set_cur_cpu_spec() 50 struct cpu_spec *t = &the_cpu_spec; in setup_cpu_spec() local 53 t = PTRRELOC(t); in setup_cpu_spec() 54 old = *t; in setup_cpu_spec() 60 memcpy(t, s, sizeof(*t)); in setup_cpu_spec() 68 t->num_pmcs = old.num_pmcs; in setup_cpu_spec() 69 t->pmc_type = old.pmc_type; in setup_cpu_spec() 75 t->cpu_features |= old.cpu_features & CPU_FTR_PMAO_BUG; in setup_cpu_spec() [all …]
|
/openbmc/linux/net/ipv4/ |
H A D | ipcomp.c | 60 struct xfrm_state *t; in ipcomp_tunnel_create() local 62 t = xfrm_state_alloc(net); in ipcomp_tunnel_create() 63 if (!t) in ipcomp_tunnel_create() 66 t->id.proto = IPPROTO_IPIP; in ipcomp_tunnel_create() 67 t->id.spi = x->props.saddr.a4; in ipcomp_tunnel_create() 68 t->id.daddr.a4 = x->id.daddr.a4; in ipcomp_tunnel_create() 69 memcpy(&t->sel, &x->sel, sizeof(t->sel)); in ipcomp_tunnel_create() 70 t->props.family = AF_INET; in ipcomp_tunnel_create() 71 t->props.mode = x->props.mode; in ipcomp_tunnel_create() 72 t->props.saddr.a4 = x->props.saddr.a4; in ipcomp_tunnel_create() [all …]
|
/openbmc/linux/kernel/ |
H A D | softirq.c | 725 static void __tasklet_schedule_common(struct tasklet_struct *t, in __tasklet_schedule_common() argument 734 t->next = NULL; in __tasklet_schedule_common() 735 *head->tail = t; in __tasklet_schedule_common() 736 head->tail = &(t->next); in __tasklet_schedule_common() 741 void __tasklet_schedule(struct tasklet_struct *t) in __tasklet_schedule() argument 743 __tasklet_schedule_common(t, &tasklet_vec, in __tasklet_schedule() 748 void __tasklet_hi_schedule(struct tasklet_struct *t) in __tasklet_hi_schedule() argument 750 __tasklet_schedule_common(t, &tasklet_hi_vec, in __tasklet_hi_schedule() 755 static bool tasklet_clear_sched(struct tasklet_struct *t) in tasklet_clear_sched() argument 757 if (test_and_clear_bit(TASKLET_STATE_SCHED, &t->state)) { in tasklet_clear_sched() [all …]
|
H A D | kcov.c | 63 struct task_struct *t; member 173 static notrace bool check_kcov_mode(enum kcov_mode needed_mode, struct task_struct *t) in check_kcov_mode() argument 182 if (!in_task() && !(in_softirq_really() && t->kcov_softirq)) in check_kcov_mode() 184 mode = READ_ONCE(t->kcov_mode); in check_kcov_mode() 210 struct task_struct *t; in __sanitizer_cov_trace_pc() local 215 t = current; in __sanitizer_cov_trace_pc() 216 if (!check_kcov_mode(KCOV_MODE_TRACE_PC, t)) in __sanitizer_cov_trace_pc() 219 area = t->kcov_area; in __sanitizer_cov_trace_pc() 222 if (likely(pos < t->kcov_size)) { in __sanitizer_cov_trace_pc() 240 struct task_struct *t; in write_comp_data() local [all …]
|
/openbmc/linux/sound/firewire/ |
H A D | fcp.c | 234 struct fcp_transaction t; in fcp_avc_transaction() local 237 t.unit = unit; in fcp_avc_transaction() 238 t.response_buffer = response; in fcp_avc_transaction() 239 t.response_size = response_size; in fcp_avc_transaction() 240 t.response_match_bytes = response_match_bytes; in fcp_avc_transaction() 241 t.state = STATE_PENDING; in fcp_avc_transaction() 242 init_waitqueue_head(&t.wait); in fcp_avc_transaction() 243 t.deferrable = (*(const u8 *)command == 0x00 || *(const u8 *)command == 0x03); in fcp_avc_transaction() 246 list_add_tail(&t.list, &transactions); in fcp_avc_transaction() 252 ret = snd_fw_transaction(t.unit, tcode, in fcp_avc_transaction() [all …]
|
/openbmc/webui-vue/src/env/components/AppNavigation/ |
H A D | intel.js | 34 label: i18n.global.t('appNavigation.overview'), 40 label: i18n.global.t('appNavigation.logs'), 45 label: i18n.global.t('appNavigation.eventLogs'), 50 label: i18n.global.t('appNavigation.postCodeLogs'), 57 label: i18n.global.t('appNavigation.hardwareStatus'), 62 label: i18n.global.t('appNavigation.inventory'), 67 label: i18n.global.t('appNavigation.sensors'), 74 label: i18n.global.t('appNavigation.operations'), 79 label: i18n.global.t('appNavigation.kvm'), 84 label: i18n.global.t('appNavigation.firmware'), [all …]
|
/openbmc/linux/include/linux/ |
H A D | user_events.h | 30 extern void user_event_mm_dup(struct task_struct *t, 33 extern void user_event_mm_remove(struct task_struct *t); 35 static inline void user_events_fork(struct task_struct *t, in user_events_fork() argument 40 if (!t || !current->user_event_mm) in user_events_fork() 46 t->user_event_mm = old_mm; in user_events_fork() 51 user_event_mm_dup(t, old_mm); in user_events_fork() 54 static inline void user_events_execve(struct task_struct *t) in user_events_execve() argument 56 if (!t || !t->user_event_mm) in user_events_execve() 59 user_event_mm_remove(t); in user_events_execve() 62 static inline void user_events_exit(struct task_struct *t) in user_events_exit() argument [all …]
|
/openbmc/linux/net/ipv6/ |
H A D | ipcomp6.c | 77 struct xfrm_state *t = NULL; in ipcomp6_tunnel_create() local 79 t = xfrm_state_alloc(net); in ipcomp6_tunnel_create() 80 if (!t) in ipcomp6_tunnel_create() 83 t->id.proto = IPPROTO_IPV6; in ipcomp6_tunnel_create() 84 t->id.spi = xfrm6_tunnel_alloc_spi(net, (xfrm_address_t *)&x->props.saddr); in ipcomp6_tunnel_create() 85 if (!t->id.spi) in ipcomp6_tunnel_create() 88 memcpy(t->id.daddr.a6, x->id.daddr.a6, sizeof(struct in6_addr)); in ipcomp6_tunnel_create() 89 memcpy(&t->sel, &x->sel, sizeof(t->sel)); in ipcomp6_tunnel_create() 90 t->props.family = AF_INET6; in ipcomp6_tunnel_create() 91 t->props.mode = x->props.mode; in ipcomp6_tunnel_create() [all …]
|
/openbmc/linux/crypto/ |
H A D | cast5_generic.c | 305 u32 l, r, t; in __cast5_encrypt() local 327 t = l; l = r; r = t ^ F1(r, Km[0], Kr[0]); in __cast5_encrypt() 328 t = l; l = r; r = t ^ F2(r, Km[1], Kr[1]); in __cast5_encrypt() 329 t = l; l = r; r = t ^ F3(r, Km[2], Kr[2]); in __cast5_encrypt() 330 t = l; l = r; r = t ^ F1(r, Km[3], Kr[3]); in __cast5_encrypt() 331 t = l; l = r; r = t ^ F2(r, Km[4], Kr[4]); in __cast5_encrypt() 332 t = l; l = r; r = t ^ F3(r, Km[5], Kr[5]); in __cast5_encrypt() 333 t = l; l = r; r = t ^ F1(r, Km[6], Kr[6]); in __cast5_encrypt() 334 t = l; l = r; r = t ^ F2(r, Km[7], Kr[7]); in __cast5_encrypt() 335 t = l; l = r; r = t ^ F3(r, Km[8], Kr[8]); in __cast5_encrypt() [all …]
|
/openbmc/qemu/target/arm/tcg/ |
H A D | gengvec.c | 274 TCGv_i64 t = tcg_temp_new_i64(); in gen_srshr8_i64() local 276 tcg_gen_shri_i64(t, a, sh - 1); in gen_srshr8_i64() 277 tcg_gen_andi_i64(t, t, dup_const(MO_8, 1)); in gen_srshr8_i64() 279 tcg_gen_vec_add8_i64(d, d, t); in gen_srshr8_i64() 284 TCGv_i64 t = tcg_temp_new_i64(); in gen_srshr16_i64() local 286 tcg_gen_shri_i64(t, a, sh - 1); in gen_srshr16_i64() 287 tcg_gen_andi_i64(t, t, dup_const(MO_16, 1)); in gen_srshr16_i64() 289 tcg_gen_vec_add16_i64(d, d, t); in gen_srshr16_i64() 294 TCGv_i32 t; in gen_srshr32_i32() local 301 t = tcg_temp_new_i32(); in gen_srshr32_i32() [all …]
|
/openbmc/u-boot/fs/yaffs2/ |
H A D | yaffs_packedtags1.c | 26 const struct yaffs_ext_tags *t) in yaffs_pack_tags1() argument 28 pt->chunk_id = t->chunk_id; in yaffs_pack_tags1() 29 pt->serial_number = t->serial_number; in yaffs_pack_tags1() 30 pt->n_bytes = t->n_bytes; in yaffs_pack_tags1() 31 pt->obj_id = t->obj_id; in yaffs_pack_tags1() 33 pt->deleted = (t->is_deleted) ? 0 : 1; in yaffs_pack_tags1() 38 void yaffs_unpack_tags1(struct yaffs_ext_tags *t, in yaffs_unpack_tags1() argument 43 t->block_bad = 0; in yaffs_unpack_tags1() 45 t->block_bad = 1; in yaffs_unpack_tags1() 46 t->chunk_used = 1; in yaffs_unpack_tags1() [all …]
|
/openbmc/linux/arch/m68k/sun3/ |
H A D | intersil.c | 27 int sun3_hwclk(int set, struct rtc_time *t) in sun3_hwclk() argument 41 todintersil->hour = t->tm_hour; in sun3_hwclk() 42 todintersil->minute = t->tm_min; in sun3_hwclk() 43 todintersil->second = t->tm_sec; in sun3_hwclk() 44 todintersil->month = t->tm_mon + 1; in sun3_hwclk() 45 todintersil->day = t->tm_mday; in sun3_hwclk() 46 todintersil->year = (t->tm_year - 68) % 100; in sun3_hwclk() 47 todintersil->weekday = t->tm_wday; in sun3_hwclk() 50 t->tm_sec = todintersil->csec; in sun3_hwclk() 51 t->tm_hour = todintersil->hour; in sun3_hwclk() [all …]
|
/openbmc/linux/drivers/staging/fieldbus/anybuss/ |
H A D | host.c | 248 struct ab_task *t); 283 struct ab_task *t; in ab_task_create_get() local 285 t = kmem_cache_alloc(cache, GFP_KERNEL); in ab_task_create_get() 286 if (!t) in ab_task_create_get() 288 t->cache = cache; in ab_task_create_get() 289 kref_init(&t->refcount); in ab_task_create_get() 290 t->task_fn = task_fn; in ab_task_create_get() 291 t->done_fn = NULL; in ab_task_create_get() 292 t->result = 0; in ab_task_create_get() 293 init_completion(&t->done); in ab_task_create_get() [all …]
|
/openbmc/linux/tools/perf/tests/ |
H A D | builtin-test.c | 144 static int num_subtests(const struct test_suite *t) in num_subtests() argument 148 if (!t->test_cases) in num_subtests() 152 while (t->test_cases[num].name) in num_subtests() 158 static bool has_subtests(const struct test_suite *t) in has_subtests() argument 160 return num_subtests(t) > 1; in has_subtests() 163 static const char *skip_reason(const struct test_suite *t, int subtest) in skip_reason() argument 165 if (!t->test_cases) in skip_reason() 168 return t->test_cases[subtest >= 0 ? subtest : 0].skip_reason; in skip_reason() 171 static const char *test_description(const struct test_suite *t, int subtest) in test_description() argument 173 if (t->test_cases && subtest >= 0) in test_description() [all …]
|
/openbmc/linux/tools/usb/ |
H A D | ffs-test.c | 336 static ssize_t read_wrap(struct thread *t, void *buf, size_t nbytes); 337 static ssize_t write_wrap(struct thread *t, const void *buf, size_t nbytes); 338 static ssize_t ep0_consume(struct thread *t, const void *buf, size_t nbytes); 339 static ssize_t fill_in_buf(struct thread *t, void *buf, size_t nbytes); 340 static ssize_t empty_out_buf(struct thread *t, const void *buf, size_t nbytes); 379 static void init_thread(struct thread *t) in init_thread() argument 381 t->buf = malloc(t->buf_size); in init_thread() 382 die_on(!t->buf, "malloc"); in init_thread() 384 t->fd = open(t->filename, O_RDWR); in init_thread() 385 die_on(t->fd < 0, "%s", t->filename); in init_thread() [all …]
|
/openbmc/qemu/scripts/tracetool/format/ |
H A D | ust_events_h.py | 73 for t,n,f in zip(types, names, fmts): 74 if ('char *' in t) or ('char*' in t): 77 out(' ctf_integer_hex('+ t + ', ' + n + ', ' + n + ')') 78 elif ("ptr" in t) or ("*" in t): 79 out(' ctf_integer_hex('+ t + ', ' + n + ', ' + n + ')') 80 elif ('int' in t) or ('long' in t) or ('unsigned' in t) \ 81 or ('size_t' in t) or ('bool' in t): 82 out(' ctf_integer(' + t + ', ' + n + ', ' + n + ')') 83 elif ('double' in t) or ('float' in t): 84 out(' ctf_float(' + t + ', ' + n + ', ' + n + ')') [all …]
|