Home
last modified time | relevance | path

Searched refs:aptr (Results 1 – 25 of 31) sorted by relevance

12

/openbsd-src/gnu/usr.bin/binutils-2.17/ld/
H A Dmri.c191 struct section_name_struct *aptr; in mri_draw_tree() local
197 for (aptr = alignment; aptr; aptr = aptr->next) in mri_draw_tree()
198 if (strcmp (aptr->name, p->name) == 0) in mri_draw_tree()
199 align = aptr->align; in mri_draw_tree()
201 for (aptr = subalignment; aptr; aptr = aptr->next) in mri_draw_tree()
202 if (strcmp (aptr->name, p->name) == 0) in mri_draw_tree()
203 subalign = aptr->subalign; in mri_draw_tree()
220 for (aptr = alias; aptr; aptr = aptr->next) in mri_draw_tree()
221 if (strcmp (aptr->alias, p->name) == 0) in mri_draw_tree()
225 tmp->spec.name = aptr->name; in mri_draw_tree()
/openbsd-src/gnu/usr.bin/binutils/ld/
H A Dmri.c204 struct section_name_struct *aptr; in mri_draw_tree() local
210 for (aptr = alignment; aptr; aptr = aptr->next) in mri_draw_tree()
211 if (strcmp (aptr->name, p->name) == 0) in mri_draw_tree()
212 align = aptr->align; in mri_draw_tree()
214 for (aptr = subalignment; aptr; aptr = aptr->next) in mri_draw_tree()
215 if (strcmp (aptr->name, p->name) == 0) in mri_draw_tree()
216 subalign = aptr->subalign; in mri_draw_tree()
233 for (aptr = alias; aptr; aptr = aptr->next) in mri_draw_tree()
234 if (strcmp (aptr->alias, p->name) == 0) in mri_draw_tree()
238 tmp->spec.name = aptr->name; in mri_draw_tree()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dthunk2.C28 A *aptr = bar(); in main() local
29 aptr->foo(); in main()
30 if (dynamic_cast <void*> (aptr) != aptr) in main()
32 if (typeid (*aptr) != typeid (A)) in main()
34 delete aptr; in main() local
H A Dthunk3.C26 A *aptr = bar(); in main() local
27 aptr->foo(); in main()
28 if (dynamic_cast <void*> (aptr) != aptr) in main()
30 delete aptr; in main() local
/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dbld.c2322 ffebld_constantarray_preparray (void **aptr, void **cptr, size_t *size, in ffebld_constantarray_preparray() argument
2334 *aptr = array.integer1 + offset; in ffebld_constantarray_preparray()
2340 *aptr = array.integer2 + offset; in ffebld_constantarray_preparray()
2346 *aptr = array.integer3 + offset; in ffebld_constantarray_preparray()
2352 *aptr = array.integer4 + offset; in ffebld_constantarray_preparray()
2358 *aptr = array.integer5 + offset; in ffebld_constantarray_preparray()
2364 *aptr = array.integer6 + offset; in ffebld_constantarray_preparray()
2370 *aptr = array.integer7 + offset; in ffebld_constantarray_preparray()
2376 *aptr = array.integer8 + offset; in ffebld_constantarray_preparray()
2391 *aptr = array.logical1 + offset; in ffebld_constantarray_preparray()
[all …]
H A Dbld.h691 void ffebld_constantarray_prepare (void **aptr, void **cptr, size_t *size,
695 void ffebld_constantarray_preparray (void **aptr, void **cptr, size_t *size,
/openbsd-src/lib/libcrypto/bn/asm/
H A Dx86_64-mont.pl693 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,$j),$ai # a[4]
813 mov 8($aptr,$j),$ai # a[5]
829 mov 16($aptr,$j),$ai # a[6]
846 mov 24($aptr,$j),$ai # a[7]
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Ddyncast4.C23 A* aptr = (A*) &b; in main() local
24 if (dynamic_cast <B*> (aptr)) abort (); in main()
25 if (b.a2b (aptr)) abort(); in main()
/openbsd-src/lib/libedit/
H A Dreadline.c640 char *tmp, *search = NULL, *aptr; in _history_expand_command() local
647 aptr = NULL; in _history_expand_command()
668 if ((aptr = malloc(offs + 1)) == NULL) in _history_expand_command()
670 (void)strncpy(aptr, command, offs); in _history_expand_command()
671 aptr[offs] = '\0'; in _history_expand_command()
682 if (ptr == NULL && aptr == NULL) in _history_expand_command()
686 *result = strdup(aptr ? aptr : ptr); in _history_expand_command()
687 if (aptr) in _history_expand_command()
688 free(aptr); in _history_expand_command()
731 tmp = history_arg_extract(start, end, aptr? aptr:ptr); in _history_expand_command()
[all …]
/openbsd-src/gnu/usr.bin/perl/
H A Dpp_pack.c170 #define PUSH_VAR(utf8, aptr, var, needs_swap) \ argument
171 PUSH_BYTES(utf8, aptr, &(var), sizeof(var), needs_swap)
1584 const char *aptr; in S_unpack_rec() local
1585 SHIFT_VAR(utf8, s, strend, aptr, datumtype, needs_swap); in S_unpack_rec()
1586 /* newSVpv generates undef if aptr is NULL */ in S_unpack_rec()
1587 mPUSHs(newSVpv(aptr, 0)); in S_unpack_rec()
1639 char *aptr; in S_unpack_rec() local
1640 SHIFT_VAR(utf8, s, strend, aptr, datumtype, needs_swap); in S_unpack_rec()
1641 /* newSVpvn generates undef if aptr is NULL */ in S_unpack_rec()
1642 PUSHs(newSVpvn_flags(aptr, le in S_unpack_rec()
2341 const char *aptr; S_pack_rec() local
3056 const char *aptr; S_pack_rec() local
3082 const char *aptr, *aend; S_pack_rec() local
[all...]
H A Dscope.c764 Perl_save_aptr(pTHX_ AV **aptr)
768 save_pushptrptr(*aptr, aptr, SAVEt_APTR); in Perl_save_pushptr()
745 Perl_save_aptr(pTHX_ AV ** aptr) Perl_save_aptr() argument
H A Dpp_sort.c55 typedef char * aptr; /* pointer for arithmetic on sizes */ typedef
69 #define APTR(P) ((aptr)(P))
H A Dproto.h3947 Perl_save_aptr(pTHX_ AV **aptr);
3949 assert(aptr)
/openbsd-src/usr.sbin/ldapd/
H A Dschema.c205 struct attr_ptr *aptr; in push_attr() local
215 if ((aptr = calloc(1, sizeof(*aptr))) == NULL) { in push_attr()
220 aptr->attr_type = a; in push_attr()
221 SLIST_INSERT_HEAD(alist, aptr, next); in push_attr()
1144 struct attr_ptr *aptr; in schema_dump_attrlist() local
1153 aptr = SLIST_FIRST(alist); in schema_dump_attrlist()
1154 if (SLIST_NEXT(aptr, next) == NULL) { in schema_dump_attrlist()
1157 strlcat(buf, ATTR_NAME(aptr->attr_type), size) >= size) in schema_dump_attrlist()
1162 SLIST_FOREACH(aptr, alist, next) { in schema_dump_attrlist()
1163 if (strlcat(buf, ATTR_NAME(aptr->attr_type), in schema_dump_attrlist()
[all …]
/openbsd-src/gnu/gcc/include/
H A Dobstack.h378 # define obstack_ptr_grow_fast(OBSTACK,aptr) \ argument
381 *(const void **) __o1->next_free = (aptr); \
497 # define obstack_ptr_grow_fast(h,aptr) \ argument
498 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
501 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aptr))
/openbsd-src/gnu/usr.bin/binutils-2.17/include/
H A Dobstack.h378 # define obstack_ptr_grow_fast(OBSTACK,aptr) \ argument
381 *(const void **) __o1->next_free = (aptr); \
497 # define obstack_ptr_grow_fast(h,aptr) \ argument
498 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
501 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aptr))
/openbsd-src/gnu/lib/libiberty/include/
H A Dobstack.h378 # define obstack_ptr_grow_fast(OBSTACK,aptr) \ argument
381 *(const void **) __o1->next_free = (aptr); \
497 # define obstack_ptr_grow_fast(h,aptr) \ argument
498 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
501 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aptr))
/openbsd-src/gnu/usr.bin/binutils/include/
H A Dobstack.h435 # define obstack_ptr_grow_fast(OBSTACK,aptr) \ argument
438 *(const void **) __o1->next_free = (aptr); \
554 # define obstack_ptr_grow_fast(h,aptr) \ argument
555 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
558 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aptr))
/openbsd-src/gnu/gcc/fixincludes/tests/base/
H A Dobstack.h13 ((*((void **) (h)->next_free) = (aptr)), ( (h)->next_free += sizeof (void *)))
/openbsd-src/gnu/usr.bin/gcc/gcc/fixinc/tests/base/
H A Dobstack.h13 ((*((void **) (h)->next_free) = (aptr)), ( (h)->next_free += sizeof (void *)))
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DREADME.txt125 define void @f4a(i128 *%aptr, i64 %base) {
128 %a = load volatile i128 *%aptr
131 store i128 %add, i128 *%aptr
/openbsd-src/gnu/usr.bin/cvs/diff/
H A Dutil.c698 translate_range (file, a, b, aptr, bptr) in translate_range() argument
701 int *aptr, *bptr;
703 *aptr = translate_line_number (file, a - 1) + 1;
/openbsd-src/sbin/iked/
H A Dpolicy.c926 uint8_t *aptr, *bptr; in sa_dstid_cmp() local
938 aptr = ibuf_data(aid->id_buf); in sa_dstid_cmp()
940 if (aptr == NULL || bptr == NULL) in sa_dstid_cmp()
944 aptr += aid->id_offset; in sa_dstid_cmp()
952 return (memcmp(aptr, bptr, alen)); in sa_dstid_cmp()
/openbsd-src/sbin/mountd/
H A Dmountd.c1797 char *aptr[2]; in get_host()
1814 hp->h_addr_list = aptr; in get_host()
1815 aptr[0] = (char *)&saddr; in get_host()
1816 aptr[1] = NULL; in get_host()
1782 char *aptr[2]; get_host() local
/openbsd-src/gnu/usr.bin/perl/dist/Storable/
H A DStorable.xs224 char *aptr; /* Arena pointer, for in-place read/write ops */ member
624 #define mptr (cxt->membuf).aptr

12