代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/281827/4112449
cc random.cc
// Copyright (C) 2002 David R. Martin
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
www.eeworm.com/read/281827/4112464
hh random.hh
// Copyright (C) 2002 David R. Martin
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
www.eeworm.com/read/281683/4113466
java random.java
package java.util;
/**
* Pseudo-random number generation.
*/
public class Random
{
private int iPrevSeed, iSeed;
public Random (long seed)
{
iPrevSeed = 1;
iSeed = (int) seed;
}
www.eeworm.com/read/278327/4146294
java random.java
/*
* Copyright 1995-2002 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the proprietary information of Sun Microsystems, Inc.
* Use is subject to license terms.
*
*/
package j
www.eeworm.com/read/277317/4156864
h random.h
#ifndef _LINUX_RANDOM_H
#define _LINUX_RANDOM_H
#include
__inline void get_random_bytes(void* buf, int nbytes)
{
__u8* pBuf = (__u8*)buf;
while (nbytes-- > 0)
www.eeworm.com/read/273176/4212953
c random.c
/******************************************************************************
* *
* **********
www.eeworm.com/read/270919/4232206
java random.java
// $Id: Random.java,v 1.1 2004/06/11 21:30:15 mikedemmer Exp $
/*
*
*
* "Copyright (c) 2004 and The Regents of the University
* of California. All rights reserved.
*
* Permission to use, copy
www.eeworm.com/read/270919/4233029
nc random.nc
// $Id: Random.nc,v 1.3 2003/10/07 21:46:14 idgay Exp $
/* tab:4
* "Copyright (c) 2000-2003 The Regents of the University of California.
* All rights reserved.
*
* Permission to use, c
www.eeworm.com/read/449063/1681832
c random.c
/* ============================================================================
Project Name : jayaCard
Module Name : proto/bios/crypto/random.c
Version : $Id: random.c,v 1.14 2004/01/11 09: