代码搜索结果

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

7z.def

EXPORTS CreateObject PRIVATE GetHandlerProperty PRIVATE

z-static.txt

ApiHooks can be integral part of your release, when you link statically. It means ApiHooks.dll is not needed. Supported is MS LINK and Turbo Linker (32bit) (BC++, VC++, MASM, NASM, TASM32).

z8530.h

/* -*-C-*- * z8530.h - Register definitions for Zilog 8530 SCC * * THIS SOFTWARE IS NOT COPYRIGHTED * * JANZ Computer offers the following for use in the public domain.

z85230.h

/* * Description of Z8530 Z85C30 and Z85230 communications chips * * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) * Copyright (C) 1998 Alan Cox */ #ifndef _Z8530

z85230.c

/* * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2

z8530.h

/* 8530 Serial Communications Controller Register definitions */ #define FLAG 0x7e /* Write Register 0 */ #define R0 0 /* Register selects */ #define R1 1 #define R2 2 #define R3 3 #define R4 4 #de

z_sin.c

/* * "@(#)z_sin.c 1.1" */ #include "complex" z_sin(r, z) dcomplex *r, *z; { double sin(), cos(), sinh(), cosh(); r->dreal = sin(z->dreal) * cosh(z->dimag); r->dimag = cos(z->dreal) * sinh(z->dima

z_log.c

/* * "@(#)z_log.c 1.1" */ #include "complex" z_log(r, z) dcomplex *r, *z; { double log(), cabs(), atan2(); r->dimag = atan2(z->dimag, z->dreal); r->dreal = log( cabs( z->dreal, z->dimag ) ); }

z_cos.c

/* * "@(#)z_cos.c 1.1" */ #include "complex" z_cos(r, z) dcomplex *r, *z; { double sin(), cos(), sinh(), cosh(); r->dreal = cos(z->dreal) * cosh(z->dimag); r->dimag = - sin(z->dreal) * sinh(z->di

z_exp.c

/* * "@(#)z_exp.c 1.1" */ #include "complex" z_exp(r, z) dcomplex *r, *z; { double expx; double exp(), cos(), sin(); expx = exp(z->dreal); r->dreal = expx * cos(z->dimag); r->dimag = expx * sin(z