代码搜索:third
找到约 4,828 项符合「third」的源代码
代码结果 4,828
www.eeworm.com/read/102077/15793395
c image.c
#define AVE_DEL_YUV // turn U&V to (U+V) , (U-V)
/** works dandy; it visually works at compactifying magnitudes : U & V are very similar
* also compactifies noise into the third band
* needs m
www.eeworm.com/read/288855/8598985
c game1.c
#include "stdio.h"
#include "math.h"
#include "time.h"
void main()
{
void first();
void second();
int third();
time_t t;
int close=0;
char get;
clrscr();
srand((unsigned) tim
www.eeworm.com/read/182886/9187349
news
2002-07-10 I finally managed to get all the files that make up a GNU Package into the Package (This is jsut one of them)
2002-07-10 Well with this third Alpha version mod-xslt has reached a first step
www.eeworm.com/read/140797/7146863
s memset.s
# $Id$
#
# memset.S
#
# Minimal 16-bit memset() implementation
#
.text
.code16gcc
.globl memset
.type memset, @function
memset:
cld
pushw %di
movw %ax,%di
movb %dl,%al
# The third argument i
www.eeworm.com/read/140797/7146868
s memcpy.s
# $Id$
#
# memcpy.S
#
# Simple 16-bit memcpy() implementation
#
.text
.code16gcc
.globl memcpy
.type memcpy, @function
memcpy:
cld
pushw %di
pushw %si
movw %ax,%di
movw %dx,%si
# The third
www.eeworm.com/read/440794/7681130
uv2 aes_set_key.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (aes_set_key), 0x0004 // Tools: 'ARM-ADS'
Group (Source)
Group (Libraries)
Group (Documentation)
File 1,1,
www.eeworm.com/read/436490/7769239
txt core_fft64_readme.txt
The following files were generated for 'core_fft64' in directory
E:\FPGA\FPGA_Prog\study_FFTcore:
core_fft64.asy:
Graphical symbol information file. Used by the ISE tools and some
third p
www.eeworm.com/read/331444/12827870
m skew2.m
% S = SKEW2(MTX,MEAN,VAR)
%
% Sample skew (third moment divided by variance^3/2) of a matrix.
% MEAN (optional) and VAR (optional) make the computation faster.
function res = skew2(mtx, mn, v)
if (
www.eeworm.com/read/139650/13145076
m der_eno3_plus.m
function [data_x] = der_ENO3_plus(data, dx)
%
% Calculates the derivative (plus) using
% third order accurate ENO scheme
% takes 1-D data
% data: input data
% dx: grid resolution
% Note: before
www.eeworm.com/read/139650/13145098
m der_eno3_minus.m
function [data_x] = der_ENO3_minus(data, dx)
%
% Calculates the derivative (minus) using
% third order accurate ENO scheme
% takes 1-D data
% data: input data
% dx: grid resolution
% Note: befo