Searched refs:in (Results 1 - 25 of 4262) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/clang/tools/scan-build-py/tests/functional/src/
H A Dbroken-one.c3 int value(int in) argument
5 return 2 * in;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/compile/
H A D19990502-1.f3 in = 1
4 do while (in.le.nadc.and.IGAMS(2,in).le.in)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/ext/
H A Dasm3.C8 int two(int in) argument
11 __asm__ ("" : "r" (out) : "r" (in)); // { dg-error "output operand" "" }
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20030331-2.c5 float in[1][yd]; local
8 printf("%p\n",in[0]);
H A D20011113-1.c10 const char *const in; member in struct:fi
/openbsd-current/gnu/usr.bin/perl/plan9/arpa/
H A Dinet.h1 /* Declarations which would have been found in <arpa/inet.h> */
2 /* On Plan 9, these are found in <netinet/in.h> */
7 #include <netinet/in.h>
/openbsd-current/sys/stand/boot/
H A Dboot.conf4 echo timeout in 5 seconds
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20011126-2.c3 There is a partial redundancy of "in + 1" that makes GCSE want to
6 p = in + 1;
13 in = tmp;
14 if (in < p) goto top;
17 instead of (p - in) = 1, which results in overflow in the doloop
21 test (const char *in, char *out) argument
25 if (*in == 'a')
27 const char *p = in
[all...]
/openbsd-current/etc/
H A Dttys.pty9 # copyright notice and this permission notice appear in all copies.
23 for i in ${letters}; do
24 for j in ${suffixes}; do
/openbsd-current/gnu/usr.bin/perl/hints/
H A Dsuper-ux.sh6 case "$optimize" in
16 case "$usemymalloc" in
H A Dhaiku.sh4 case "$prefix" in
17 case "$usemymalloc" in
27 # Large negative numbers really kind of suck in arrays.
37 case "$ldlibpthname" in
43 case "$usenm" in
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Harness/t/
H A Dyamlish.t16 in => [
23 in => [
30 in => [
37 in => [
44 in => [
53 in => [
62 in => [
71 in => [
81 in => [
90 { name => 'Hash in arra
[all...]
/openbsd-current/gnu/usr.bin/binutils/gas/
H A Dflonum-copy.c12 GAS is distributed in the hope that it will be useful,
25 flonum_copy (FLONUM_TYPE *in, FLONUM_TYPE *out) argument
30 out->sign = in->sign;
31 in_length = in->leader - in->low;
33 if (in->leader < in->low)
40 /* Assume no GAPS in packing of littlenums.
54 memcpy ((void *) (out->low), (void *) (in->low),
56 out->exponent = in
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/
H A Dflonum-copy.c12 GAS is distributed in the hope that it will be useful,
25 flonum_copy (FLONUM_TYPE *in, FLONUM_TYPE *out) argument
30 out->sign = in->sign;
31 in_length = in->leader - in->low;
33 if (in->leader < in->low)
40 /* Assume no GAPS in packing of littlenums.
54 memcpy ((void *) (out->low), (void *) (in->low),
56 out->exponent = in
[all...]
/openbsd-current/gnu/usr.bin/cvs/lib/
H A Dmemmove.c10 Libiberty is distributed in the hope that it will be useful,
26 void memmove (void *out, const void *in, size_t n);
47 memmove (out, in, length)
49 const void* in;
52 bcopy(in, out, length);
/openbsd-current/gnu/usr.bin/gcc/contrib/regression/
H A Dsite.exp3 case "$target_triplet" in {
/openbsd-current/gnu/usr.bin/perl/t/perf/
H A Dtaint.t3 # All the tests in this file are ones that run exceptionally slowly
4 # (each test taking seconds or even minutes) in the absence of particular
41 my $in = $taint . ( "ab" x 200_000 );
42 utf8::upgrade($in);
43 ok(tainted($in), "performance issue only when tainted");
44 while ($in =~ /\Ga+b/g) { }
53 my $in = $taint . ("abcdefghijklmnopqrstuvwxyz" x $repeat);
54 utf8::upgrade($in);
55 ok(tainted($in), "performance issue only when tainted");
58 $in
[all...]
/openbsd-current/regress/lib/libm/msun/
H A Dconj_test.c6 * Redistribution and use in source and binary forms, with or without
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
73 complex float in; local
78 __real__ expected = __real__ in = tests[2 * i];
79 __imag__ in = tests[2 * i + 1]; local
80 __imag__ expected = -cimag(in);
82 ATF_REQUIRE(fpequal_cs(libcrealf(in), __real__ in, true)); local
83 ATF_REQUIRE(fpequal_cs(libcreal(in), __real_ local
84 ATF_REQUIRE(fpequal_cs(libcreall(in), __real__ in, true)); local
85 ATF_REQUIRE(fpequal_cs(libcimagf(in), __imag__ in, true)); local
86 ATF_REQUIRE(fpequal_cs(libcimag(in), __imag__ in, true)); local
87 ATF_REQUIRE(fpequal_cs(libcimagl(in), __imag__ in, true)); local
[all...]
/openbsd-current/gnu/lib/libiberty/
H A Dmove-if-change7 case $# in
12 for arg in "$1" "$2"; do
13 case $arg in
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb39.C9 extern bool foo2 (ostream &out, istream &in);
12 foo1 (ostream &out, const char *in) argument
14 string tmp(in, std::strlen(in));
/openbsd-current/gnu/usr.bin/binutils-2.17/
H A Dmove-if-change7 case $# in
12 for arg in "$1" "$2"; do
13 case $arg in
/openbsd-current/sys/arch/sparc64/sparc64/
H A DMakefile3 DEP= busop.awk busop_h.in busop_c.in
7 awk -f busop.awk < busop_h.in > busop.h
8 awk -f busop.awk < busop_c.in > busop.c
/openbsd-current/regress/sys/net/pf_divert/
H A Dargs-udp-packet-in.pl2 # create a divert-packet in rule on the remote machine
18 in => "Client",
22 in => "Packet",
25 divert => "packet-in",
H A Dargs-udp-packet-out.pl18 in => "Client",
22 in => "Packet",
/openbsd-current/lib/libssl/test/
H A Dtestsslproxy5 for auth in A B C BC; do
6 for cond in A B C 'A|B&!C'; do

Completed in 293 milliseconds

1234567891011>>