代码搜索:section
找到约 10,000 项符合「section」的源代码
代码结果 10,000
www.eeworm.com/read/395929/2429900
d section0.d
#objdump: -s
#name: elf section0
.*: +file format .*
Contents of section .text:
Contents of section .data:
0+000 00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00 ?00.*
# The MIPS includes
www.eeworm.com/read/366702/2881909
h sdata-section.h
#if defined (__mips) && !defined(SKIP_ATTRIBUTE)
#define SDATA_SECTION __attribute__((__section__(".sdata")))
#else
#define SDATA_SECTION
#endif
extern void abort (void);
www.eeworm.com/read/366702/2882114
c section-1.c
/* Verify that we get errors for trying to put TLS data in
sections which can't work. */
/* { dg-require-effective-target tls_native } */
#define A(X) __attribute__((section(X)))
__thread int i
www.eeworm.com/read/366702/2884576
c section1.c
/* PR optimization/6871 */
/* Constant variables belong in .rodata, not .bss. */
/* { dg-final { scan-assembler-not "\.bss" } } */
const int i = 0;
www.eeworm.com/read/162614/5531395
c section1.c
/* PR optimization/6871 */
/* Constant variables belong in .rodata, not .bss. */
/* { dg-final { scan-assembler-not "\.bss" } } */
const int i = 0;
www.eeworm.com/read/161438/5553922
mak crit_section.mak
# Nmake macros for building Windows 32-Bit apps
all: Crit_S~1.exe
# Update the resource if necessary
generic.res:generic.rc generic.h
rc -r -fo generic.res generic.rc
# Update the obj
www.eeworm.com/read/161438/5553923
cpp crit_section.cpp
#include
CRITICAL_SECTION cs;
// Child thread procedure.
DWORD WINAPI ChildThreadProc(HWND hWnd)
{
TCHAR szBuffer[256]; // Work area for print formatting.
wsprintf( sz
www.eeworm.com/read/155708/5619959
ascx my section.ascx
void Page_Load() {
lblTime.Text = DateTime.Now.ToString("T");
}
Hello, the current time is
www.eeworm.com/read/155392/5623561
ascx my section.ascx
void Page_Load() {
lblTime.Text = DateTime.Now.ToString("T");
}
Hello, the current time is
www.eeworm.com/read/473656/6848139