代码搜索:same
找到约 10,000 项符合「same」的源代码
代码结果 10,000
www.eeworm.com/read/209559/4961425
s sasin.s
|
| sasin.sa 3.3 12/19/90
|
| Description: The entry point sAsin computes the inverse sine of
| an input argument; sAsind does the same except for denormalized
| input.
|
| Input: Double-extended nu
www.eeworm.com/read/209559/4961431
s stanh.s
|
| stanh.sa 3.1 12/10/90
|
| The entry point sTanh computes the hyperbolic tangent of
| an input argument; sTanhd does the same except for denormalized
| input.
|
| Input: Double-extended number X in
www.eeworm.com/read/209559/4964240
c radio-maxiradio.c
/*
* Guillemot Maxi Radio FM 2000 PCI radio card driver for Linux
* (C) 2001 Dimitromanolakis Apostolos
*
* Based in the radio Maestro PCI driver. Actually it uses the same c
www.eeworm.com/read/209559/4967418
h platinumfb.h
/*
* linux/drivers/video/platinumfb-hw.c -- Frame buffer device for the
* Platinum on-board video in PowerMac 7200s (and some clones based
* on the same motherboard.)
*
* Created 09 Feb 1998 by
www.eeworm.com/read/209559/4974178
h hostfs.h
#ifndef __UM_FS_HOSTFS
#define __UM_FS_HOSTFS
#include "os.h"
/* These are exactly the same definitions as in fs.h, but the names are
* changed so that this file can be included in both kernel and
www.eeworm.com/read/209559/4974762
c inetpeer.c
/*
* INETPEER - A storage for permanent information about peers
*
* This source is covered by the GNU GPL, the same as all kernel sources.
*
* Version: $Id: inetpeer.c,v 1.7 2001/09/20 21:22:5
www.eeworm.com/read/209211/4984824
c tmpfile.c
/*
* This file not used on plan9: see ../plan9/tmpfile.c
*/
/*
* pANS stdio -- tmpfile
*
* Bug: contains a critical section. Two executions by the same
* user could interleave as follows, both
www.eeworm.com/read/207991/4999579
mal tst270.mal
#Same as tst200, but includes testing of the profiler
#profiler.setAll();
profiler.activate("ticks");
profiler.activate("pc");
profiler.activate("statement");
#profiler.setFilter("*","*");
profiler.s
www.eeworm.com/read/207991/4999772
mal tst040.mal
# Variables names may be identical to type names, but
# then they also have to bear the same value
str := "hello";
int := 1:sht;
flt := "wrong";
i := true;
# test for coercion errors
x0 := "1":i
www.eeworm.com/read/205824/5018632
h bitops.h
#ifndef _LINUX_BITOPS_H
#define _LINUX_BITOPS_H
/*
* ffs: find first bit set. This is defined the same way as
* the libc and compiler builtin ffs routines, therefore
* differs in spirit fr