Searched refs:IN (Results 26 - 50 of 202) sorted by relevance

123456789

/openbsd-current/gnu/llvm/clang/lib/Rewrite/
H A DDeltaTree.cpp174 if (auto *IN = dyn_cast<DeltaTreeInteriorNode>(this))
176 NewFullDelta += IN->getChild(i)->getFullDelta();
231 auto *IN = cast<DeltaTreeInteriorNode>(this); local
232 if (!IN->Children[i]->DoInsertion(FileIndex, Delta, InsertRes))
242 memmove(&IN->Children[i+2], &IN->Children[i+1],
243 (e-i)*sizeof(IN->Children[0]));
244 IN->Children[i] = InsertRes->LHS;
245 IN->Children[i+1] = InsertRes->RHS;
257 IN
346 const auto *IN = dyn_cast<DeltaTreeInteriorNode>(N); local
430 const auto *IN = dyn_cast<DeltaTreeInteriorNode>(Node); local
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/
H A DMkbootstrap.t30 local *IN;
31 if (open(IN, 'mkboot.bso')) {
32 chomp ($file_is_ready = <IN>);
33 close IN;
98 $file_is_ready = open(IN, 'dasboot.bs');
106 my $file = do { local $/ = <IN> };
132 $file_is_ready = open(IN, 'dasboot.bs');
138 my $file = do { local $/ = <IN> };
146 close IN;
/openbsd-current/sys/arch/arm64/stand/efiboot/
H A Defirng.c12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
40 IN struct _EFI_RNG_PROTOCOL *This,
41 IN OUT UINTN *RNGAlgorithmListSize,
48 IN struct _EFI_RNG_PROTOCOL *This,
49 IN EFI_RNG_ALGORITHM *RNGAlgorithm, OPTIONAL
50 IN UINTN RNGValueLength,
/openbsd-current/sys/arch/amd64/stand/efiboot/
H A Defirng.c12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
40 IN struct _EFI_RNG_PROTOCOL *This,
41 IN OUT UINTN *RNGAlgorithmListSize,
48 IN struct _EFI_RNG_PROTOCOL *This,
49 IN EFI_RNG_ALGORITHM *RNGAlgorithm, OPTIONAL
50 IN UINTN RNGValueLength,
/openbsd-current/sys/arch/riscv64/stand/efiboot/
H A Defirng.c12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
40 IN struct _EFI_RNG_PROTOCOL *This,
41 IN OUT UINTN *RNGAlgorithmListSize,
48 IN struct _EFI_RNG_PROTOCOL *This,
49 IN EFI_RNG_ALGORITHM *RNGAlgorithm, OPTIONAL
50 IN UINTN RNGValueLength,
H A Defiriscv.c12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
40 IN struct _RISCV_EFI_BOOT_PROTOCOL *This,
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/Builder/
H A Doutput.t38 open(IN, $tmpfile) or die $!;
39 chomp(my $line = <IN>);
40 close IN;
55 open(IN, $tmpfile) or die $!;
56 my @lines = <IN>;
57 close IN;
/openbsd-current/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/t/
H A D106-process_typemaps.t32 open my $IN, '>', 'typemap' or croak "Cannot open for writing";
33 print $IN "\n";
34 close $IN or croak "Cannot close after writing";
H A D001-basic.t86 open my $IN, '<', $source_file
88 while (my $l = <$IN>) {
95 seek($IN, 0, 0);
96 my $filecontents = <$IN>;
133 close $IN or die "Unable to close $source_file: $!";
170 open my $IN, '<', $source_file
172 while (my $l = <$IN>) {
175 close $IN or die "Unable to close $source_file: $!";
/openbsd-current/gnu/usr.bin/perl/Porting/
H A Dmanisort28 open(my $IN, '<', $file)
30 my @manifest = <$IN>;
31 close($IN) or die($!);
/openbsd-current/gnu/usr.bin/perl/cpan/Pod-Checker/t/pod/
H A Dselfcheck.t29 if(open(IN, "<$out")) {
30 while(<IN>) {
33 close(IN);
/openbsd-current/lib/libcrypto/util/
H A Dmkstack.pl29 open(IN, "< $file") || die "Can't open $file for reading: $!";
31 while(<IN>) {
48 close(IN);
58 open(IN, "< $safestack.h") || die "Can't open input file: $!";
59 while(<IN>) {
/openbsd-current/gnu/usr.bin/perl/cpan/Pod-Simple/t/
H A Deol.t50 open(IN, ">$$.in") or die "$$.in: $!";
53 print IN $_;
56 close(IN);
67 open(IN, ">$$.in") or die "$$.in: $!";
70 print IN $_;
73 close(IN);
84 open(IN, ">$$.in") or die "$$.in: $!";
87 print IN $_;
90 close(IN);
/openbsd-current/gnu/llvm/clang/utils/analyzer/
H A Dreducer.pl43 open(IN, "$reduceOut") or exit(\$BAD);
45 while(<IN>) {
/openbsd-current/gnu/gcc/gcc/
H A Dreal.h301 /* IN is a REAL_VALUE_TYPE. OUT is an array of longs. */
302 #define REAL_VALUE_TO_TARGET_LONG_DOUBLE(IN, OUT) \
303 real_to_target (OUT, &(IN), \
306 #define REAL_VALUE_TO_TARGET_DOUBLE(IN, OUT) \
307 real_to_target (OUT, &(IN), mode_for_size (64, MODE_FLOAT, 0))
309 /* IN is a REAL_VALUE_TYPE. OUT is a long. */
310 #define REAL_VALUE_TO_TARGET_SINGLE(IN, OUT) \
311 ((OUT) = real_to_target (NULL, &(IN), mode_for_size (32, MODE_FLOAT, 0)))
321 /* IN is a REAL_VALUE_TYPE. OUT is an array of longs. */
322 #define REAL_VALUE_TO_TARGET_DECIMAL128(IN, OU
[all...]
/openbsd-current/gnu/llvm/llvm/utils/
H A DUpdateCMakeLists.pl64 open(IN, $cmakeList);
68 while(<IN>) {
84 close(IN);
/openbsd-current/gnu/lib/libiberty/src/
H A Dgather-docs58 if (!open(IN, "$srcdir/$in")) {
68 while (<IN>) {
96 close (IN);
/openbsd-current/gnu/usr.bin/perl/dist/Term-ReadLine/t/
H A DReadLine.t25 for my $method (qw( ReadLine readline addhistory IN OUT MinLine
/openbsd-current/regress/usr.bin/calendar/
H A DMakefile6 IN= ${.CURDIR}/in macro
15 @${CALENDAR} -f ${IN} -t ${f:C|.*/||:C/\..*//} | diff -u ${OUT} -
/openbsd-current/gnu/usr.bin/perl/plan9/
H A Dgenconfig.pl56 open(IN,'<',$infile) || die "Can't open $infile: $!\n";
211 while (<IN>) { # roll through the comment header in config.h
215 while (<IN>) {
220 $_ = <IN>;
266 close IN;
/openbsd-current/regress/lib/libcrypto/aead/
H A Daeadtest.c12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
15 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
43 * IN: 8c8419bc27
53 #ifdef IN
54 #undef IN macro
63 IN, /* hex encoded plaintext. */ enumerator in enum:__anon1
75 "IN",
144 lengths[NONCE], bufs[IN], lengths[IN], buf
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/Perldoc/
H A DToPod.pm18 open(IN, "<", $in) or $self->die( "Can't read-open $in: $!\nAborting" );
24 while (<IN>) {
36 close IN or $self->die( "Can't close $in: $!" );
/openbsd-current/gnu/usr.bin/perl/os2/OS2/OS2-Process/t/
H A Dos2_process_kid.t40 open IN, "<&=$e_r" or die "kid: open <&=$e_r: $!, `$^E'";
41 select STDERR; $| = 1; print while sysread IN, $_, 1<<16;
/openbsd-current/gnu/usr.bin/perl/lib/
H A Dopen.t34 eval q{ no warnings 'layer'; use open IN => ':macguffin' ; };
39 eval q{ use warnings 'layer'; use open IN => ':macguffin' ; };
47 import( 'IN', ':crlf' );
51 import( 'IN', ':raw' );
54 # it dies if you don't set IN, OUT, or IO
/openbsd-current/sys/stand/efi/include/
H A Defidef.h57 // IN - argument is passed into the function
62 #ifndef IN
63 #define IN macro

Completed in 196 milliseconds

123456789