代码搜索:Sign

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

代码结果 10,000
www.eeworm.com/read/122492/6065860

java~1~ ieee754constants.java~1~

package numbercruncher.mathutils; /** * Constants related to the IEEE 754 standard. */ public interface IEEE754Constants { static final int FLOAT_SIGN_INDEX = 0; static final int
www.eeworm.com/read/113186/6133295

sql jpetstore-hsqldb-schema.sql

drop index productCat; drop index productName; drop index itemProd; drop table lineitem; drop table orderstatus; drop table orders; drop table bannerdata; drop table profile; drop table sign
www.eeworm.com/read/113186/6133303

sql jpetstore-postgres-schema.sql

drop index productCat; drop index productName; drop index itemProd; drop table lineitem; drop table orderstatus; drop table orders; drop table bannerdata; drop table profile; drop table sign
www.eeworm.com/read/108165/6184488

sql jpetstore-hsqldb-schema.sql

drop index productCat; drop index productName; drop index itemProd; drop table lineitem; drop table orderstatus; drop table orders; drop table bannerdata; drop table profile; drop table sign
www.eeworm.com/read/108165/6184496

sql jpetstore-postgres-schema.sql

drop index productCat; drop index productName; drop index itemProd; drop table lineitem; drop table orderstatus; drop table orders; drop table bannerdata; drop table profile; drop table sign
www.eeworm.com/read/101082/6241411

c fmod.c

/* @(#)fmod.c 1.7 */ /*LINTLIBRARY*/ /* * fmod(x, y) returns the remainder of x on division by y, * with the same sign as x, * except that if |y|
www.eeworm.com/read/101082/6242738

c fmod.c

/* @(#)fmod.c 1.7 */ /*LINTLIBRARY*/ /* * fmod(x, y) returns the remainder of x on division by y, * with the same sign as x, * except that if |y|
www.eeworm.com/read/101082/6242741

c lgamma.c

/* @(#)lgamma.c 4.1 ULTRIX 7/2/90 */ /* @(#)gamma.c 1.14 */ /*LINTLIBRARY*/ /* * lgamma returns the log of the absolute value of the gamma function * of its double-precision argument. * The sign of
www.eeworm.com/read/101082/6243189

1a l3.1a

#print The editor accepts commands one per line, just like the other programs in UNIX; but its commands are unique to it. Like the normal command interpreter, the editor has a prompt sign to let you k
www.eeworm.com/read/414187/6306657

java huffmannode.java

public class HuffmanNode {//huffman树的节点 public byte sign; public int code; public int frequency; public int codewordLen; public HuffmanNode left=null,right=null; public HuffmanNode(){}