Searched refs:aptr (Results 1 - 25 of 28) sorted by relevance

12

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.mike/
H A Dthunk2.C29 A *aptr = bar(); local
30 aptr->foo();
31 if (dynamic_cast <void*> (aptr) != aptr)
33 if (typeid (*aptr) != typeid (A))
35 delete aptr;
H A Dthunk3.C27 A *aptr = bar(); local
28 aptr->foo();
29 if (dynamic_cast <void*> (aptr) != aptr)
31 delete aptr;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dthunk2.C29 A *aptr = bar(); local
30 aptr->foo();
31 if (dynamic_cast <void*> (aptr) != aptr)
33 if (typeid (*aptr) != typeid (A))
35 delete aptr;
H A Dthunk3.C27 A *aptr = bar(); local
28 aptr->foo();
29 if (dynamic_cast <void*> (aptr) != aptr)
31 delete aptr;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/fixincludes/tests/base/
H A Dobstack.h13 ((*((void **) (h)->next_free) = (aptr)), ( (h)->next_free += sizeof (void *)))
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/fixincludes/tests/base/
H A Dobstack.h13 ((*((void **) (h)->next_free) = (aptr)), ( (h)->next_free += sizeof (void *)))
/netbsd-6-1-5-RELEASE/gnu/dist/gmake/
H A Damiga.c37 char ** aptr; local
41 for (aptr=argv; *aptr; aptr++)
43 len += strlen (*aptr) + 4;
53 for (aptr=argv; *aptr; aptr++)
55 if (((*aptr)[0] == ';' && !(*aptr)[
[all...]
H A Dfunction.c1693 char ** aptr;
1711 for (aptr=command_argv; *aptr; aptr++)
1712 len += strlen (*aptr) + 1;
1717 for (aptr=command_argv; *aptr; aptr++)
1719 strcpy (ptr, *aptr);
1687 char ** aptr; local
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A Ddyncast4.C24 A* aptr = (A*) &b; local
25 if (dynamic_cast <B*> (aptr)) abort ();
26 if (b.a2b (aptr)) abort();
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.other/
H A Ddyncast4.C24 A* aptr = (A*) &b; local
25 if (dynamic_cast <B*> (aptr)) abort ();
26 if (b.a2b (aptr)) abort();
/netbsd-6-1-5-RELEASE/dist/dhcp/omapip/
H A Darray.c44 omapi_array_t *aptr; local
48 aptr = dmalloc (sizeof (omapi_array_t),file, line);
49 if (!aptr)
51 *array = aptr;
52 aptr -> ref = ref;
53 aptr -> deref = deref;
60 omapi_array_t *aptr; local
65 aptr = *array;
66 for (i = 0; i < aptr -> count; i++)
67 if (aptr
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/ext/ext_pointer/
H A D1_neg.cc54 A_pointer aptr( &a );
57 B_pointer bptr1(aptr); // { dg-error "instantiated from here" 31 }
61 B_pointer bptr3(__static_pointer_cast<B_pointer>(aptr)); // ok
65 bptr1 = aptr; // { dg-error "instantiated from here" 39 }
69 bptr1 = __static_pointer_cast<B_pointer>(aptr); // ok
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/
H A Dmri.c192 struct section_name_struct *aptr; local
198 for (aptr = alignment; aptr; aptr = aptr->next)
199 if (strcmp (aptr->name, p->name) == 0)
200 align = aptr->align;
202 for (aptr = subalignment; aptr; aptr
[all...]
/netbsd-6-1-5-RELEASE/lib/libedit/
H A Dreadline.c628 char *tmp, *search = NULL, *aptr; local
635 aptr = NULL;
656 if ((aptr = el_malloc((offs + 1) * sizeof(*aptr)))
659 (void)strncpy(aptr, command, offs);
660 aptr[offs] = '\0';
671 if (ptr == NULL && aptr == NULL)
675 *result = strdup(aptr ? aptr : ptr);
676 if (aptr)
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/bn/asm/
H A Dx86_64-mont.pl694 my $aptr="%rsi"; # const BN_ULONG *aptr,
749 lea ($aptr,$num),$aptr # end of a[] buffer, ($aptr,$i)=&ap[2]
754 mov -32($aptr,$i),$a0 # a[0]
756 mov -24($aptr,$i),%rax # a[1]
758 mov -16($aptr,$i),$ai # a[2]
777 mov 8($aptr,$j),$ai # a[3]
796 mov ($aptr,
[all...]
H A Dia64-mont.pl93 rptr=r8; aptr=r9; bptr=r14; nptr=r15;
110 $ADDP aptr=0,in1
124 ldf8 alo[4]=[aptr],16 // ap[0]
127 ldf8 alo[2]=[aptr],16 // ap[2]
167 { .mfi; (p16) ldf8 alo[0]=[aptr],8 // *(aptr++)
190 sub aptr=aptr,len };; // rewind
207 add r30=8,aptr };;
208 { .mmi; ldf8 alo[4]=[aptr],1
189 sub aptr=aptr,len };; // rewind subroutine
292 sub aptr=aptr,len };; // rewind subroutine
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/include/
H A Dobstack.h382 # define obstack_ptr_grow_fast(OBSTACK,aptr) \
385 *(const void **) __o1->next_free = (aptr); \
502 # define obstack_ptr_grow_fast(h,aptr) \
503 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
506 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aptr))
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/include/
H A Dobstack.h382 # define obstack_ptr_grow_fast(OBSTACK,aptr) \
385 *(const void **) __o1->next_free = (aptr); \
502 # define obstack_ptr_grow_fast(h,aptr) \
503 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
506 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aptr))
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/include/
H A Dobstack.h382 # define obstack_ptr_grow_fast(OBSTACK,aptr) \
385 *(const void **) __o1->next_free = (aptr); \
502 # define obstack_ptr_grow_fast(h,aptr) \
503 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
506 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aptr))
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/include/
H A Dobstack.h382 # define obstack_ptr_grow_fast(OBSTACK,aptr) \
385 *(const void **) __o1->next_free = (aptr); \
502 # define obstack_ptr_grow_fast(h,aptr) \
503 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
506 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aptr))
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Dobstack.h346 # define obstack_ptr_grow_fast(OBSTACK,aptr) \
349 *(const void **) __o1->next_free = (aptr); \
468 # define obstack_ptr_grow_fast(h,aptr) \
469 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
472 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aptr))
/netbsd-6-1-5-RELEASE/lib/libcurses/
H A Dsetterm.c340 const char *eptr = exit_cap, *aptr = acs_cap; local
344 __CTRACE(__CTRACE_INIT, "does_ctrl_o: Testing %s for %s\n", eptr, aptr);
348 if (!strncmp(eptr, aptr, l))
/netbsd-6-1-5-RELEASE/dist/ipf/
H A Dip_htable.c417 fr_iphmfindgroup(void *tptr, void *aptr) argument
426 addr = aptr;
443 /* aptr(I) - pointer to address information */
448 fr_iphmfindip(void *tptr, int ipversion, void *aptr) argument
458 if (tptr == NULL || aptr == NULL)
462 addr = aptr;
/netbsd-6-1-5-RELEASE/sys/dist/ipf/netinet/
H A Dip_htable.c427 fr_iphmfindgroup(void *tptr, void *aptr) argument
436 addr = aptr;
453 /* aptr(I) - pointer to address information */
458 fr_iphmfindip(void *tptr, int ipversion, void *aptr) argument
468 if (tptr == NULL || aptr == NULL)
472 addr = aptr;
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/diff/
H A Dutil.c708 translate_range (file, a, b, aptr, bptr)
711 int *aptr, *bptr;
713 *aptr = translate_line_number (file, a - 1) + 1;

Completed in 619 milliseconds

12