代码搜索:tiny

找到约 5,807 项符合「tiny」的源代码

代码结果 5,807
www.eeworm.com/read/124347/6052361

c s_scalbln.c

/* @(#)s_scalbn.c 5.1 93/09/24 */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * * Developed at SunPro, a Sun Micro
www.eeworm.com/read/118064/6099591

c rtx_ex2.c

/******************************************************************************/ /* */ /* RTX_EX2.C: A
www.eeworm.com/read/118064/6099593

c task1.c

/******************************************************************************/ /* */ /* Task 1: Count up Every 2 ticks
www.eeworm.com/read/118064/6099596

c task3.c

/******************************************************************************/ /* */ /* Task 3: Process Overflow from
www.eeworm.com/read/106385/6194527

c e_atan2.c

//=========================================================================== // // e_atan2.c // // Part of the standard mathematical function library // //==================================
www.eeworm.com/read/102423/6232092

c xqroot.c

/* Driver for routine qroot */ #include #include #include "nr.h" #include "nrutil.h" #define N 6 /* degree of polynomial */ #define EPS 1.0e-6 #define NTRY 10 #define TI
www.eeworm.com/read/102423/6232265

c qroot.c

#include #include "nrutil.h" #define ITMAX 20 #define TINY 1.0e-6 void qroot(p,n,b,c,eps) float *b,*c,eps,p[]; int n; { void poldiv(); int iter; float sc,sb,s,rc,rb,r,dv,delc,d
www.eeworm.com/read/102423/6232285

c ratint.c

#include #include "nrutil.h" #define TINY 1.0e-25 #define FREERETURN {free_vector(d,1,n);free_vector(c,1,n);return;} void ratint(xa,ya,n,x,y,dy) float *dy,*y,x,xa[],ya[]; int n; {
www.eeworm.com/read/102423/6232704

c xqroot.c

/* Driver for routine qroot */ #include #include #define NRANSI #include "nr.h" #include "nrutil.h" #define N 6 /* degree of polynomial */ #define EPS 1.0e-6 #define NTR
www.eeworm.com/read/102423/6232877

c qroot.c

#include #define NRANSI #include "nrutil.h" #define ITMAX 20 #define TINY 1.0e-6 void qroot(float p[], int n, float *b, float *c, float eps) { void poldiv(float u[], int n, float v[