代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/220617/14795086
v mult_repeat.v
module mult_repeat(outcome,a,b);
parameter size=8;
input[size:1] a,b;
output[2*size:1] outcome;
reg[2*size:1] temp_a,outcome;
reg[size:1] temp_b;
always @(a or b)
begin
outcome=0;
temp_a=a;
www.eeworm.com/read/117368/14928214
cod repeat1.cod
=== COMPILE PL0 ===
0 PROGRAM E01;
0 VAR SUM,N;
1 BEGIN
2 SUM:=0;
4 READ(N);
6 REPEAT SUM++;
10 N++;
14 WRITE(SUM);
17 UNTIL N>=0;
21 WRITE(SUM
www.eeworm.com/read/214142/15112801
cpp 050320173repeat.cpp
#include
#include
#include
#include
using namespace std;
//#include "time.h"
long int n,countnum=0;
ifstream input;
ofstream output;
void swap(char &
www.eeworm.com/read/212166/15165204
h pp_repeat.h
// dnc_pp_repeat
#define dnc_pp_repeat(count, macro, data) dnc_pp_repeat_i(count, macro, data)
#define dnc_pp_repeat_i(count, macro, data) dnc_pp_repeat_##count(macro,data)
#define dnc_pp_repeat_
www.eeworm.com/read/17937/767692
tf repeat_tb.tf
module testbench();
reg [7:0] Din; // Inputs
wire [3:0] ones;// Outputs
repeat_1s uut (.ones(ones), .Din(Din));// Instantiate the UUT
// Initialize Inputs
initial
$monitor ($time,
www.eeworm.com/read/38039/1088797
bif pgl_repeat.bif
! 05-Mar-96 G-03-04 dac %%1 created
! 07-Feb-03 J-03-41 mgs $$1 Move under libs/pgl - rename
(Image pgl_repeat
(Resources
(.Width 32)
(.Height 16)
(.Depth
www.eeworm.com/read/482889/1284614
hpp repeat_from_to.hpp
# /* Copyright (C) 2001
# * Housemarque Oy
# * http://www.housemarque.com
# *
# * Distributed under the Boost Software License, Version 1.0. (See
# * accompanying file LICENSE_1_0.txt or cop
www.eeworm.com/read/482889/1284655
hpp repeat_from_to.hpp
# /* **************************************************************************
# * *
# * (C) Copyright Paul Mensonides
www.eeworm.com/read/233448/4690314
h bind_repeat.h
// TR1 code repetition for bind -*- C++ -*-
// Copyright (C) 2005 Free Software Foundation, Inc.
// Written by Douglas Gregor
//
// This file is part of the GNU ISO C++ L
www.eeworm.com/read/222917/4816500
phpt str_repeat.phpt
--TEST--
str_repeat() function
--POST--
--GET--
--FILE--
--EXPEC