Searched refs:inner (Results 1 - 25 of 154) sorted by relevance

1234567

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dnest13.C3 // The bug here is that wer'e getting a message about inner not
5 // compared as the "inner" we knew about when it was forward-declared,
6 // versus the "inner" we know about when it *has* been defined.
11 struct inner;
12 inner *trump()
16 struct inner struct in class:temp
H A Dnest1.C8 class inner { class in class:enclose
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dlocal1.C10 { struct Inner : virtual public Outer {} inner; } local
11 { struct Inner : virtual public Outer {} inner; } local
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dmemclass12.C4 template <class T> struct inner;
6 template <class T> struct outer::inner {}; struct in class:outer
/openbsd-current/gnu/gcc/libmudflap/testsuite/libmudflap.c/
H A Dpass-stratcliff.c62 int inner, middle, outer; local
77 for (inner = MAX (outer, size - 64); inner < size; ++inner)
79 adr[inner] = '\0';
81 if (strlen (&adr[outer]) != (size_t) (inner - outer))
83 printf ("strlen flunked for outer = %d, inner = %d\n",
84 outer, inner);
88 adr[inner] = 'T';
97 for (inner
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dnest3.C5 struct inner { struct
6 static void f() { std::cout << "inner::f()\n";}
11 struct inner { struct in struct:outer
12 static void f() { std::cout << "outer::inner::f()\n";}
16 inner::f(); //call of outer::inner::f()
17 ::inner::f(); //(try to) call inner::f() => parse error
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dmips_pro.c5 inner (int z) function
8 inner (z)
25 return inner (5);
27 return inner (6);
H A Dnodebug.c11 inner (int x) function
14 inner (x)
30 return 2 * inner (x);
H A Dnodebug.exp47 if [runto inner] then {
136 gdb_test "backtrace 10" "#0.*inner.*#1.*middle.*#2.*top.*#3.*main.*" \
137 "backtrace from inner in nodebug.exp"
141 #gdb_test "backtrace 10" "#0.*inner.*#1.*#2.*top.*#3.*main.*" \
142 # "backtrace from inner in nodebug.exp for externals"
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D951116-1.c7 int inner () {return j + i;} function
/openbsd-current/sys/netinet/
H A Dip_ecn.c58 * DS Field copied from inner hdr no change
62 * (I) if the ECN field in the inner header is set to CE, then set the
67 * field of the inner header is not-ECT, drop the packet.
68 * if the ECN field in the inner header is set to ECT(0) or ECT(1)
70 * the inner header. otherwise, make no change to the inner header.
76 * otherwise, make no change to the ECN field in the inner header.
87 ip_ecn_ingress(int mode, u_int8_t *outer, u_int8_t *inner) argument
89 if (!outer || !inner)
92 *outer = *inner;
120 ip_ecn_egress(int mode, u_int8_t *outer, u_int8_t *inner) argument
[all...]
/openbsd-current/usr.bin/tmux/
H A Dhyperlinks.c33 * Each hyperlink and ID combination is assigned a number ("inner" in this
36 * Each URI has one inner number and one external ID (which tmux uses to send
52 u_int inner; member in struct:hyperlinks_uri
81 * If both URIs are anonymous, use the inner for comparison so
89 return (left->inner - right->inner);
106 return (left->inner - right->inner);
158 return (hlu->inner);
164 hlu->inner
181 hyperlinks_get(struct hyperlinks *hl, u_int inner, const char **uri_out, const char **internal_id_out, const char **external_id_out) argument
[all...]
/openbsd-current/gnu/usr.bin/perl/t/run/
H A Ddtrace.t38 sub outer { Your::inner() }
40 sub inner { }
43 Your::inner();',
49 -> Your::inner at - line 4!
50 <- Your::inner at - line 4!
52 -> Your::inner at - line 4!
53 <- Your::inner at - line 4!/,
/openbsd-current/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Dsignals.py52 def inner(*args, **kwargs): function in function:removeHandler
59 return inner
/openbsd-current/gnu/gcc/gcc/
H A Dtree-loop-linear.c139 struct loop *inner_loop = first_loop->inner;
162 distances in the inner loops, the fewer the cache misses.
191 for (loop_j = first_loop->inner;
193 loop_j = loop_j->inner)
196 loop_i = loop_i->inner)
273 if (!loop_nest || !loop_nest->inner || !loop_nest->single_exit)
278 for (temp = loop_nest->inner; temp; temp = temp->inner)
H A Dtree-ssa-loop-unswitch.c90 /* Go through inner loops (only original ones). */
100 if (loop->inner)
197 if (loop->inner)
288 gcc_assert (loop->inner == NULL);
H A Dcfgloop.c37 considered to belong to inner loop with same header. */
344 for (ploop = loop->inner; ploop; ploop = ploop->next)
355 loop->next = father->inner;
356 father->inner = loop;
373 if (father->inner == loop)
374 father->inner = loop->next;
377 for (prev = father->inner; prev->next != loop; prev = prev->next);
392 struct loop *inner;
399 maximum level of all the inner loops of this loop. The loop
403 for (inner
391 struct loop *inner; local
[all...]
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dhash.t247 my %inner;
249 sub FETCH { $inner{$_[1]} }
250 sub STORE { $inner{$_[1]} = $_[2]; }
251 sub CLEAR { %inner = () }
257 %inner = qw(a x b y);
259 ::is(join( ':', %inner), "x:y", "magic keys");
H A Darray.t298 my $inner;
301 $inner = \$#array;
303 is ($$inner, -1);
309 is ($$inner, -1);
312 $$inner = 42;
318 is ($$inner, undef, "orphaned $#foo is always undef");
323 $$inner = 1;
328 $$inner = 503; # Bang!
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/subtest/
H A Dtodo.t163 ok 0, 'inner test 1'; BEGIN{ $line{in1} = __LINE__ }
171 ok 0, 'inner test 2'; BEGIN{ $line{in2} = __LINE__ }
178 ok 0, 'inner test 3'; BEGIN{ $line{in3} = __LINE__ }
180 not ok 1 - inner test 1
181 # Failed test 'inner test 1'
187 not ok 4 - inner test 2
188 # Failed test 'inner test 2'
194 not ok 7 - inner test 3
195 # Failed test 'inner test 3'
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dcp-namespace.c194 INNER_LENGTH is the end of the inner namespace. If the using
209 if ((strncmp (current->inner, name, inner_length) == 0)
210 && (strlen (current->inner) == inner_length)
271 /* Create a new struct using direct whose inner namespace is the
289 retval->inner = savestring (name, inner_len);
312 retval->inner = obsavestring (using->inner, strlen (using->inner),
318 xfree (using->inner);
427 sym = cp_lookup_symbol_namespace (current->inner,
[all...]
H A Dcp-support.h47 char *inner; member in struct:using_direct
/openbsd-current/gnu/llvm/clang/docs/tools/
H A Ddump_ast_matchers.py182 result, inner, name = m.groups()
183 if not inner:
184 inner = result
185 add_matcher(result, name, 'Matcher<%s>...' % inner,
195 inner, name = m.groups()
196 add_matcher('Type', name, 'Matcher<%s>...' % inner,
200 # add_matcher('TypeLoc', '%sLoc' % name, 'Matcher<%sLoc>...' % inner,
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dcfgloop.c29 considered to belong to inner loop with same header. */
457 loop->next = father->inner;
458 father->inner = loop;
479 if (father->inner == loop)
480 father->inner = loop->next;
483 for (prev = father->inner; prev->next != loop; prev = prev->next);
499 struct loop *inner;
506 maximum level of all the inner loops of this loop. The loop
510 for (inner = loop->inner; inne
498 struct loop *inner; local
[all...]
/openbsd-current/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_skipping.py135 def inner(*a): function in function:Test_TestSkipping.test_decorated_skip.decorator
137 return inner

Completed in 336 milliseconds

1234567