代码搜索:Local
找到约 10,000 项符合「Local」的源代码
代码结果 10,000
www.eeworm.com/read/193218/8246969
c systffs.c
/* sysTffs.c - Wind River SBC8260 system-dependent TrueFFS library */
/* Copyright 1984-2002 Wind River Systems, Inc. */
#include "copyright_wrs.h"
/*
modification history
--------------------
01c,2
www.eeworm.com/read/393843/8259903
c systffs.c
/* sysTffs.c - Motorola 860ads system-dependent TrueFFS library */
/* Copyright 1984-1997 Wind River Systems, Inc. */
#include "copyright_wrs.h"
/*
modification history
--------------------
*/
/*
D
www.eeworm.com/read/292920/8323983
c loccheck.c
/* loccheck.c -- checks to see where variables are stored */
#include
void mikado(int); /* declare function */
int main(void)
{
int pooh = 2, bah = 5;
www.eeworm.com/read/292598/8346328
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/392244/8355967
java foreign.java
// TIJ4 chapter Access, Exercise 9, page 233
/* Create in access/local directory in your CLASSPATH:
* // access/local/PackagedClass.java
* package access.local;
*
* class PackagedClass {
* publi
www.eeworm.com/read/370596/9593074
java foreign.java
// TIJ4 chapter Access, Exercise 9, page 233
/* Create in access/local directory in your CLASSPATH:
* // access/local/PackagedClass.java
* package access.local;
*
* class PackagedClass {
* publi
www.eeworm.com/read/369007/9669372
prg gzhs.prg
* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
* 文件名: GZHS.PRG
www.eeworm.com/read/368352/9700202
lua table.lua
-- make table, grouping all data for the same item
-- input is 2 columns (item, data)
local A
while 1 do
local l=io.read()
if l==nil then break end
local _,_,a,b=string.find(l,'"?([_%w]+)"?%s*(.*)
www.eeworm.com/read/368352/9700208
lua fibfor.lua
-- example of for with generator functions
function generatefib (n)
return coroutine.wrap(function ()
local a,b = 1, 1
while a