代码搜索:tiny

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

代码结果 5,807
www.eeworm.com/read/387489/8673006

txt ratint.txt

procedure RATINT(XA, YA: array of real; N:integer; X:REAL; VAR Y, DY:real); const TINY=1E-25; var C,D:array[0..10] of real; I,NS,M:integer; HH,H,DD,DX,W,T:real; begin NS:=1
www.eeworm.com/read/174770/9574696

c 1.0.c

#include unsigned char sec100,sec,sec5,min,hour,flag1,command,temp,opto,number,tempp3value; /* above must be defined as register for tiny model */ unsigned char i,digit,buffer[4],
www.eeworm.com/read/166323/10024065

cpp ludcmp.cpp

void ludcmp(double a[], int n, int indx[], int d) { const int nmax=100; const double tiny=1e-20; double vv[100]; double sum,dum,aamax; int i,j,k,imax; d=1; for (i=1; i
www.eeworm.com/read/358784/10179487

asm hellocom.asm

TITLE Hello Program in COM format (HelloCom.asm) .model tiny .code org 100h ; must be before main main PROC mov ah,9 mov dx,OFFSET hello_message int 21h mov ax,4C00h int
www.eeworm.com/read/143323/10246289

makefile

# # Tiny C Compiler Makefile # include config.mak CFLAGS=-O2 -g -Wall LIBS=-ldl CFLAGS_P=$(CFLAGS) -pg -static -DCONFIG_TCC_STATIC LIBS_P= CFLAGS+=-mpreferred-stack-boundary=2 ifeq ($(GCC_MAJOR),2)
www.eeworm.com/read/278154/10561401

c miser.c

#include #include #define NRANSI #include "nrutil.h" #define PFAC 0.1 #define MNPT 15 #define MNBS 60 #define TINY 1.0e-30 #define BIG 1.0e30 static long iran=0; void
www.eeworm.com/read/278154/10563446

c miser.c

#include #include #define NRANSI #include "nrutil.h" #define PFAC 0.1 #define MNPT 15 #define MNBS 60 #define TINY 1.0e-30 #define BIG 1.0e30 static long iran=0; void
www.eeworm.com/read/159389/10663587

css style2.css

.tiny { FONT-SIZE: 10px; FONT-FAMILY: Verdana, sans-serif, serif } .tinywhite { FONT-WEIGHT: bold; FONT-SIZE: 11px; COLOR: white; FONT-FAMILY: Verdana, sans-serif, serif; TEXT-DECORATION: none
www.eeworm.com/read/159389/10663639

css style2.css

.tiny { FONT-SIZE: 10px; FONT-FAMILY: Verdana, sans-serif, serif } .tinywhite { FONT-WEIGHT: bold; FONT-SIZE: 11px; COLOR: white; FONT-FAMILY: Verdana, sans-serif, serif; TEXT-DECORATION: none
www.eeworm.com/read/460247/7254933

c ludcmp.c

#include #define TINY 1.0e-20; void ludcmp(a,n,indx,d) int n,*indx; float **a,*d; { int i,imax,j,k; float big,dum,sum,temp; float *vv,*vector(); void nrerror(),free_vector(); vv=vecto