代码搜索:linear
找到约 10,000 项符合「linear」的源代码
代码结果 10,000
www.eeworm.com/read/102935/6229705
h linear.h
#ifndef _LINEAR_H
#define _LINEAR_H
#include
struct dev_info {
kdev_t dev;
unsigned long size;
unsigned long offset;
};
typedef struct dev_info dev_info_t;
struct linear_hash
www.eeworm.com/read/102935/6230573
c linear.c
/*
* Linear conversion Plug-In
* Copyright (c) 1999 by Jaroslav Kysela ,
* Abramo Bagnara
*
*
* This library is free software; you can redistribu
www.eeworm.com/read/252441/6298557
v linear.v
module linear(c,u,clk);
output[6:0] c;
input[3:0] u;
input clk;
reg[6:0] c;
always @(posedge clk)
begin
c[6] = u[3];
c[5] = u[2];
c[4] = u[1];
c[3] = u[0];
c[2] = u[1] ^ u[2] ^ u[3];
c[1
www.eeworm.com/read/493005/6403855
cal linear.cal
/*
* linear - perform a simple two point 2D linear interpolation
*
* given:
* x0, y0 first known point on the line
* x1, y1 second knonw point on the line
* x a given point to interpolate on
www.eeworm.com/read/492695/6419586
m linear.m
function ker = linear(arg)
if nargin == 0
% this is the default constructor
ker.dummy = [];
ker = class(ker, 'linear');
elseif isa(a, 'linear');
% this is t
www.eeworm.com/read/491340/6438951
v linear.v
module linear(c,u,clk);
output[6:0] c;
input[3:0] u;
input clk;
reg[6:0] c;
always @(posedge clk)
begin
c[6] = u[3];
c[5] = u[2];
c[4] = u[1];
c[3] = u[0];
c[2] = u[1] ^ u[2] ^ u[3];
c[1
www.eeworm.com/read/490547/6447353
c linear.c
/*
* tslib/plugins/linear.c
*
* Copyright (C) 2001 Russell King.
*
* This file is placed under the LGPL. Please see the file
* COPYING for more details.
*
* $Id: linear.c,v 1.10 2005/02/26
www.eeworm.com/read/490548/6447409
c linear.c
/*
* tslib/plugins/linear.c
*
* Copyright (C) 2001 Russell King.
*
* This file is placed under the LGPL. Please see the file
* COPYING for more details.
*
* $Id: linear.c,v 1.8 2003/03/05 2
www.eeworm.com/read/484011/6588784
la linear.la
www.eeworm.com/read/484011/6588787