代码搜索:Variable
找到约 10,000 项符合「Variable」的源代码
代码结果 10,000
www.eeworm.com/read/360071/10110356
bak usual_declare.h.bak
#ifndef usual_declare_h
#define usual_declare_h
#define uint8 unsigned char /* defined for unsigned 8-bits integer variable 无符号8位整型变量 */
#define int8 signed char /* defined for signed 8-bits
www.eeworm.com/read/360070/10110441
h usual_declare.h
#ifndef usual_declare_h
#define usual_declare_h
#define uint8 unsigned char /* defined for unsigned 8-bits integer variable 无符号8位整型变量 */
#define int8 signed char /* defined for signed 8-bits
www.eeworm.com/read/360070/10110459
bak usual_declare.h.bak
#ifndef usual_declare_h
#define usual_declare_h
#define uint8 unsigned char /* defined for unsigned 8-bits integer variable 无符号8位整型变量 */
#define int8 signed char /* defined for signed 8-bits
www.eeworm.com/read/359861/10119807
h video1394.h
/*
* video1394.h - driver for OHCI 1394 boards
* Copyright (C)1999,2000 Sebastien Rougeaux
* Peter Schlaile
*
www.eeworm.com/read/359860/10119863
s heap.s
;;; Copyright ARM Ltd 2001. All rights reserved.
AREA Heap, DATA, NOINIT
EXPORT bottom_of_heap
; Create dummy variable used to locate bottom of heap
bottom_of_heap SP
www.eeworm.com/read/164272/10120338
m da_pcor.m
%
% da_pcor.m
%
% Partial correlation screen
%
w1=gcf;
da_front;
drawnow;
%
% Now calculate the correlations
%
% All variables are included in this analysis
%
%
% Say it's calculating
www.eeworm.com/read/359581/10135065
c varwid.c
/* varwid.c -- uses variable-width output field */
#include
int main(void)
{
unsigned width, precision;
int number = 256;
double weight = 242.5;
printf("What field w
www.eeworm.com/read/359581/10135155
c parta.c
// parta.c --- various storage classes
#include
void report_count();
void accumulate(int k);
int count = 0; // file scope, external linkage
int main(void)
{
int value;
www.eeworm.com/read/163937/10139038
plg creater.plg
Build Log
--------------------Configuration: Creater - Win32 Debug--------------------
Command Lines
Creating temporary file "D:\tmp\RSPD4.tmp"
www.eeworm.com/read/359513/10140876
m fty.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Forward FFT w.r.t. the second variable %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function fs=fty(s);
fs=fftshift(fft(fftshift(s.'))).';