代码搜索:blocking
找到约 1,859 项符合「blocking」的源代码
代码结果 1,859
www.eeworm.com/read/232333/14198106
cpp connectsocket.cpp
/*
mySocket, ConnectSocket
Copyright (C) 2006 Kornel Csernai
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General
www.eeworm.com/read/162614/5525087
ada c9a009g.ada
-- C9A009G.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5525148
ada c9a009f.ada
-- C9A009F.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/431556/8667595
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_BEGIN(Crypt
www.eeworm.com/read/431556/8667638
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)
/** The queue
www.eeworm.com/read/431556/8667658
h simple.h
// simple.h - written and placed in the public domain by Wei Dai
/*! \file
Simple non-interface classes derived from classes in cryptlib.h.
*/
#ifndef CRYPTOPP_SIMPLE_H
#define CRYPTOPP_SIMPLE_H
#
www.eeworm.com/read/431556/8667764
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/431199/8701733
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 secret sha
www.eeworm.com/read/383607/8932794
m plotpc.m
function [ outy ] = plotPC( n )
nA = 0:100;
outy = PC(n, nA);
plot(nA, outy);
xlabel('A');ylabel('P(C)');
title('Blocking Probability vs. A (from Erlang C formula)');
www.eeworm.com/read/383607/8932796
m finishpc2.m
A = 0:100;
n = [1,2,10,20,30,40,50,60,70,80,90,100];
out = [];
for i = n
out = [out; PC(i, A)];
end
plot(A,out')
labeling(n,out);
xlabel('A');ylabel('P(C)');
title('Blocking Probability vs. A (fro