代码搜索:blocking
找到约 1,859 项符合「blocking」的源代码
代码结果 1,859
www.eeworm.com/read/103725/6212619
cpp cryptlib.cpp
// cryptlib.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "cryptlib.h"
#include "misc.h"
#include "filters.h"
#include "algparam.h"
#include "fips140.h"
#include
www.eeworm.com/read/103192/6220399
h locking.h
/***
*sys\locking.h - flags for locking() function
*
* Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved.
*
*Purpose:
* This file defines the flags for the locking() funct
www.eeworm.com/read/103192/6220926
h locking.h
/***
*sys\locking.h - flags for locking() function
*
* Copyright (c) 1985-1990, Microsoft Corporation. All rights reserved.
*
*Purpose:
* This file defines the flags for the locking() function.
www.eeworm.com/read/101015/6261843
h locking.h
/***
*sys\locking.h - flags for locking() function
*
* Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved.
*
*Purpose:
* This file defines the flags for the locking() funct
www.eeworm.com/read/101015/6262370
h locking.h
/***
*sys\locking.h - flags for locking() function
*
* Copyright (c) 1985-1990, Microsoft Corporation. All rights reserved.
*
*Purpose:
* This file defines the flags for the locking() function.
www.eeworm.com/read/488254/6499422
bak block.v.bak
module block(clk,a,b,c);
output [3:0] b,c;
input [3:0] a;
input clk;
reg [3:0] b,c;
always @(posedge clk)
begin
b=a;
c=b;
$display("Blocking:a=%d,b=%d,c=%d.",a,b,c);
end
e
www.eeworm.com/read/488254/6499504
rpt block.asm.rpt
Assembler report for block
Mon May 18 09:37:14 2009
Quartus II Version 8.0 Build 231 07/10/2008 Service Pack 1 SJ Full Version
---------------------
; Table of Contents ;
--------------------
www.eeworm.com/read/486736/6525898
h filters.h
#ifndef CRYPTOPP_FILTERS_H
#define CRYPTOPP_FILTERS_H
#include "simple.h"
#include "secblock.h"
#include "misc.h"
#include "smartptr.h"
#include "queue.h"
#include "algparam.h"
NAMESPACE_B
www.eeworm.com/read/486736/6525919
h ida.h
#ifndef CRYPTOPP_IDA_H
#define CRYPTOPP_IDA_H
#include "mqueue.h"
#include "filters.h"
#include "channels.h"
#include
#include
NAMESPACE_BEGIN(CryptoPP)
/// base class for
www.eeworm.com/read/486736/6525958
h queue.h
// specification file for an unlimited queue for storing bytes
#ifndef CRYPTOPP_QUEUE_H
#define CRYPTOPP_QUEUE_H
#include "simple.h"
//#include
NAMESPACE_BEGIN(CryptoPP)
/**