Home
last modified time | relevance | path

Searched refs:fst (Results 1 – 15 of 15) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/usb/storage/
H A Dfreecom.c224 struct freecom_status *fst; in freecom_transport() local
231 fst = (struct freecom_status *) us->iobuf; in freecom_transport()
265 result = usb_stor_bulk_transfer_buf (us, ipipe, fst, in freecom_transport()
271 US_DEBUG(pdump(us, (void *)fst, partial)); in freecom_transport()
282 while (fst->Status & FCM_STATUS_BUSY) { in freecom_transport()
284 usb_stor_dbg(us, "fst->Status is %x\n", fst->Status); in freecom_transport()
307 result = usb_stor_bulk_transfer_buf (us, ipipe, fst, in freecom_transport()
314 US_DEBUG(pdump(us, (void *)fst, partial)); in freecom_transport()
319 if ((fst->Status & 1) != 0) { in freecom_transport()
330 le16_to_cpu(fst->Count)); in freecom_transport()
[all …]
/OK3568_Linux_fs/buildroot/package/ntfs-3g/
H A D0001-ntfscp-Support-directory-copy.patch51 + struct stat fst;
61 - struct stat fst;
62 - if (stat(opts.src_file, &fst) == -1) {
66 - new_size = fst.st_size;
67 + if (stat(opts.src_file, &fst) == -1) {
71 + new_size = fst.st_size;
89 + ni = ntfs_new_file(dir_ni, filename, fst.st_mode);
115 + if (S_ISDIR(fst.st_mode)
133 + ni = ntfs_new_file(dir_ni, filename, fst.st_mode);
141 + if (S_ISDIR(fst.st_mode)) {
/OK3568_Linux_fs/kernel/arch/arm64/kernel/
H A Dfpsimd.c423 static void __fpsimd_to_sve(void *sst, struct user_fpsimd_state const *fst, in __fpsimd_to_sve() argument
431 *p = arm64_cpu_to_le128(fst->vregs[i]); in __fpsimd_to_sve()
451 struct user_fpsimd_state const *fst = &task->thread.uw.fpsimd_state; in fpsimd_to_sve() local
457 __fpsimd_to_sve(sst, fst, vq); in fpsimd_to_sve()
475 struct user_fpsimd_state *fst = &task->thread.uw.fpsimd_state; in sve_to_fpsimd() local
485 fst->vregs[i] = arm64_le128_to_cpu(*p); in sve_to_fpsimd()
573 struct user_fpsimd_state const *fst = &task->thread.uw.fpsimd_state; in sve_sync_from_fpsimd_zeropad() local
581 __fpsimd_to_sve(sst, fst, vq); in sve_sync_from_fpsimd_zeropad()
/OK3568_Linux_fs/kernel/samples/bpf/
H A Dtest_lru_dist.c173 struct stat fst; in read_keys() local
183 assert(fstat(dist_fd, &fst) == 0); in read_keys()
184 b = malloc(fst.st_size); in read_keys()
187 assert(read(dist_fd, b, fst.st_size) == fst.st_size); in read_keys()
189 for (i = 0; i < fst.st_size; i++) { in read_keys()
/OK3568_Linux_fs/yocto/poky/scripts/
H A Drunqemu325 def check_arg_fstype(self, fst): argument
327 if fst not in self.fstypes + self.vmtypes + self.wictypes:
328 logger.warning("Maybe unsupported FSTYPE: %s" % fst)
329 if not self.fstype or self.fstype == fst:
330 if fst == 'ramfs':
331 fst = 'cpio.gz'
332 if fst in ('tar.bz2', 'tar.gz'):
333 fst = 'nfs'
334 self.fstype = fst
336 raise RunQemuError("Conflicting: FSTYPE %s and %s" % (self.fstype, fst))
[all …]
/OK3568_Linux_fs/kernel/drivers/media/usb/pwc/
H A Dpwc-if.c289 int i, fst, flen; in pwc_isoc_handler() local
346 fst = urb->iso_frame_desc[i].status; in pwc_isoc_handler()
349 if (fst != 0) { in pwc_isoc_handler()
350 PWC_ERROR("Iso frame %d has error %d\n", i, fst); in pwc_isoc_handler()
/OK3568_Linux_fs/kernel/fs/orangefs/
H A Dsuper.c473 struct dentry *orangefs_mount(struct file_system_type *fst, in orangefs_mount() argument
516 sb = sget(fst, NULL, set_anon_super, flags, NULL); in orangefs_mount()
H A Dorangefs-kernel.h340 struct dentry *orangefs_mount(struct file_system_type *fst,
/OK3568_Linux_fs/kernel/tools/include/nolibc/
H A Dnolibc.h1613 int sys_mount(const char *src, const char *tgt, const char *fst, in sys_mount() argument
1616 return my_syscall5(__NR_mount, src, tgt, fst, flags, data); in sys_mount()
2036 const char *fst, unsigned long flags, in mount() argument
2039 int ret = sys_mount(src, tgt, fst, flags, data); in mount()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/include/
H A Dhnddma.h242 extern int dma_msgbuf_txfast(hnddma_t *di, dma64addr_t p0, bool com, uint32 ln, bool fst, bool lst);
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/include/
H A Dhnddma.h242 extern int dma_msgbuf_txfast(hnddma_t *di, dma64addr_t p0, bool com, uint32 ln, bool fst, bool lst);
/OK3568_Linux_fs/kernel/arch/x86/events/intel/
H A Dds.c1334 bool fst = fl & (PERF_X86_EVENT_PEBS_ST | PERF_X86_EVENT_PEBS_HSW_PREC); in get_data_src() local
1338 else if (fst && (fl & PERF_X86_EVENT_PEBS_HSW_PREC)) in get_data_src()
1340 else if (fst) in get_data_src()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/ply/
H A Dyacc.py1746 fst = self._first(p.prod[i+1:])
1748 for f in fst:
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/
H A Das.info12617 if you wrote 'fst %st, %st(1)', since all register to register
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/
H A Das.info12617 if you wrote 'fst %st, %st(1)', since all register to register