代码搜索:REF
找到约 10,000 项符合「REF」的源代码
代码结果 10,000
www.eeworm.com/read/225273/14545959
h rtcan.h
/**
* @file
* Real-Time Driver Model for RT-Socket-CAN, CAN device profile header
*
* @note Copyright (C) 2006 Wolfgang Grandegger
*
* @note Copyright (C) 2005, 2006 Sebastia
www.eeworm.com/read/121780/14737933
pm tar.pm
package Archive::Tar;
use strict;
use Carp;
use Cwd;
use File::Basename;
BEGIN {
# This bit is straight from the manpages
use Exporter ();
use vars qw($VERSION @ISA @EXPORT @EX
www.eeworm.com/read/218923/14902799
cs wordfile.cs
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace Full
{
///
/// WordFile 的摘要说明。
///
www.eeworm.com/read/117215/14934248
cs class1.cs
using System;
using System.IO;
using System.Collections;
namespace Path_UProject
{
///
/// Summary description for Class1.
///
class Class1
{
///
/
www.eeworm.com/read/117212/14934277
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/116744/14955887
txt ch07l06.txt
Listing 7.6 The broadcast function.
void Advertise(void *ref) {
SAP& This = *(AES*)ref;
This.BuildPacket();
This.SendPacket();
This.aes.ScheduleEvent(60, Advertise, ref);
}
www.eeworm.com/read/116207/14982848
sh run_test.sh
#!/bin/sh
# $Id: run_test.sh,v 1.1 2004/03/28 19:30:50 tom Exp $
#
echo '** '`date`
for i in *.y
do
case $i in
test*)
echo "?? ignored $i"
;;
*)
root=`basename $i .y`
ROOT="test-$root"
..
www.eeworm.com/read/213723/15127321
c msp430xg46x_uscib0_spi_01.c
//******************************************************************************
// MSP430xG46x Demo - USCI_B0, SPI Interface to TLC549 8-Bit ADC
//
// Description: This program demonstrate USC
www.eeworm.com/read/213648/15127996
txt wgs80.txt
WGS84和BJ54坐标转换源程序{转载,作者不详}
由于工作需要,最近研究WGS84和BJ54坐标转换,网上有很多关于bursa模型的讨论,但是没有最小二乘法的计算。几经周折终于完成了程序,现在提供主要源程序供大家研究
两个坐标系转换一般需要平移,旋转,缩放共七参数。
Y=(1+k)*M(x,y,z)*X+dX;
X,Y为3*1矩阵,M(x,y,z)为3*3的旋转矩阵.
...