/third_party/rust/crates/os_str_bytes/src/ |
H A D | lib.rs | 317 match string.into() { in from_raw_bytes() 326 Cow::Owned(string) => Cow::Owned(string.into()), in cow_os_str_into_path() 337 /// Converts a byte string into an equivalent platform-native string. 370 /// Converts a byte string into an equivalent platform-native string. in assert_from_raw_bytes() 405 /// Converts a platform-native string into an equivalent byte string. 479 /// Converts a byte string into an equivalent platform-native string. in to_raw_bytes() 510 /// Converts a byte string into an equivalent platform-native string. in to_raw_bytes() 543 /// Converts a platform-native string into an equivalent byte string. in to_raw_bytes() 555 /// let os_string: OsString = string.clone().into(); in to_raw_bytes() 584 OsString::assert_from_raw_vec(string).into() in assert_from_raw_vec() [all...] |
/third_party/rust/crates/clap/src/builder/ |
H A D | arg_predicate.rs | 17 Self::Equals(other.into()) in from()
|
/kernel/linux/linux-5.10/arch/x86/crypto/ |
H A D | crct10dif-pcl-asm_64.S | 64 # Fold reg1, reg2 into the next 32 data bytes, storing the result back into 83 # Fold src_reg into dst_reg. 138 # bytes xmm0-7 into them, storing the result back into xmm0-7. 148 # Now fold the 112 bytes in xmm0-xmm6 into the 16 bytes in xmm7. 171 # xmm7 into them, storing the result back into xmm7. 195 # the bytes into a first chunk of 'len' bytes and a second chunk of 16 196 # bytes, then fold the first chunk into th [all...] |
/kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
H A D | sgetem.S | 59 movew LOCAL_EX(%a0),%d0 |load resulting exponent into d0 134 | ;be shifted into ms mant 135 orl %d6,%d0 |shift the ls mant bits into the ms mant
|
H A D | do_func.S | 7 | The opcode and tag bits form an index into a jump table in 82 addl %d1,%d0 |combine for final index into table 98 | These routines load forced values into fp0. They are called 99 | by index into tbldo. 436 bclrl #2,%d0 |alias denorm into norm 437 bclrl #2,%d1 |alias denorm into norm
|
/kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
H A D | sgetem.S | 59 movew LOCAL_EX(%a0),%d0 |load resulting exponent into d0 134 | ;be shifted into ms mant 135 orl %d6,%d0 |shift the ls mant bits into the ms mant
|
H A D | do_func.S | 7 | The opcode and tag bits form an index into a jump table in 82 addl %d1,%d0 |combine for final index into table 98 | These routines load forced values into fp0. They are called 99 | by index into tbldo. 436 bclrl #2,%d0 |alias denorm into norm 437 bclrl #2,%d1 |alias denorm into norm
|
/kernel/linux/linux-6.6/arch/x86/crypto/ |
H A D | crct10dif-pcl-asm_64.S | 64 # Fold reg1, reg2 into the next 32 data bytes, storing the result back into 83 # Fold src_reg into dst_reg. 137 # bytes xmm0-7 into them, storing the result back into xmm0-7. 147 # Now fold the 112 bytes in xmm0-xmm6 into the 16 bytes in xmm7. 170 # xmm7 into them, storing the result back into xmm7. 194 # the bytes into a first chunk of 'len' bytes and a second chunk of 16 195 # bytes, then fold the first chunk into th [all...] |
/third_party/node/test/parallel/ |
H A D | test-tls-client-auth.js | 24 function split(file, into) { 27 into.single = certs[1]; 28 into.subca = certs[2];
|
/third_party/rust/crates/autocfg/src/ |
H A D | lib.rs | 156 let rustc = env::var_os("RUSTC").unwrap_or_else(|| "rustc".into()); in with_dir() 157 let rustc: PathBuf = rustc.into(); in with_dir() 163 let dir = dir.into(); in with_dir()
|
/third_party/rust/crates/proc-macro-error/src/ |
H A D | macros.rs | 209 $var.span_suggestion($span.into(), stringify!($help), msg.to_string()) 235 let $var = $var.span_suggestion($span.into(), stringify!($help), $msg.to_string()); 239 $span.into(),
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | videodsp.asm | 123 ; - if (%2 & 8) fills 8 bytes into xmm$next 124 ; - if (%2 & 4) fills 4 bytes into xmm$next 127 ; - if (%2 & 4) fills 4 bytes into mm$next 247 ; they read a fixed number of pixels into set registers, and write 248 ; those out into the destination buffer
|
/kernel/linux/linux-5.10/arch/m68k/math-emu/ |
H A D | fp_movem.S | 141 | move register from memory into fpu 161 | move register from fpu into memory 325 | move register from memory into fpu 336 | move register from fpu into memory
|
/kernel/linux/linux-6.6/arch/m68k/math-emu/ |
H A D | fp_movem.S | 141 | move register from memory into fpu 161 | move register from fpu into memory 325 | move register from memory into fpu 336 | move register from fpu into memory
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | function.rs | 531 args.insert(0, (Some("this".into()), ptr)); in from_ty() 536 args.insert(0, (Some("this".into()), ptr)); in from_ty() 753 tracer.visit_kind(self.return_type().into(), EdgeKind::FunctionReturn); in trace() 756 tracer.visit_kind(ty.into(), EdgeKind::FunctionParameter); in trace()
|
/third_party/rust/crates/nix/src/ |
H A D | unistd.rs | 333 let res = unsafe { libc::setpgid(pid.into(), pgid.into()) }; in setpgid() 338 let res = unsafe { libc::getpgid(pid.unwrap_or(Pid(0)).into()) }; in getpgid() 357 let res = unsafe { libc::getsid(pid.unwrap_or(Pid(0)).into()) }; in getsid() 381 let res = unsafe { libc::tcsetpgrp(fd, pgrp.into()) }; in tcsetpgrp() 702 let uid = owner.map(Into::into) in chown_raw_ids() 704 let gid = group.map(Into::into) in chown_raw_ids() 1116 /// or equal to offset. If offset points into the middle of a hole, then 1447 let res = unsafe { libc::seteuid(euid.into()) }; in seteuid() 1457 let res = unsafe { libc::setegid(egid.into()) }; in setegid() [all...] |
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 553 # install the variables into the specified package, 690 parts of the program into the template. That prevents code bloat and 725 template into the example result, and prints it out: 795 so the C<\n> really does turn into a newline. See the note at the end 803 statement is a string, which is interpolated into the template in 807 fragments will persist into later fragments: 822 The value of C<$x> set in the first line will persist into the next 825 into the last line. The output will look something like this: 838 into the template, and you want the template to generate a bulleted 1058 back into th [all...] |
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 553 # install the variables into the specified package, 690 parts of the program into the template. That prevents code bloat and 725 template into the example result, and prints it out: 795 so the C<\n> really does turn into a newline. See the note at the end 803 statement is a string, which is interpolated into the template in 807 fragments will persist into later fragments: 822 The value of C<$x> set in the first line will persist into the next 825 into the last line. The output will look something like this: 838 into the template, and you want the template to generate a bulleted 1058 back into th [all...] |
/kernel/linux/linux-6.6/samples/rust/ |
H A D | rust_print.rs | 30 let a: Arc<&str> = b.into(); in arc_print()
|
/third_party/rust/crates/clap/tests/derive/ |
H A D | deny_warnings.rs | 20 Ok(s.into()) in try_str()
|
/third_party/openssl/doc/life-cycles/ |
H A D | Makefile | 9 @echo into the man pages.
|
/third_party/rust/crates/nix/src/sys/ |
H A D | pthread.rs | 36 let sig = match signal.into() { in pthread_kill()
|
/third_party/rust/crates/rustix/examples/ |
H A D | hello.rs | 33 Err(err) => return Err(err.into()), in main()
|
/third_party/rust/crates/os_str_bytes/src/wasm/ |
H A D | raw.rs | 28 ch.into()
|
/third_party/rust/crates/rust-openssl/openssl-macros/src/ |
H A D | lib.rs | 31 out.into() in corresponds()
|