代码搜索:Scan
找到约 10,000 项符合「Scan」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5517048
c abi-1.c
/* Make certain that we pass V2DF in the correct register for SSE1. */
/* { dg-do compile } */
/* { dg-options "-O1 -msse -mno-sse2" } */
typedef double v2df __attribute__((vector_size (16)));
v2df
www.eeworm.com/read/162614/5517078
c fpcvt-2.c
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O2 -msse2 -march=k8" } */
/* { dg-final { scan-assembler-not "cvtss2sd" } } */
float a,b;
main()
{
return a
www.eeworm.com/read/162614/5517083
c fpcvt-3.c
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O2 -msse2 -march=k8" } */
/* { dg-final { scan-assembler-not "cvtss2sd" } } */
extern double fabs (double);
float a,b;
main()
{
www.eeworm.com/read/162614/5517109
c fpack16.c
/* { dg-do compile } */
/* { dg-options "-mcpu=ultrasparc -mvis" } */
typedef short vec16 __attribute__((vector_size(8)));
typedef char vec8 __attribute__((vector_size(4)));
vec8 foo (vec16 a) {
re
www.eeworm.com/read/162614/5517116
c noresult.c
/* { dg-do compile } */
/* { dg-options "-mcpu=ultrasparc -mvis" } */
typedef short vec16 __attribute__((vector_size(8)));
typedef char vec8 __attribute__((vector_size(4)));
void foo (vec16 a) {
__
www.eeworm.com/read/162614/5517122
c fpackfix.c
/* { dg-do compile } */
/* { dg-options "-mcpu=ultrasparc -mvis" } */
typedef int vec32 __attribute__((vector_size(8)));
typedef short vec16 __attribute__((vector_size(4)));
vec16 foo (vec32 a) {
r
www.eeworm.com/read/162614/5517132
c fpack32.c
/* { dg-do compile } */
/* { dg-options "-mcpu=ultrasparc -mvis" } */
typedef int vec32 __attribute__((vector_size(8)));
typedef unsigned char vec8 __attribute__((vector_size(8)));
vec8 foo (vec32 a,
www.eeworm.com/read/162614/5517135
c fpmerge.c
/* { dg-do compile } */
/* { dg-options "-mcpu=ultrasparc -mvis" } */
typedef char pixel __attribute__((vector_size(8)));
typedef char vec8 __attribute__((vector_size(4)));
pixel foo (vec8 a, vec8 b)
www.eeworm.com/read/162614/5517587
c new1.c
// { dg-require-visibility "" }
// { dg-options "-fvisibility=hidden" }
// { dg-final { scan-not-hidden "_Znwj" } }
void f() {
new int;
}
void *g();
void *operator new(__SIZE_TYPE__) {
return g
www.eeworm.com/read/162614/5518785
c cxa-atexit1.c
// { dg-do compile }
// { dg-options "-O2 -fuse-cxa-atexit" }
# 1 "cxa-atexit1.C"
struct A
{
struct B
{
B ();
~B ();
};
};
static A::B b;
# 1 "cxa-atexit1.h" 1
#pragma interface
templat