代码搜索:impl
找到约 10,000 项符合「impl」的源代码
代码结果 10,000
www.eeworm.com/read/249894/12463236
cs objectheader.cs
namespace Perst.Impl
{
using System;
using Perst;
class ObjectHeader
{
internal const int Sizeof = 8;
internal static int getSize(byte[] arr, int offs)
www.eeworm.com/read/249894/12463245
cs btreepage.cs
namespace Perst.Impl
{
using System;
using System.Collections;
using System.Diagnostics;
using Perst;
internal class BtreePage
{
internal const int firstKeyO
www.eeworm.com/read/249894/12463252
cs btreekey.cs
namespace Perst.Impl
{
using System;
using Perst;
using System.Diagnostics;
class BtreeKey
{
internal Key key;
internal int oid;
internal int ol
www.eeworm.com/read/249894/12463307
cs bytebuffer.cs
namespace Perst.Impl
{
using System;
using System.Text;
using System.IO;
public class ByteBuffer
{
public void extend(int size)
{
if (size
www.eeworm.com/read/249894/12463342
cs multifile.cs
namespace Perst.Impl
{
using System;
using System.IO;
using System.Runtime.InteropServices;
using Perst;
public class MultiFile : IFile
{
public struct
www.eeworm.com/read/249894/12463345
cs perstsink.cs
using System;
using System.Reflection;
using System.Runtime.Remoting.Messaging;
namespace Perst.Impl
{
public class PerstSink : IMessageSink
{
internal PerstSink(PersistentCo
www.eeworm.com/read/249894/12463356
cs bytes.cs
namespace Perst.Impl
{
using System;
using System.Text;
using Perst;
//
// Class for packing/unpacking data
//
public class Bytes
{
#if USE_UNSAFE_CODE
www.eeworm.com/read/249894/12463380
cs rc4file.cs
namespace Perst.Impl
{
using System;
public class Rc4File : OSFile
{
public override void Write(long pos, byte[] buf)
{
if (pos > length)
www.eeworm.com/read/249894/12463484
cs osfile.cs
namespace Perst.Impl
{
using System;
using System.IO;
using System.Runtime.InteropServices;
using Perst;
public class OSFile : IFile
{
[DllImport("kern
www.eeworm.com/read/214343/15104975
java orderedmap.java
package structure;
/**
* An interface the supports a Map whose values are kept
* in increasing order. Values stored within an OrderedMap
* should implement Comparable; ie. they should have an impl