代码搜索:originally
找到约 9,666 项符合「originally」的源代码
代码结果 9,666
www.eeworm.com/read/144212/5753061
perftest
# originally from Mike Haertel
foo() { case $1 in a*) ;; *) ;; esac ;}
bar() { case $1 in [abc]*) ;; *);; esac ;}
baz() { case $1 in xyzzy) ;; *) ;; esac ;}
for x in /usr/lib/*/*
do
foo $x
www.eeworm.com/read/136812/5860207
about_text tank.about_text
Aquarium
A demonstartion of the capabilities of the Sun SPARCstation 4/60 & 4/65 using the power of XGL. Hidden line removal using BSP trees, originally written by Walt Donavan. Flocking behavior
www.eeworm.com/read/106677/6191557
java keybcs.java
package cryptix.pgp.charset;
import cryptix.pgp.*;
/**
* @author Jill Baker
*/
public abstract class Keybcs extends SimpleCharSet
{
public final static byte[] encode( byte[] buffer )
{
www.eeworm.com/read/106677/6191558
java mac.java
package cryptix.pgp.charset;
import cryptix.pgp.*;
/**
* @author Jill Baker
*/
public abstract class Mac extends SimpleCharSet
{
public final static byte[] encode( byte[] buffer )
{
www.eeworm.com/read/106677/6191561
java cp850.java
package cryptix.pgp.charset;
import cryptix.pgp.*;
/**
* @author Jill Baker
*/
public abstract class Cp850 extends SimpleCharSet
{
public final static byte[] encode( byte[] buffer )
{
www.eeworm.com/read/106677/6191562
java cp860.java
package cryptix.pgp.charset;
import cryptix.pgp.*;
/**
* @author Jill Baker
*/
public abstract class Cp860 extends SimpleCharSet
{
public final static byte[] encode( byte[] buffer )
{
www.eeworm.com/read/106677/6191563
java cp852.java
package cryptix.pgp.charset;
import cryptix.pgp.*;
/**
* @author Jill Baker
*/
public abstract class Cp852 extends SimpleCharSet
{
public final static byte[] encode( byte[] buffer )
{
www.eeworm.com/read/106677/6191565
java next.java
package cryptix.pgp.charset;
import cryptix.pgp.*;
/**
* @author Jill Baker
*/
public abstract class Next extends SimpleCharSet
{
public final static byte[] encode( byte[] buffer )
{
www.eeworm.com/read/410432/11287518
c swap2.c
/* swap2.c -- researching swap1.c */
#include
void interchange(int u, int v);
int main(void)
{
int x = 5, y = 10;
printf("Originally x = %d and y = %d.\n", x , y);
int