代码搜索:Local

找到约 10,000 项符合「Local」的源代码

代码结果 10,000
www.eeworm.com/read/404808/11477838

lua sort.lua

-- two implementations of a sort function -- this is an example only. Lua has now a built-in function "sort" -- extracted from Programming Pearls, page 110 function qsort(x,l,u,f) if l
www.eeworm.com/read/402890/11526618

m localmax.m

%function [U,V] = localMax(I,radius,thresh) % % Finds local maxima at a specified scale. % % INPUT: % I - the image % radius - the radius in which to search for a local maximum %
www.eeworm.com/read/400552/11574488

c time.c

# include # include int main() { struct tm *local; time_t tm; tm = time(NULL); local = localtime(&tm); printf("Local time and date: %s\n", asctime(local)); loca
www.eeworm.com/read/347932/11627568

c systffs.c

/* sysTffs.c - Motorola MVME177 system-dependent TrueFFS library */ /* Copyright 1984-1997 Wind River Systems, Inc. */ #include "copyright_wrs.h" /* FAT-FTL Lite Software Development Kit *
www.eeworm.com/read/347866/11629785

m sem2d_2.m

% SEM2D applies the Spectral Element Method % to solve the 2D SH wave equation, % dynamic fault with slip weakening, % paraxial absorbing boundary conditions % and zero initial conditions % in a stru
www.eeworm.com/read/347866/11629852

m sem2d_2b.m

% SEM2D applies the Spectral Element Method % to solve the 2D SH wave equation, % dynamic fault with slip weakening, % paraxial absorbing boundary conditions % and zero initial conditions % in a stru
www.eeworm.com/read/347594/11656560

cpp modbustcp.cpp

#include "allmgr.h" #include "modbustcp.h" #include "modbusregset.h" int CModbusTCPSlave::processMsg(unsigned char b[], // message buffer, starting with prefix unsigned len) // leng
www.eeworm.com/read/347150/11687710

c fsutils.c

/**************************************************************** File Name: FSUTILS.C * ***************************************************************** Last Modified Date: 2001/04/17 Compi
www.eeworm.com/read/346994/11706577

c block.c

/* Demonstrates local variables within blocks. */ #include int main( void ) { /* Define a variable local to main(). */ int count = 0; printf("\nOutside the block, c
www.eeworm.com/read/346994/11706783

c var.c

/* Demonstrates local variables. */ #include int x = 1, y = 2; void demo(void); int main( void ) { printf("\nBefore calling demo(), x = %d and y = %d.", x, y); demo();