代码搜索:MISC
找到约 10,000 项符合「MISC」的源代码
代码结果 10,000
www.eeworm.com/read/486736/6526146
cpp misc.cpp
// misc.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "misc.h"
#include "words.h"
NAMESPACE_BEGIN(CryptoPP)
byte OAEP_P_DEFAULT[1];
template void B
www.eeworm.com/read/486736/6526151
h misc.h
#ifndef CRYPTOPP_MISC_H
#define CRYPTOPP_MISC_H
#include "config.h"
#include "cryptlib.h"
#include
#include // CodeWarrior doesn't have memory.h
#include
#i
www.eeworm.com/read/486864/6531229
c misc.c
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved
*
* Distribute freely, except: don't remove my name from the source or
* documentation (don't take credit for my work), mark yo
www.eeworm.com/read/486506/6533709
c misc.c
/* Set block of memory to constant */
memset(blk,val,size)
register char *blk;
register char val;
register unsigned size;
{
while(size-- != 0)
*blk++ = val;
}
/* Copy block of memory */
memcpy(dest
www.eeworm.com/read/485513/6552089
c misc.c
/*
* Copyright (c) International Business Machines Corp., 2006
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as pu
www.eeworm.com/read/485588/6553633
c misc.c
www.eeworm.com/read/484245/6582620
class misc.class
www.eeworm.com/read/483891/6597182
c misc.c
#include
double mymax(double a, double b)
{
if (a > b)
return a;
return b;
}
double mymin(double a, double b)
{
if (a < b)
return a;
return b;
}
double sign(double a, double b)
{
i