代码搜索:Capacity

找到约 2,190 项符合「Capacity」的源代码

代码结果 2,190
www.eeworm.com/read/241496/13139176

h foundation.h

/* */ #ifndef Foundation_H #define Foundation_H /* */ class ostream; const long DEFAULT_LIST_CAPACITY = 200; #ifndef defs_h #define defs_h /* */ typedef int bool; const int true = 1; const int false =
www.eeworm.com/read/149476/5699213

h 7zbuffer.h

/* 7zBuffer.h */ #ifndef __7Z_BUFFER_H #define __7Z_BUFFER_H #include #include "7zTypes.h" typedef struct _CSzByteBuffer { size_t Capacity; Byte *Items; }CSzByteBuffer
www.eeworm.com/read/138727/5814871

h 7zbuffer.h

/* 7zBuffer.h */ #ifndef __7Z_BUFFER_H #define __7Z_BUFFER_H #include #include "7zTypes.h" typedef struct _CSzByteBuffer { size_t Capacity; Byte *Items; }CSzByteBuffer
www.eeworm.com/read/247871/4473018

h 7zbuffer.h

/* 7zBuffer.h */ #ifndef __7Z_BUFFER_H #define __7Z_BUFFER_H #include #include "7zTypes.h" typedef struct _CSzByteBuffer { size_t Capacity; Byte *Items; }CSzByteBuffer
www.eeworm.com/read/204140/5033753

h 7zbuffer.h

/* 7zBuffer.h */ #ifndef __7Z_BUFFER_H #define __7Z_BUFFER_H #include #include "7zTypes.h" typedef struct _CSzByteBuffer { size_t Capacity; Byte *Items; }CSzByteBuffer
www.eeworm.com/read/175442/5346796

h widestr.h

#ifndef widestr_h_included #define widestr_h_included /* * Bare bones wchar_t string */ class widestr { public: widestr(int capacity) : m_wstr(0), m_maxlen(0), m_curlen(0) { alloc(
www.eeworm.com/read/327133/3464060

h 7zbuffer.h

/* 7zBuffer.h */ #ifndef __7Z_BUFFER_H #define __7Z_BUFFER_H #include #include "7zTypes.h" typedef struct _CSzByteBuffer { size_t Capacity; Byte *Items; }CSzByteBuffer
www.eeworm.com/read/298327/3867446

h 7zbuffer.h

/* 7zBuffer.h */ #ifndef __7Z_BUFFER_H #define __7Z_BUFFER_H #include #include "7zTypes.h" typedef struct _CSzByteBuffer { size_t Capacity; Byte *Items; }CSzByteBuffer
www.eeworm.com/read/288830/4004318

h 7zbuffer.h

/* 7zBuffer.h */ #ifndef __7Z_BUFFER_H #define __7Z_BUFFER_H #include #include "7zTypes.h" typedef struct _CSzByteBuffer { size_t Capacity; Byte *Items; }CSzByteBuffer
www.eeworm.com/read/415068/2138218

h deque.h

#ifndef DEQUE_H #define DEQUE_H template class Deque { public: Deque(); Deque(const Deque& d); int size() const; int capacity() const; void push_back(const T& i); v