代码搜索:Fast
找到约 10,000 项符合「Fast」的源代码
代码结果 10,000
www.eeworm.com/read/349903/10785762
c brick.c
/*
* Test program to implement Brickell et al's method for fast
* computation of g^x mod n, for fixed g and n, using precomputation.
* This idea can be used to substantially speed up cert
www.eeworm.com/read/349903/10785961
c ebrick2.c
/*
* Test program to implement Brickell et al's method for fast
* computation of g^x mod n, for fixed g and n, using precomputation.
* This idea can be used to substantially speed up cert
www.eeworm.com/read/349903/10785989
c ebrick.c
/*
* Test program to implement Brickell et al's method for fast
* computation of g^x mod n, for fixed g and n, using precomputation.
* This idea can be used to substantially speed up cert
www.eeworm.com/read/469281/6980021
c malloc.c
/*
* malloc.c --- a general purpose kernel memory allocator for Linux.
*
* Written by Theodore Ts'o (tytso@mit.edu), 11/29/91
*
* This routine is written to be as fast as possible, so that it
* can be
www.eeworm.com/read/466466/7035625
readme
KISS FFT - A mixed-radix Fast Fourier Transform based up on the principle,
"Keep It Simple, Stupid."
There are many great fft libraries already around. Kiss FFT is not trying
to be better than
www.eeworm.com/read/129161/7077784
c inffast.c
/* inffast.c -- process literals and length/distance pairs fast
* Copyright (C) 1995-1996 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
#include "zut
www.eeworm.com/read/165343/7143770
m fht.m
function F = fht(f)
% function F = fht(f)
% Compute the fast Hadamard transform of the vector f,
% where the length of f must be a power of 2
%
% This transform actually works "in place"
% Todd K.
www.eeworm.com/read/165343/7143883
txt testfht.cc.txt
//
//
// Program: testfht.cc --- test the fast Hadamard transform routine
//
//
// Todd K. Moon
//
// Date: March 24, 2004
// Copyright 2004 by Todd K. Moon
// Permission is granted to use this pr
www.eeworm.com/read/140797/7146926
c fgetc.c
/*
* fgetc.c
*
* Extremely slow fgetc implementation, using _fread(). If people
* actually need character-oriented input to be fast, we may actually
* have to implement buffering. Sigh.
*/
#i