代码搜索:automatic

找到约 5,059 项符合「automatic」的源代码

代码结果 5,059
www.eeworm.com/read/149929/12332789

rpt nd41.rpt

Project Information d:\vhdl_ex\nd41.rpt MAX+plus II Compiler Report File Version 10.2 07/10/2002 Compiled: 11/11/2003 14:42:24 Copyright (C) 1988-2002 Al
www.eeworm.com/read/337282/12379585

py utf8-demo.py

# order is important here (for now) import gtk # string taken from pango examples directory and converted from utf8 # to python unicode string escapes hellos = u'''\u03A0\u03B1\u03BD\u8A9E This is a
www.eeworm.com/read/119862/14819282

compile_install

#### Automatic compile and install### #!/bin/sh ##################################### su -c "./autogen.sh --prefix=/usr && make && strip src/gnome-telnet && make install && ./install_shared"
www.eeworm.com/read/162614/5523111

tree funccall.tree

// { dg-do run } // Tests whether initializtion works properly. external_reference void abort (); external_reference void exit (int code); external_definition int main (); static int foo (); foo {
www.eeworm.com/read/162614/5523112

tree initial.tree

// { dg-do run } // Tests whether initializtion works properly. external_reference void abort (); external_reference void exit (int code); external_definition int main (); main { automatic int aaa
www.eeworm.com/read/162614/5526195

f90 shape_1.f90

! { dg-do compile } ! PR 13201 we used to not give an error in those cases subroutine foo(n) integer, parameter :: a(n) = 1 ! { dg-error "cannot be automatic" "automatic shape" } integer, paramet
www.eeworm.com/read/471682/6887971

c program9_04.c

/* Program 9.4 Static versus automatic variables */ #include /* Function prototypes */ void test1(void); void test2(void); int main(void) { for(int i = 0; i < 5; i++ ) {
www.eeworm.com/read/293945/8261227

txt volatile的用法.txt

一个定义为volatile的变量是说这变量可能会被意想不到地改变,这样,编译器就不会去假设这个变量的值了。精确地说就是,优化器在用到这个变量时必须每次都小心地重新读取这个变量的值,而不是使用保存在寄存器里的备份。下面是volatile变量的几个例子: 1). 并行设备的硬件寄存器(如:状态寄存器) 2). 一个中断服务子程序中会访问到的非自动变量(Non-<mark>automatic</mark> v ...
www.eeworm.com/read/292919/8324937

c vfork3.c

#include "apue.h" static void f1(void), f2(void); int main(void) { f1(); f2(); _exit(0); } static void f1(void) { pid_t pid; if ((pid = vfork()) < 0) err_sys("vfork error"); /* child and p
www.eeworm.com/read/292919/8325508

7 figc.7

#include "apue.h" static void f1(void), f2(void); int main(void) { f1(); f2(); _exit(0); } static void f1(void) { pid_t pid; if ((pid = vfork()) < 0) err_sys("vfork error"); /* child and p