/openbmc/openbmc/poky/meta/recipes-devtools/gcc/ |
H A D | gcc-multilib-config.inc | 10 # gcc/config/i386/t-linux64 11 # gcc/config/mips/t-linux64 12 # gcc/config/rs6000/t-linux64 30 ml_globs = ('%s/*/t-linux64' % src_conf_dir, 32 '%s/aarch64/t-aarch64' % src_conf_dir, 143 'x86_64' : ['gcc/config/i386/t-linux64'], 144 'i586' : ['gcc/config/i386/t-linux64'], 145 'i686' : ['gcc/config/i386/t-linux64'], 146 'mips' : ['gcc/config/mips/t-linux64'], 147 'mips64' : ['gcc/config/mips/t-linux64'], [all …]
|
/openbmc/linux/arch/x86/xen/ |
H A D | time.c | 395 struct vcpu_register_time_memory_area t; in xen_save_time_memory_area() local 403 t.addr.v = NULL; in xen_save_time_memory_area() 405 ret = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_time_memory_area, 0, &t); in xen_save_time_memory_area() 415 struct vcpu_register_time_memory_area t; in xen_restore_time_memory_area() local 421 t.addr.v = &xen_clock->pvti; in xen_restore_time_memory_area() 423 ret = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_time_memory_area, 0, &t); in xen_restore_time_memory_area() 446 struct vcpu_register_time_memory_area t; in xen_setup_vsyscall_time_info() local 454 t.addr.v = &ti->pvti; in xen_setup_vsyscall_time_info() 456 ret = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_time_memory_area, 0, &t); in xen_setup_vsyscall_time_info() 469 t.addr.v = NULL; in xen_setup_vsyscall_time_info() [all …]
|
/openbmc/linux/arch/parisc/kernel/ |
H A D | unwind.c | 304 if ((info->prev_sp - (unsigned long) task_stack_page(info->t)) in unwind_frame_regs() 385 void unwind_frame_init(struct unwind_frame_info *info, struct task_struct *t, in unwind_frame_init() argument 389 info->t = t; in unwind_frame_init() 396 t ? (int)t->pid : -1, info->sp, info->ip); in unwind_frame_init() 399 void unwind_frame_init_from_blocked_task(struct unwind_frame_info *info, struct task_struct *t) in unwind_frame_init_from_blocked_task() argument 401 struct pt_regs *r = &t->thread.regs; in unwind_frame_init_from_blocked_task() 410 unwind_frame_init(info, t, r2); in unwind_frame_init_from_blocked_task() 455 next_frame->t ? (int)next_frame->t->pid : -1, in unwind_once()
|
/openbmc/qemu/include/qemu/ |
H A D | osdep.h | 353 #define TYPE_SIGNED(t) (!((t)0 < (t)-1)) argument 358 #define TYPE_WIDTH(t) (sizeof(t) * CHAR_BIT) argument 361 #define TYPE_MAXIMUM(t) \ argument 362 ((t) (!TYPE_SIGNED(t) \ 363 ? (t)-1 \ 364 : ((((t)1 << (TYPE_WIDTH(t) - 2)) - 1) * 2 + 1)))
|
/openbmc/linux/sound/core/ |
H A D | timer.c | 1660 struct snd_timer *t; in snd_timer_user_ginfo() local 1673 if (t != NULL) { in snd_timer_user_ginfo() 1674 ginfo->card = t->card ? t->card->number : -1; in snd_timer_user_ginfo() 1701 struct snd_timer *t; in timer_set_gparams() local 1706 if (!t) { in timer_set_gparams() 1718 err = t->hw.set_period(t, gparams->period_num, gparams->period_den); in timer_set_gparams() 1749 if (t != NULL) { in snd_timer_user_gstatus() 1753 t->hw.precise_resolution(t, &gstatus.resolution_num, in snd_timer_user_gstatus() 1825 if (!t) in snd_timer_user_info() 1831 info->card = t->card ? t->card->number : -1; in snd_timer_user_info() [all …]
|
/openbmc/linux/lib/ |
H A D | muldi3.c | 11 #define __ll_lowpart(t) ((unsigned long) (t) & (__ll_B - 1)) argument 12 #define __ll_highpart(t) ((unsigned long) (t) >> (W_TYPE_SIZE / 2)) argument
|
/openbmc/linux/arch/microblaze/lib/ |
H A D | muldi3.c | 9 #define __ll_lowpart(t) ((unsigned long) (t) & (__ll_B - 1)) argument 10 #define __ll_highpart(t) ((unsigned long) (t) >> (W_TYPE_SIZE / 2)) argument
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 225.out | 2 Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=1048576 3 Formatting 'TEST_DIR/t.IMGFMT.not_base', fmt=IMGFMT size=1048576 4 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=1048576 backing_file=TEST_DIR/t.IMGFMT.base backing…
|
H A D | findtests.py | 51 for t in self.all_tests: 52 with open(t, encoding="utf-8") as f: 56 self.groups[g].add(t) 151 for t in tests: 152 res.add(self.parse_test_name(t))
|
H A D | 089.out | 5 Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=67108864 12 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 25 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 backing_file=TEST_DIR/t.IMGFMT.base backin… 33 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 40 image: TEST_DIR/t.IMGFMT
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/glog/glog/ |
H A D | 0001-Change-SleepForMilliseconds-parameter-from-unsigned-.patch | 9 const struct timespec req = {0, t * 1000 * 1000}; 26 -static inline void SleepForMilliseconds(unsigned t) { 27 +static inline void SleepForMilliseconds(long t) { 30 const struct timespec req = {0, t * 1000 * 1000};
|
/openbmc/linux/arch/arm/kernel/ |
H A D | xscale-cp0.c | 33 static int dsp_do(struct notifier_block *self, unsigned long cmd, void *t) in dsp_do() argument 35 struct thread_info *thread = t; in dsp_do() 58 static int iwmmxt_do(struct notifier_block *self, unsigned long cmd, void *t) in iwmmxt_do() argument 60 struct thread_info *thread = t; in iwmmxt_do()
|
/openbmc/linux/include/linux/ |
H A D | elfcore.h | 87 static inline int elf_core_copy_task_regs(struct task_struct *t, elf_gregset_t* elfregs) in elf_core_copy_task_regs() argument 90 return ELF_CORE_COPY_TASK_REGS(t, elfregs); in elf_core_copy_task_regs() 92 elf_core_copy_regs(elfregs, task_pt_regs(t)); in elf_core_copy_task_regs() 97 int elf_core_copy_task_fpregs(struct task_struct *t, elf_fpregset_t *fpu);
|
/openbmc/openbmc/meta-facebook/meta-yosemite4/recipes-phosphor/images/ |
H A D | fb-yosemite4-phosphor-image.inc | 1 # Currently, the led related services couldn't complete 3 # If multi-user.target doesn't complete, 4 # the obmc-host-startmin@.target couldn't start. 5 # In that case, BMC couldn't set current host state to "Running".
|
/openbmc/linux/fs/ntfs/ |
H A D | time.h | 79 u64 t = (u64)(sle64_to_cpu(time) - NTFS_TIME_OFFSET); in ntfs2utc() local 84 ts.tv_nsec = do_div(t, 10000000) * 100; in ntfs2utc() 85 ts.tv_sec = t; in ntfs2utc()
|
/openbmc/u-boot/lib/ |
H A D | bch.c | 389 const int t = GF_T(bch); in compute_syndromes() local 405 for (j = 0; j < 2*t; j += 2) in compute_syndromes() 413 for (j = 0; j < t; j++) in compute_syndromes() 434 memset(elp, 0, GF_POLY_SZ(2*t)); in compute_error_locator_polynomial() 442 for (i = 0; (i < t) && (elp->deg <= t); i++) { in compute_error_locator_polynomial() 464 if (i < t-1) { in compute_error_locator_polynomial() 581 rows[k] ^= (t << j); in find_affine4_roots() 582 rows[k+j] ^= t; in find_affine4_roots() 1230 for (i = 0; i < t; i++) { in compute_generator_polynomial() 1327 if ((t < 1) || (m*t >= ((1 << m)-1))) in init_bch() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libcyusbserial/libcyusbserial/ |
H A D | 0001-CMakeLists.txt-don-t-fall-back-CMAKE_INSTALL_LIBDIR-.patch | 4 Subject: [PATCH] CMakeLists.txt: don't fall back CMAKE_INSTALL_LIBDIR to lib 7 doesn't really work in cross compilation and on some hosts was causing: 15 with multilib using /usr/lib32 or /usr/lib64 when the same didn't 32 -# Fall back to just "lib" if the item provided by GNUInstallDirs doesn't exist 34 -# /usr/lib/${CMAKE_LIBRARY_ARCHITECTURE} doesn't exist.
|
/openbmc/linux/lib/crypto/ |
H A D | blake2s-generic.c | 35 state->t[0] += inc; in blake2s_increment_counter() 36 state->t[1] += (state->t[0] < inc); in blake2s_increment_counter() 62 v[12] = BLAKE2S_IV4 ^ state->t[0]; in blake2s_compress_generic() 63 v[13] = BLAKE2S_IV5 ^ state->t[1]; in blake2s_compress_generic()
|
/openbmc/linux/tools/testing/selftests/timers/ |
H A D | inconsistency-check.c | 99 time_t t; in consistency_test() local 106 t = time(0); in consistency_test() 107 start_str = ctime(&t); in consistency_test() 141 t = time(0); in consistency_test() 142 ksft_print_msg("%s\n", ctime(&t)); in consistency_test()
|
/openbmc/u-boot/lib/bzip2/ |
H A D | bzlib_decompress.c | 159 Int32 t; in BZ2_decompress() local 360 for (t = 0; t < nGroups; t++) { in BZ2_decompress() 370 s->len[t][i] = curr; in BZ2_decompress() 375 for (t = 0; t < nGroups; t++) { in BZ2_decompress() 379 if (s->len[t][i] > maxLen) maxLen = s->len[t][i]; in BZ2_decompress() 380 if (s->len[t][i] < minLen) minLen = s->len[t][i]; in BZ2_decompress() 383 &(s->limit[t][0]), in BZ2_decompress() 384 &(s->base[t][0]), in BZ2_decompress() 385 &(s->perm[t][0]), in BZ2_decompress() 386 &(s->len[t][0]), in BZ2_decompress() [all …]
|
/openbmc/linux/drivers/media/pci/saa7146/ |
H A D | mxb.c | 176 struct v4l2_tuner t = { in mxb_update_audmode() local 180 tda9840_call(mxb, tuner, s_tuner, &t); in mxb_update_audmode() 538 if (t->index) { in vidioc_g_tuner() 540 t->index); in vidioc_g_tuner() 546 memset(t, 0, sizeof(*t)); in vidioc_g_tuner() 547 strscpy(t->name, "TV Tuner", sizeof(t->name)); in vidioc_g_tuner() 548 t->type = V4L2_TUNER_ANALOG_TV; in vidioc_g_tuner() 551 t->audmode = mxb->cur_mode; in vidioc_g_tuner() 560 if (t->index) { in vidioc_s_tuner() 562 t->index); in vidioc_s_tuner() [all …]
|
/openbmc/linux/drivers/watchdog/ |
H A D | sbc7240_wdt.c | 71 static int wdt_set_timeout(int t) in wdt_set_timeout() argument 73 if (t < 1 || t > SBC7240_MAX_TIMEOUT) { in wdt_set_timeout() 78 outb_p((unsigned)t, SBC7240_SET_TIMEOUT_PORT); in wdt_set_timeout() 79 timeout = t; in wdt_set_timeout() 80 pr_info("timeout set to %d seconds\n", t); in wdt_set_timeout()
|
/openbmc/linux/crypto/ |
H A D | keywrap.c | 130 u64 t = 6 * ((req->cryptlen) >> 3); in crypto_kw_decrypt() local 164 block.A ^= cpu_to_be64(t); in crypto_kw_decrypt() 165 t--; in crypto_kw_decrypt() 199 u64 t = 1; in crypto_kw_encrypt() local 241 block.A ^= cpu_to_be64(t); in crypto_kw_encrypt() 242 t++; in crypto_kw_encrypt()
|
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/ |
H A D | phy_shim.c | 67 void wlapi_free_timer(struct wlapi_timer *t) in wlapi_free_timer() argument 69 brcms_free_timer((struct brcms_timer *)t); in wlapi_free_timer() 73 wlapi_add_timer(struct wlapi_timer *t, uint ms, int periodic) in wlapi_add_timer() argument 75 brcms_add_timer((struct brcms_timer *)t, ms, periodic); in wlapi_add_timer() 78 bool wlapi_del_timer(struct wlapi_timer *t) in wlapi_del_timer() argument 80 return brcms_del_timer((struct brcms_timer *)t); in wlapi_del_timer()
|
/openbmc/openbmc/poky/meta/recipes-core/readline/readline/ |
H A D | readline82-010.patch | 16 assumes the match doesn't add any characters to the word and doesn't display 42 + once, we don't call compare_matches after dequoting TEXT; we call 49 ! char *t; 50 ! t = (*rl_filename_dequoting_function) (text, rl_completion_quote_character); 52 ! text = t;
|