Searched refs:aa (Results 26 - 50 of 271) sorted by relevance

1234567891011

/openbsd-current/sys/lib/libkern/
H A Dcmpdi2.c44 union uu aa, bb; local
46 aa.q = a;
48 return (aa.sl[H] < bb.sl[H] ? 0 : aa.sl[H] > bb.sl[H] ? 2 :
49 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
H A Ducmpdi2.c43 union uu aa, bb; local
45 aa.uq = a;
47 return (aa.ul[H] < bb.ul[H] ? 0 : aa.ul[H] > bb.ul[H] ? 2 :
48 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
H A Dnegdi2.c42 union uu aa, res; local
44 aa.q = a;
45 res.ul[L] = -aa.ul[L];
46 res.ul[H] = -aa.ul[H] - (res.ul[L] > 0);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dvisibility12.C9 int aa; // ERROR - private member in struct:a
16 int xx(void) { return (aa); } // aa should be invisible// ERROR - .*
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dm2.C7 A aa; local
8 return aa.a;
H A Dtt.C8 A aa; local
9 return aa.a;
26 struct B1 { DEF_A; A aa; }; member in struct:B1
28 struct B2 { DEF_A; A aa; }; member in struct:B2
H A Dm1.C13 A aa; local
14 return aa.fred();
H A Dt00.C5 A aa; local
6 return aa.a;
/openbsd-current/regress/libexec/ld.so/constructor/libaa/
H A DMakefile3 LIB=aa
4 SRCS= aa.C
/openbsd-current/regress/libexec/ld.so/dlopen/libaa/
H A DMakefile1 LIB=aa
2 SRCS= aa.C
/openbsd-current/regress/libexec/ld.so/dlsym/test1/libaa/
H A DMakefile3 LIB= aa
4 SRCS= aa.c
/openbsd-current/regress/libexec/ld.so/dlsym/test2/libaa/
H A DMakefile3 LIB= aa
4 SRCS= aa.c
/openbsd-current/regress/libexec/ld.so/dlsym/test3/libaa/
H A DMakefile3 LIB= aa
4 SRCS= aa.c
/openbsd-current/regress/libexec/ld.so/edgecases/test1/libaa_b/
H A DMakefile1 LIB=aa
2 SRCS= aa.c
/openbsd-current/regress/libexec/ld.so/edgecases/test1/libaa_g/
H A DMakefile1 LIB=aa
2 SRCS= aa.c
/openbsd-current/regress/libexec/ld.so/edgecases/test2/libaa/
H A DMakefile3 LIB= aa
4 SRCS= aa.c
/openbsd-current/regress/libexec/ld.so/edgecases/test3/libaa/
H A DMakefile3 LIB= aa
4 SRCS= aa.c
/openbsd-current/regress/libexec/ld.so/hidden/libaa/
H A DMakefile3 LIB=aa
4 SRCS= aa.c
/openbsd-current/regress/libexec/ld.so/init-env/libaa/
H A DMakefile3 LIB= aa
4 SRCS= aa.C
/openbsd-current/regress/libexec/ld.so/randomdata/libaa/
H A DMakefile3 LIB= aa
4 SRCS+= aa.c
/openbsd-current/regress/libexec/ld.so/subst/libaa/
H A DMakefile3 LIB= aa
4 SRCS= aa.c
/openbsd-current/regress/lib/csu/callbacks/libaa/
H A DMakefile3 LIB=aa
4 SRCS= aa.c
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.cp/
H A Dcasts.cc4 A (int aa): a (aa) {} argument
10 B (int aa, int bb): A (aa), b(bb) {} argument
/openbsd-current/lib/libc/quad/
H A Dnegdi2.c43 union uu aa, res; local
45 aa.q = a;
46 res.ul[L] = -aa.ul[L];
47 res.ul[H] = -aa.ul[H] - (res.ul[L] > 0);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dmisc15.C5 int aa; member in struct:A
12 void fun() { C::aa = 10; } member in class:D::C

Completed in 204 milliseconds

1234567891011