代码搜索:semantics
找到约 893 项符合「semantics」的源代码
代码结果 893
www.eeworm.com/read/156415/11805001
cpp semantic.cpp
#include "semantics.h"
extern double
Parameter,
Origin_x,Origin_y,
Scale_x,Scale_y,
Rot_angle;
double GetExprValue(struct ExprNode *root);
void DrawPixel(unsigned
www.eeworm.com/read/479151/1338721
c raw.c
/*
* linux/drivers/char/raw.c
*
* Front-end raw character devices. These can be bound to any block
* devices to provide genuine Unix raw character device semantics.
*
* We reserve minor number
www.eeworm.com/read/242732/4537762
c getopt.c
/* $Id: getopt.c 23933 2006-09-06 20:00:41Z weiden $
*/
/*
tgetopt -- POSIX-compliant implementation of getopt() with string-type-generic
semantics
This is public domain software
*/
#inc
www.eeworm.com/read/242732/4537832
c _wgetopt.c
/* $Id: _wgetopt.c 23933 2006-09-06 20:00:41Z weiden $
*/
/*
tgetopt -- POSIX-compliant implementation of getopt() with string-type-generic
semantics
This is public domain software
*/
#i
www.eeworm.com/read/233448/4678494
c pack-test-1.c
/* APPLE LOCAL file 4163069 */
/* Test semantics of #pragma pack.
Contributed by Mike Stump */
/* { dg-do run { target *-*-darwin* } } */
#include
#pragma pack(push, 1
www.eeworm.com/read/233448/4685743
c postincr-1.c
/* Simple test for proper postincrement semantics. */
/* { dg-do run } */
extern void abort (void);
int i;
int c;
int *f ()
{
++c;
return &i;
}
int main ()
{
int r;
r = (*f())++;
if (!(r
www.eeworm.com/read/216781/4887963
makefile
include ../Make.defines
# Following required by Solaris 2.x for Posix version of sigwait().
CFLAGS += -D_POSIX_PTHREAD_SEMANTICS
all: ${LIB_OBJS}
ar rv ${LIBUNPIPC_NAME} $?
${RANLIB} ${LI
www.eeworm.com/read/209559/4965294
c raw.c
/*
* linux/drivers/char/raw.c
*
* Front-end raw character devices. These can be bound to any block
* devices to provide genuine Unix raw character device semantics.
*
* We reserve minor number
www.eeworm.com/read/198916/5080646
makefile
include ../Make.defines
# Following required by Solaris 2.x for Posix version of sigwait().
CFLAGS += -D_POSIX_PTHREAD_SEMANTICS
all: ${LIB_OBJS}
ar rv ${LIBUNPIPC_NAME} $?
${RANLIB} ${LI
www.eeworm.com/read/193974/5138293
py test_fork1.py
"""This test checks for correct fork() behavior.
We want fork1() semantics -- only the forking thread survives in the
child after a fork().
On some systems (e.g. Solaris without posix threads) we fi