/third_party/toybox/toys/pending/ |
H A D | stty.c | 18 -a Show all current settings (default differences from "sane") 120 char *from; member 285 // "cs8" is missing from the man page, but needed to get identical results. in make_sane() 388 if (!strcmp(synonyms[j].from, arg)) { in do_stty() 411 // special characters and any flags that differ from the "sane" settings. in do_stty()
|
/third_party/rust/crates/nom/src/ |
H A D | error.rs | 14 /// It provides methods to create an error from some combinators, 17 /// Creates an error from the input position and an [ErrorKind] 20 /// Combines an existing error with a new one created from the input 25 /// Creates an error from an input position and an expected character 40 /// Creates a new error from an input position, a static string and an existing error. 49 /// error types from external functions, like [std::str::FromStr] in add_context() 51 /// Creates a new error from an input position, an [ErrorKind] indicating the in add_context() 85 /// Create a new error from an input position and an external error 133 /// Creates an error from the input position and an [ErrorKind] 138 /// Combines an existing error with a new one created from th [all...] |
/third_party/rust/crates/once_cell/src/ |
H A D | lib.rs | 58 //! // use `Logger::global()` from now on 436 fn from(value: T) -> Self { in from() functions 543 /// It is an error to reentrantly initialize the cell from `f`. Doing 576 /// It is an error to reentrantly initialize the cell from `f`. Doing 900 fn from(value: T) -> Self { in from() functions 1066 /// It is an error to reentrantly initialize the cell from `f`. The 1100 /// It is an error to reentrantly initialize the cell from `f`. 1231 // We never create a `&F` from a `&Lazy<T, F>` so it is fine to not impl
|
/third_party/rust/crates/syn/tests/ |
H A D | test_precedence.rs | 4 //! 2. Extract every syn::Expr from the file. 11 //! 8. Compare the rustc_ast::Expr resulting from parenthesizing using rustc 347 SmallVec::from([item]) in librustc_parenthesize() 359 SmallVec::from([item]) in librustc_parenthesize()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | pkcs7.rs | 257 /// Retrieve the signer's certificates from the PKCS#7 structure without verifying them. 300 let message: String = String::from("foo"); in encrypt_decrypt_test() 441 let input = String::from("Invalid SMIME Message"); in invalid_from_smime()
|
/third_party/zlib/examples/ |
H A D | gun.c | 16 Copy file attributes from input file to output file 28 gun will decompress from stdin to stdout. The names must end in .gz, -gz, 169 aspect of the compressed data format derived from an implementation that 191 /* Decompress a compress (LZW) file from indp to outfile. The compress magic 206 unsigned rem; /* unused bits from input */ in lunpipe() 299 rem = (unsigned)last >> (8 - left); /* unused bits from last byte */ in lunpipe() 371 /* Decompress a gzip file from infile to outfile. strm is assumed to have been 513 /* Copy file attributes, from -> to, as best we can. This is best effort, so 517 local void copymeta(char *from, char *to) in copymeta() argument 522 /* get all of from' in copymeta() [all...] |
/third_party/glslang/glslang/HLSL/ |
H A D | hlslParseHelper.cpp | 21 // from this software without specific prior written permission. 456 return finishSequence(rhsTmp, objDerefType); // return rhsTmp from sequence in handleLvalue() 486 return finishSequence(rhsTmp, objDerefType); // return rhsTmp from sequence in handleLvalue() 509 return finishSequence(rhsTmp1, objDerefType); // return rhsTmp from sequence in handleLvalue() 1109 // Merge qualifier from the user structure in splitBuiltIn() 1390 // Calculate new cumulative offset from the packed tree in flattenAccess() 1480 // type is copied to or from the external type. This corrects the externally 2123 // hull shader there is no ordering: the output comes from the separate PCF, which does not in transformEntryPoint() 2623 // Figure out if we are assigning to, or from, clip or cull distance. in assignClipCullDistance() 2686 // algorithm, because they may need to be unpacked from component in assignClipCullDistance() [all...] |
/kernel/linux/linux-5.10/security/smack/ |
H A D | smack_lsm.c | 270 * smk_fetch - Fetch the smack label from a file. 307 * @inode: inode to extract the info from 550 * SMK_SB_INITIALIZED will be zero from kzalloc. in smack_sb_alloc_security() 714 char *from = options, *to = options; in smack_sb_eat_lsm_opts() local 718 char *next = strchr(from, ','); in smack_sb_eat_lsm_opts() 723 len = next - from; in smack_sb_eat_lsm_opts() 725 len = strlen(from); in smack_sb_eat_lsm_opts() 727 token = match_opt_prefix(from, len, &arg); in smack_sb_eat_lsm_opts() 729 arg = kmemdup_nul(arg, from + len - arg, GFP_KERNEL); in smack_sb_eat_lsm_opts() 740 from in smack_sb_eat_lsm_opts() [all...] |
/kernel/linux/linux-6.6/security/smack/ |
H A D | smack_lsm.c | 282 * smk_fetch - Fetch the smack label from a file. 319 * @inode: inode to extract the info from 555 * SMK_SB_INITIALIZED will be zero from kzalloc. in smack_sb_alloc_security() 741 char *from = options, *to = options; in smack_sb_eat_lsm_opts() local 745 char *next = strchr(from, ','); in smack_sb_eat_lsm_opts() 750 len = next - from; in smack_sb_eat_lsm_opts() 752 len = strlen(from); in smack_sb_eat_lsm_opts() 754 token = match_opt_prefix(from, len, &arg); in smack_sb_eat_lsm_opts() 756 arg = kmemdup_nul(arg, from + len - arg, GFP_KERNEL); in smack_sb_eat_lsm_opts() 767 from in smack_sb_eat_lsm_opts() [all...] |
/kernel/linux/linux-5.10/drivers/firmware/ |
H A D | dmi_scan.c | 810 * DIMM entry information (dmi_memdev_info) from the SMBIOS table 973 * @from: previous device found in search, or %NULL for new search. 978 * A new search is initiated by passing %NULL as the @from argument. 979 * If @from is not %NULL, searches continue from next device. 982 const struct dmi_device *from) in dmi_find_device() 984 const struct list_head *head = from ? &from->list : &dmi_devices; in dmi_find_device() 1033 * from the end. Keep the behavior in the spirit of no in dmi_get_date() 981 dmi_find_device(int type, const char *name, const struct dmi_device *from) dmi_find_device() argument
|
/kernel/linux/linux-5.10/arch/ia64/kernel/ |
H A D | kprobes.c | 10 * <anil.s.keshavamurthy@intel.com> adapted from i386 67 static void __kprobes set_brl_inst(void *from, void *to) in set_brl_inst() argument 69 s64 rel = ((s64) to - (s64) from) >> 4; in set_brl_inst() 71 brl = (bundle_t *) ((u64) from & ~0xf); in set_brl_inst() 511 /* Get kprobe_inst and major_opcode from the bundle */ in arch_prepare_kprobe() 892 /* err is break number from ia64_bad_break() */ in kprobe_exceptions_notify() 899 /* err is vector number from ia64_fault() */ in kprobe_exceptions_notify()
|
/kernel/linux/linux-5.10/arch/arm/crypto/ |
H A D | sha512-armv4.pl | 4 # This code is taken from the OpenSSL project but the author (Andy Polyakov) 516 vadd.i64 $a,$Maj @ h+=Maj from the past 560 my ($d0,$d1,$d2) = map("d$_",(24..26)); # temps from NEON_00_15 561 my $e=@_[4]; # $e from NEON_00_15 566 vadd.i64 @_[0],d30 @ h+=Maj from the past 581 vshr.u64 $d0,$e,#@Sigma1[0] @ from NEON_00_15 583 vshr.u64 $d1,$e,#@Sigma1[1] @ from NEON_00_15 585 vshr.u64 $d2,$e,#@Sigma1[2] @ from NEON_00_15 619 vadd.i64 $A,d30 @ h+=Maj from the past
|
/kernel/linux/linux-5.10/arch/x86/mm/pat/ |
H A D | memtype.c | 8 * Loosely based on earlier PAT patchset from Eric Biederman and Andi Kleen. 841 u64 from = ((u64)pfn) << PAGE_SHIFT; in range_is_allowed() local 842 u64 to = from + size; in range_is_allowed() 843 u64 cursor = from; in range_is_allowed() 995 * from pte and reserve the entire vma range with single reserve_pfn_range call. 1007 * starting address and protection from pte. in track_pfn_copy() 1032 /* reserve the whole chunk starting from paddr */ in track_pfn_remap() 1093 /* free the chunk starting from pfn or the whole chunk */ in untrack_pfn()
|
/kernel/linux/linux-6.6/arch/ia64/kernel/ |
H A D | kprobes.c | 10 * <anil.s.keshavamurthy@intel.com> adapted from i386 67 static void __kprobes set_brl_inst(void *from, void *to) in set_brl_inst() argument 69 s64 rel = ((s64) to - (s64) from) >> 4; in set_brl_inst() 71 brl = (bundle_t *) ((u64) from & ~0xf); in set_brl_inst() 510 /* Get kprobe_inst and major_opcode from the bundle */ in arch_prepare_kprobe() 875 /* err is break number from ia64_bad_break() */ in kprobe_exceptions_notify() 882 /* err is vector number from ia64_fault() */ in kprobe_exceptions_notify()
|
/kernel/linux/linux-6.6/arch/arm/crypto/ |
H A D | sha512-armv4.pl | 4 # This code is taken from the OpenSSL project but the author (Andy Polyakov) 516 vadd.i64 $a,$Maj @ h+=Maj from the past 560 my ($d0,$d1,$d2) = map("d$_",(24..26)); # temps from NEON_00_15 561 my $e=@_[4]; # $e from NEON_00_15 566 vadd.i64 @_[0],d30 @ h+=Maj from the past 581 vshr.u64 $d0,$e,#@Sigma1[0] @ from NEON_00_15 583 vshr.u64 $d1,$e,#@Sigma1[1] @ from NEON_00_15 585 vshr.u64 $d2,$e,#@Sigma1[2] @ from NEON_00_15 619 vadd.i64 $A,d30 @ h+=Maj from the past
|
/kernel/linux/linux-5.10/drivers/md/ |
H A D | dm-kcopyd.c | 338 * for this reason we use a mempool to prevent the client from 479 * These three functions process 1 item from the corresponding 748 * from a single thread and don't race with each other. in segment_complete() 774 void dm_kcopyd_copy(struct dm_kcopyd_client *kc, struct dm_io_region *from, in dm_kcopyd_copy() argument 820 if (from) { in dm_kcopyd_copy() 821 job->source = *from; in dm_kcopyd_copy()
|
/kernel/linux/linux-5.10/drivers/scsi/mvsas/ |
H A D | mv_64xx.c | 725 int buf_len, int from, void *prd) in mvs_64xx_fix_dma() 731 buf_prd += from; in mvs_64xx_fix_dma() 732 for (i = 0; i < MAX_SG_ENTRY - from; i++) { in mvs_64xx_fix_dma() 724 mvs_64xx_fix_dma(struct mvs_info *mvi, u32 phy_mask, int buf_len, int from, void *prd) mvs_64xx_fix_dma() argument
|
/kernel/linux/linux-5.10/drivers/visorbus/ |
H A D | visorbus_main.c | 186 struct visor_device *from) in visorbus_get_device_by_id() 195 if (from) in visorbus_get_device_by_id() 196 dev_start = &from->device; in visorbus_get_device_by_id() 557 * visorbus_read_channel() - reads from the designated channel into 559 * @dev: the device whose channel is read from 561 * @dest: the destination buffer that is written into from the channel 562 * @nbytes: the number of bytes to read from the channel 632 * This is how everything starts from the device end. 185 visorbus_get_device_by_id(u32 bus_no, u32 dev_no, struct visor_device *from) visorbus_get_device_by_id() argument
|
/kernel/linux/linux-5.10/fs/ |
H A D | file.c | 50 * Copy 'count' fd bits from the old table to the new table and clear the extra 73 * Copy all file descriptors from the old table to the new, expanded table and 115 * and growing in powers of two from there on. in alloc_fdtable() 312 * Allocate a new files structure and copy contents from the 714 * from @fd up to and including @max_fd are closed. 1144 * @file: struct file that was received from another process 1265 int f_dupfd(unsigned int from, struct file *file, unsigned flags) in f_dupfd() argument 1268 if (from >= rlimit(RLIMIT_NOFILE)) in f_dupfd() 1270 err = alloc_fd(from, flags); in f_dupfd()
|
H A D | posix_acl.c | 5 * Fixes from William Schumacher incorporated on 15 March 2001. 645 * Called from set_acl inode operations. 670 struct user_namespace *to, struct user_namespace *from, in posix_acl_fix_xattr_userns() 695 uid = make_kuid(from, le32_to_cpu(entry->e_id)); in posix_acl_fix_xattr_userns() 699 gid = make_kgid(from, le32_to_cpu(entry->e_id)); in posix_acl_fix_xattr_userns() 725 * Convert from extended attribute to in-memory representation. 794 * Convert from in-memory to extended attribute representation. 669 posix_acl_fix_xattr_userns( struct user_namespace *to, struct user_namespace *from, void *value, size_t size) posix_acl_fix_xattr_userns() argument
|
/kernel/linux/linux-5.10/net/bpf/ |
H A D | test_run.c | 307 * after csd_lock(). However, since cpu is from user in bpf_prog_test_run_raw_tp() 387 * @from: check from this position 391 * in the buf in the range [from,to). 393 static inline bool range_is_zero(void *buf, size_t from, size_t to) in range_is_zero() argument 395 return !memchr_inv((u8 *)buf + from, 0, to - from); in range_is_zero()
|
/kernel/linux/linux-5.10/drivers/memory/ |
H A D | renesas-rpc-if.c | 595 loff_t from = offs & (RPCIF_DIRMAP_SIZE - 1); in rpcif_dirmap_read() local 596 size_t size = RPCIF_DIRMAP_SIZE - from; in rpcif_dirmap_read() 614 memcpy_fromio(buf, rpc->dirmap + from, len); in rpcif_dirmap_read()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | compat.h | 406 const struct kernel_siginfo *from); 408 const struct compat_siginfo __user *from); 410 const kernel_siginfo_t *from); 421 * CONFIG_HARDENED_USERCOPY complaining about copies from task_struct 475 * purposes, for static analysis, and for linking from the syscall table. 476 * These functions should not be called elsewhere from kernel code. 478 * As the syscall calling convention may be different from the default 917 * A pointer passed in from user mode. This should not
|
/kernel/linux/linux-6.6/drivers/firmware/ |
H A D | dmi_scan.c | 817 * DIMM entry information (dmi_memdev_info) from the SMBIOS table 980 * @from: previous device found in search, or %NULL for new search. 985 * A new search is initiated by passing %NULL as the @from argument. 986 * If @from is not %NULL, searches continue from next device. 989 const struct dmi_device *from) in dmi_find_device() 991 const struct list_head *head = from ? &from->list : &dmi_devices; in dmi_find_device() 1040 * from the end. Keep the behavior in the spirit of no in dmi_get_date() 988 dmi_find_device(int type, const char *name, const struct dmi_device *from) dmi_find_device() argument
|
/kernel/linux/linux-6.6/arch/x86/mm/pat/ |
H A D | memtype.c | 8 * Loosely based on earlier PAT patchset from Eric Biederman and Andi Kleen. 804 u64 from = ((u64)pfn) << PAGE_SHIFT; in range_is_allowed() local 805 u64 to = from + size; in range_is_allowed() 806 u64 cursor = from; in range_is_allowed() 958 * from pte and reserve the entire vma range with single reserve_pfn_range call. 970 * starting address and protection from pte. in track_pfn_copy() 995 /* reserve the whole chunk starting from paddr */ in track_pfn_remap() 1056 /* free the chunk starting from pfn or the whole chunk */ in untrack_pfn() 1081 * 2) while duplicating vm area, the new vma fails to copy the pgtable from
|