代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/121089/6069965
asm random.asm
TITLE RANDOM - Random number generator and RANDOMIZE
page ,132
;***
; RANDOM - Random number generator and RANDOMIZE
;
; Copyright 1986, Microsoft Corporation
;
;Purpose:
;
; BASIC Synt
www.eeworm.com/read/120487/6073493
out random.out
--
-- RANDOM
-- Test the random function
--
-- count the number of tuples originally
SELECT count(*) FROM onek;
count
-------
1000
(1 row)
-- select roughly 1/10 of the tuples
-- Assume that the
www.eeworm.com/read/120487/6073556
sql random.sql
--
-- RANDOM
-- Test the random function
--
-- count the number of tuples originally
SELECT count(*) FROM onek;
-- select roughly 1/10 of the tuples
-- Assume that the "onek" table has 1000 tuples
-
www.eeworm.com/read/119864/6081522
c random.c
#include
/*
* This generator is a combination of three linear congruential generators
* with periods or 2^15-405, 2^15-1041 and 2^15-1111. It has a period that
* is the product of these
www.eeworm.com/read/119335/6090911
txt random.txt
TF Random_Roll(unsigned long count, unsigned long magnitude, long floor,
long **rolls);
Uses the ISO C rand() function, which should be fine for ordinary
dice rolls. count is the numb
www.eeworm.com/read/116757/6112622
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/116006/6114970
c random.c
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the l
www.eeworm.com/read/112303/6145757
c random.c
/*
$Log: random.c,v $
Revision 1.1 2000/06/05 04:45:12 robertj
Added LPC-10 2400bps codec
* Revision 1.2 1996/08/20 20:41:32 jaf
* Removed all static local variables that were SAVE'd in the F
www.eeworm.com/read/112303/6145945
h random.h
/*
* random.h
*
* Mersenne Twister random number generator.
* From Makoto Matsumoto and Takuji Nishimura.
*
* Portable Windows Library
*
* Copyright (c) 1993-2000 Equivalence Pty. Ltd.
*
* T