代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/341835/12059147
obj read_random.obj
XH
H 3 areas 7 global symbols
M E:\Cansum Project\I.T Mouse\I.T Mouse20040710\read_random.asm
A . size 0 flags 0 addr 0 0
A read_random_var size 6 flags 2 addr 0 0
S temp_rnd Def0000
S rnd_num D
www.eeworm.com/read/341835/12059200
asm read_random.asm
;****************************************************************;
; Read Random Number
;
; function: generate a number between 0 and m_rnd_range
; variable: rnd_num_16+1, rnd_num_16 and m_rnd_ran
www.eeworm.com/read/341835/12059263
asl read_random.asl
+ 1 ;****************************************************************;
+ 2 ; Read Random Number
+ 3 ;
+ 4 ; function:
www.eeworm.com/read/255668/12065899
c r_random.c
/* R_RANDOM.C - random objects for RSAREF
*/
/* Copyright (C) RSA Laboratories, a division of RSA Data Security,
Inc., created 1991. All rights reserved.
*/
#include "global.h"
#inclu
www.eeworm.com/read/255668/12065905
h r_random.h
/* R_RANDOM.H - header file for R_RANDOM.C
*/
/* Copyright (C) RSA Laboratories, a division of RSA Data Security,
Inc., created 1991. All rights reserved.
*/
int R_GenerateBytes PROTO_
www.eeworm.com/read/255510/12077972
v random_tp.v
`timescale 10ns/1ns
module random_tp;
integer data;
integer i;
parameter delay=10;
initial $monitor($time,,,"data=%b",data);
initial
begin
for(i=0; i
www.eeworm.com/read/339483/12230387
sh random-test.sh
#!/bin/bash
# How random is RANDOM?
RANDOM=$$ # Reseed the random number generator using script process ID.
PIPS=6 # A die has 6 pips.
MAXTHROWS=600 # Increase this if you have noth
www.eeworm.com/read/339483/12230431
sh random-between.sh
#!/bin/bash
# random-between.sh
# Random number between two specified values.
# Script by Bill Gradwohl, with minor modifications by the document author.
# Used with permission.
randomBetween() {
www.eeworm.com/read/339483/12230561
sh seeding-random.sh
#!/bin/bash
# seeding-random.sh: Seeding the RANDOM variable.
MAXCOUNT=25 # How many numbers to generate.
random_numbers ()
{
count=0
while [ "$count" -lt "$MAXCOUNT" ]
do
number=$RANDOM
e
www.eeworm.com/read/339483/12230629
sh random2.sh
#!/bin/bash
# random2.sh: Returns a pseudorandom number in the range 0 - 1.
# Uses the awk rand() function.
AWKSCRIPT=' { srand(); print rand() } '
# Command(s) / parameters passed to awk