代码搜索:DataSize
找到约 1,285 项符合「DataSize」的源代码
代码结果 1,285
www.eeworm.com/read/465112/6966460
c timing.c
/*
** Timing - Test timing on adpcm coder and decoder.
**
** The program creates 10Kb garbage, and runs the compressor and
** the decompressor on it.
*/
#include
#include
www.eeworm.com/read/172361/7068219
cpp clientdm.cpp
//---------------------------------------------------------------------
#include
#pragma hdrstop
#include "clientdm.h"
#include "clientc.h"
//-------------------------------------------
www.eeworm.com/read/463823/7174840
java sortinganimationcontroller.java
package animationController;
import java.awt.Color;
import testSortAnimator.MainSwingFrame;
import graphicAnimation.AnimationView;
public class SortingAnimationController extends Animation
www.eeworm.com/read/457121/7333837
hpp rawread.hpp
#ifndef _RAR_RAWREAD_
#define _RAR_RAWREAD_
class RawRead
{
private:
Array Data;
File *SrcFile;
int DataSize;
int ReadPos;
#ifndef SHELL_EXT
CryptData *Crypt;
#endif
pub
www.eeworm.com/read/457121/7333879
cpp ulinks.cpp
#include "rar.hpp"
int ExtractLink(ComprDataIO &DataIO,Archive &Arc,char *DestName,uint &LinkCRC,bool Create)
{
#if defined(SAVE_LINKS) && defined(_UNIX)
char FileName[NM];
if (IsLink(Arc.NewLh
www.eeworm.com/read/457121/7333894
cpp rawread.cpp
#include "rar.hpp"
RawRead::RawRead(File *SrcFile)
{
RawRead::SrcFile=SrcFile;
ReadPos=0;
DataSize=0;
#ifndef SHELL_EXT
Crypt=NULL;
#endif
}
void RawRead::Read(int Size)
{
#if !defined(SHEL
www.eeworm.com/read/450639/7479428
c timing.c
/*
** Timing - Test timing on adpcm coder and decoder.
**
** The program creates 10Kb garbage, and runs the compressor and
** the decompressor on it.
*/
#include
#include
www.eeworm.com/read/449030/7519916
s asmfunc.s
# asmfunc.s - An example of a simple assembly language function
.section .data
testdata:
.ascii "This is a test message from the asm function\n"
datasize:
.int 45
.section .text
.type asmfunc, @
www.eeworm.com/read/446236/7583605
h xormac.h
// xormac.h - written and placed in the public domain by Wei Dai
#ifndef CRYPTOPP_XORMAC_H
#define CRYPTOPP_XORMAC_H
#include "iterhash.h"
NAMESPACE_BEGIN(CryptoPP)
template cla
www.eeworm.com/read/445121/7599115
cpp semaphores.cpp
#include
#include
#include
using namespace std;
const int DataSize = 100000;
const int BufferSize = 4096;
char buffer[BufferSize];
QSemaphore freeSpace(BufferSize);
QS