亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? lh_stats.c

?? OpenSSL 0.9.8k 最新版OpenSSL
?? C
字號(hào):
/* crypto/lhash/lh_stats.c *//* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. *  * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to.  The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code.  The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). *  * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. *  * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software *    must display the following acknowledgement: *    "This product includes cryptographic software written by *     Eric Young (eay@cryptsoft.com)" *    The word 'cryptographic' can be left out if the rouines from the library *    being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from  *    the apps directory (application code) you must include an acknowledgement: *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" *  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *  * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed.  i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */#include <stdio.h>#include <string.h>#include <stdlib.h>/* If you wish to build this outside of SSLeay, remove the following lines * and things should work as expected */#include "cryptlib.h"#ifndef OPENSSL_NO_BIO#include <openssl/bio.h>#endif#include <openssl/lhash.h>#ifdef OPENSSL_NO_BIOvoid lh_stats(LHASH *lh, FILE *out)	{	fprintf(out,"num_items             = %lu\n",lh->num_items);	fprintf(out,"num_nodes             = %u\n",lh->num_nodes);	fprintf(out,"num_alloc_nodes       = %u\n",lh->num_alloc_nodes);	fprintf(out,"num_expands           = %lu\n",lh->num_expands);	fprintf(out,"num_expand_reallocs   = %lu\n",lh->num_expand_reallocs);	fprintf(out,"num_contracts         = %lu\n",lh->num_contracts);	fprintf(out,"num_contract_reallocs = %lu\n",lh->num_contract_reallocs);	fprintf(out,"num_hash_calls        = %lu\n",lh->num_hash_calls);	fprintf(out,"num_comp_calls        = %lu\n",lh->num_comp_calls);	fprintf(out,"num_insert            = %lu\n",lh->num_insert);	fprintf(out,"num_replace           = %lu\n",lh->num_replace);	fprintf(out,"num_delete            = %lu\n",lh->num_delete);	fprintf(out,"num_no_delete         = %lu\n",lh->num_no_delete);	fprintf(out,"num_retrieve          = %lu\n",lh->num_retrieve);	fprintf(out,"num_retrieve_miss     = %lu\n",lh->num_retrieve_miss);	fprintf(out,"num_hash_comps        = %lu\n",lh->num_hash_comps);#if 0	fprintf(out,"p                     = %u\n",lh->p);	fprintf(out,"pmax                  = %u\n",lh->pmax);	fprintf(out,"up_load               = %lu\n",lh->up_load);	fprintf(out,"down_load             = %lu\n",lh->down_load);#endif	}void lh_node_stats(LHASH *lh, FILE *out)	{	LHASH_NODE *n;	unsigned int i,num;	for (i=0; i<lh->num_nodes; i++)		{		for (n=lh->b[i],num=0; n != NULL; n=n->next)			num++;		fprintf(out,"node %6u -> %3u\n",i,num);		}	}void lh_node_usage_stats(LHASH *lh, FILE *out)	{	LHASH_NODE *n;	unsigned long num;	unsigned int i;	unsigned long total=0,n_used=0;	for (i=0; i<lh->num_nodes; i++)		{		for (n=lh->b[i],num=0; n != NULL; n=n->next)			num++;		if (num != 0)			{			n_used++;			total+=num;			}		}	fprintf(out,"%lu nodes used out of %u\n",n_used,lh->num_nodes);	fprintf(out,"%lu items\n",total);	if (n_used == 0) return;	fprintf(out,"load %d.%02d  actual load %d.%02d\n",		(int)(total/lh->num_nodes),		(int)((total%lh->num_nodes)*100/lh->num_nodes),		(int)(total/n_used),		(int)((total%n_used)*100/n_used));	}#else#ifndef OPENSSL_NO_FP_APIvoid lh_stats(const LHASH *lh, FILE *fp)	{	BIO *bp;	bp=BIO_new(BIO_s_file());	if (bp == NULL) goto end;	BIO_set_fp(bp,fp,BIO_NOCLOSE);	lh_stats_bio(lh,bp);	BIO_free(bp);end:;	}void lh_node_stats(const LHASH *lh, FILE *fp)	{	BIO *bp;	bp=BIO_new(BIO_s_file());	if (bp == NULL) goto end;	BIO_set_fp(bp,fp,BIO_NOCLOSE);	lh_node_stats_bio(lh,bp);	BIO_free(bp);end:;	}void lh_node_usage_stats(const LHASH *lh, FILE *fp)	{	BIO *bp;	bp=BIO_new(BIO_s_file());	if (bp == NULL) goto end;	BIO_set_fp(bp,fp,BIO_NOCLOSE);	lh_node_usage_stats_bio(lh,bp);	BIO_free(bp);end:;	}#endifvoid lh_stats_bio(const LHASH *lh, BIO *out)	{	BIO_printf(out,"num_items             = %lu\n",lh->num_items);	BIO_printf(out,"num_nodes             = %u\n",lh->num_nodes);	BIO_printf(out,"num_alloc_nodes       = %u\n",lh->num_alloc_nodes);	BIO_printf(out,"num_expands           = %lu\n",lh->num_expands);	BIO_printf(out,"num_expand_reallocs   = %lu\n",		   lh->num_expand_reallocs);	BIO_printf(out,"num_contracts         = %lu\n",lh->num_contracts);	BIO_printf(out,"num_contract_reallocs = %lu\n",		   lh->num_contract_reallocs);	BIO_printf(out,"num_hash_calls        = %lu\n",lh->num_hash_calls);	BIO_printf(out,"num_comp_calls        = %lu\n",lh->num_comp_calls);	BIO_printf(out,"num_insert            = %lu\n",lh->num_insert);	BIO_printf(out,"num_replace           = %lu\n",lh->num_replace);	BIO_printf(out,"num_delete            = %lu\n",lh->num_delete);	BIO_printf(out,"num_no_delete         = %lu\n",lh->num_no_delete);	BIO_printf(out,"num_retrieve          = %lu\n",lh->num_retrieve);	BIO_printf(out,"num_retrieve_miss     = %lu\n",lh->num_retrieve_miss);	BIO_printf(out,"num_hash_comps        = %lu\n",lh->num_hash_comps);#if 0	BIO_printf(out,"p                     = %u\n",lh->p);	BIO_printf(out,"pmax                  = %u\n",lh->pmax);	BIO_printf(out,"up_load               = %lu\n",lh->up_load);	BIO_printf(out,"down_load             = %lu\n",lh->down_load);#endif	}void lh_node_stats_bio(const LHASH *lh, BIO *out)	{	LHASH_NODE *n;	unsigned int i,num;	for (i=0; i<lh->num_nodes; i++)		{		for (n=lh->b[i],num=0; n != NULL; n=n->next)			num++;		BIO_printf(out,"node %6u -> %3u\n",i,num);		}	}void lh_node_usage_stats_bio(const LHASH *lh, BIO *out)	{	LHASH_NODE *n;	unsigned long num;	unsigned int i;	unsigned long total=0,n_used=0;	for (i=0; i<lh->num_nodes; i++)		{		for (n=lh->b[i],num=0; n != NULL; n=n->next)			num++;		if (num != 0)			{			n_used++;			total+=num;			}		}	BIO_printf(out,"%lu nodes used out of %u\n",n_used,lh->num_nodes);	BIO_printf(out,"%lu items\n",total);	if (n_used == 0) return;	BIO_printf(out,"load %d.%02d  actual load %d.%02d\n",		   (int)(total/lh->num_nodes),		   (int)((total%lh->num_nodes)*100/lh->num_nodes),		   (int)(total/n_used),		   (int)((total%n_used)*100/n_used));	}#endif

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线播放日韩导航| 亚洲国产视频一区二区| 精品国产百合女同互慰| 欧美成人三级电影在线| 日韩女同互慰一区二区| 日韩欧美另类在线| 精品久久久三级丝袜| 精品国产不卡一区二区三区| 精品久久久久av影院| 久久综合精品国产一区二区三区| 精品精品国产高清一毛片一天堂| 欧美大白屁股肥臀xxxxxx| 精品免费视频一区二区| 国产欧美日韩在线看| 中文字幕国产一区二区| 亚洲欧美激情视频在线观看一区二区三区| 国产精品女主播av| 亚洲最色的网站| 日日骚欧美日韩| 精品一区二区三区视频| 成人午夜激情影院| 色综合天天狠狠| 欧美视频在线观看一区二区| 欧美丰满高潮xxxx喷水动漫| 精品欧美一区二区在线观看| 亚洲国产精品黑人久久久 | 日韩精品成人一区二区在线| 青青草一区二区三区| 国产精品一区二区久久精品爱涩| 国产jizzjizz一区二区| 色婷婷综合五月| 日韩免费福利电影在线观看| 中文字幕av一区二区三区免费看 | 欧美经典一区二区| 亚洲九九爱视频| 日韩高清不卡一区| 国产福利一区二区三区视频在线 | 成人av网在线| 精品视频在线看| 久久久欧美精品sm网站| 亚洲免费在线观看视频| 奇米亚洲午夜久久精品| 成人h版在线观看| 欧美精品xxxxbbbb| 国产三级精品三级| 亚洲电影中文字幕在线观看| 国产中文字幕精品| 欧洲av在线精品| 精品国产成人在线影院 | 久久99精品久久久久婷婷| 国产盗摄视频一区二区三区| 日本韩国欧美在线| 久久丝袜美腿综合| 亚洲成人动漫av| 不卡一区中文字幕| 日韩欧美精品三级| 伊人婷婷欧美激情| 国产美女一区二区三区| 欧美精品久久一区二区三区| 中文字幕一区三区| 精品一区二区在线视频| 欧美三级资源在线| 国产精品成人一区二区三区夜夜夜| 日韩电影免费在线| 日本韩国精品在线| 国产精品丝袜黑色高跟| 免费观看在线色综合| 91极品视觉盛宴| 国产精品网站一区| 国产一区美女在线| 日韩亚洲欧美高清| 亚洲午夜电影在线观看| 不卡的av电影在线观看| 精品国产一区二区三区四区四 | 丝袜脚交一区二区| 色噜噜狠狠色综合欧洲selulu| 精品sm在线观看| 日韩1区2区日韩1区2区| 精品视频免费在线| 亚洲精品欧美在线| 91亚洲精品久久久蜜桃| 中文字幕一区二区三区色视频| 国产成人精品在线看| 精品福利二区三区| 激情文学综合丁香| 欧美成人一区二区三区在线观看| 亚洲成人av中文| 欧美日韩一区在线| 一区二区三区欧美激情| 91在线观看美女| 亚洲色图另类专区| 91亚洲精品久久久蜜桃| 亚洲欧美一区二区三区国产精品 | 美腿丝袜亚洲色图| 69精品人人人人| 五月天一区二区三区| 欧美无人高清视频在线观看| 亚洲一区二区三区美女| 欧美亚洲高清一区| 亚洲不卡av一区二区三区| 欧美亚洲动漫精品| 午夜一区二区三区视频| 欧美视频精品在线观看| 午夜婷婷国产麻豆精品| 3751色影院一区二区三区| 日韩专区一卡二卡| 日韩欧美色综合| 国产美女一区二区三区| 欧美国产精品一区二区三区| 不卡的av电影在线观看| 自拍偷拍亚洲综合| 色婷婷国产精品| 偷拍与自拍一区| 日韩一区二区在线观看| 国模套图日韩精品一区二区| 久久久亚洲精品石原莉奈| 成人爽a毛片一区二区免费| 亚洲欧洲另类国产综合| 在线免费观看成人短视频| 亚洲电影激情视频网站| 欧美一卡2卡3卡4卡| 久久av中文字幕片| 国产精品美女久久福利网站| 91成人免费电影| 轻轻草成人在线| 亚洲国产高清aⅴ视频| 色婷婷久久综合| 日韩成人伦理电影在线观看| 精品精品国产高清a毛片牛牛 | 91精品国产综合久久久久久| 老司机免费视频一区二区| 久久综合中文字幕| 成人av手机在线观看| 亚洲成人av福利| 精品国精品国产尤物美女| 成人精品鲁一区一区二区| 亚洲综合一区在线| 精品国精品国产尤物美女| 99国产精品久久久久| 图片区小说区区亚洲影院| 国产色产综合色产在线视频| 欧洲av在线精品| 黑人巨大精品欧美一区| 亚洲欧洲色图综合| 91麻豆精品91久久久久同性| 风间由美一区二区av101| 亚洲一区二区三区美女| 久久久久久久久97黄色工厂| 91精品91久久久中77777| 国产综合色产在线精品| 樱花影视一区二区| 久久免费的精品国产v∧| 欧洲精品一区二区三区在线观看| 国产精选一区二区三区| 亚洲成人动漫一区| 亚洲国产精品成人久久综合一区| 在线观看国产91| 国产99一区视频免费| 日韩av网站免费在线| 自拍偷拍国产精品| 精品国产a毛片| 欧美日韩激情在线| 91亚洲国产成人精品一区二区三 | 在线视频国内自拍亚洲视频| 精品一区二区三区不卡| 亚洲一区二区3| 99久久99久久综合| 欧美国产日韩在线观看| 亚洲欧美日韩成人高清在线一区| 色综合久久久久久久久| 亚洲国产精品视频| 国产午夜精品理论片a级大结局| 欧美日韩精品福利| 91美女片黄在线观看91美女| 久久机这里只有精品| 五月婷婷久久丁香| 一区二区激情小说| 综合欧美一区二区三区| 欧美精品一区二区久久婷婷| 欧美嫩在线观看| 9人人澡人人爽人人精品| 久久99在线观看| 日av在线不卡| 亚洲成人av电影在线| 一区二区三区国产| 国产精品国产精品国产专区不片 | 亚洲人成伊人成综合网小说| 久久精品视频网| 欧美tickling网站挠脚心| 欧美日韩视频在线一区二区| 99久久久久久| av在线这里只有精品| 国产一区二区女| 精品一区二区精品| 麻豆成人91精品二区三区| 日本成人在线电影网| 日本成人超碰在线观看| 秋霞电影一区二区| 老司机精品视频在线| 精品一区二区综合|