代码搜索结果

找到约 10,000 项符合 Layout 的代码

layout1.c

// { dg-do run } // Origin: Mark Mitchell #if defined (__GXX_ABI_VERSION) && __GXX_ABI_VERSION >= 100 struct R { virtual void r (); }; struct S { virtual void f (); };

strct-layout.c

typedef struct { char a; int b; char c; short d; double e; char f; } T; #if COMPILER != 1 f (T *x) { x[0].a = 'a'; x[0].b = 47114711; x[0].c = 'c'; x[0].d = 1234; x[0].e = 3.141

table_layout.cpp

/* * This file is part of the HTML rendering engine for KDE. * * Copyright (C) 2002 Lars Knoll (knoll@kde.org) * (C) 2002 Dirk Mueller (mueller@kde.org) * Copyright (C) 2003 Apple

table_layout.h

/* * This file is part of the HTML rendering engine for KDE. * * Copyright (C) 2002 Lars Knoll (knoll@kde.org) * (C) 2002 Dirk Mueller (mueller@kde.org) * * This library is free

ntpdc-layout.c

/* * ntpdc-layout - print layout of NTP mode 7 request/response packets */ #include #include #include "ntpdc.h" #include "ntp_stdlib.h" #if defined(IMPL_XNTPD_OLD) && IMPL_XN

layout3.c

// { dg-do run { target i?86-*-* } } // { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } // { dg-options "-fabi-version=0 -w" } struct S { virtual void f() {} }; struct T : virtual public S { };

layout4.c

// { dg-do run { target i?86-*-* } } // { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } // { dg-options "-fabi-version=1" } struct C4 { int b:30; C4(){}; }; struct C1: virtual C4 { int i;

layout2.c

// Red Hat bugzilla 65210 // { dg-do run } struct A { int a; }; struct B : public virtual A {}; struct C { long double c; }; struct D : public virtual C { int d; }; struct E : public B,