代码搜索:buffer

找到约 10,000 项符合「buffer」的源代码

代码结果 10,000
www.eeworm.com/read/219704/14868955

h buffer.h

#ifndef _BUFFER_H_ #define _BUFFER_H_ //------------------------------------------------------- extern "C"{ #include #include #include #include }
www.eeworm.com/read/218591/14914540

c buffer.c

/* * linux/fs/buffer.c * * (C) 1991 Linus Torvalds */ /* * 'buffer.c' implements the buffer-cache functions. Race-conditions have * been avoided by NEVER letting a interrupt change a buffer (except f
www.eeworm.com/read/116795/14953690

h buffer.h

/*! \file buffer.h \brief Multipurpose byte buffer structure and methods. */ //***************************************************************************** // // File Name : 'buffer.h' // Title
www.eeworm.com/read/116795/14953700

c buffer.c

/*! \file buffer.c \brief Multipurpose byte buffer structure and methods. */ //***************************************************************************** // // File Name : 'buffer.c' // Title
www.eeworm.com/read/116795/14954434

dox buffer.dox

/** \defgroup buffer buffer: Generic Byte-Buffer Structure and Function Library This byte-buffer structure provides an easy and efficient way to store and process a stream of bytes.
www.eeworm.com/read/217145/14977041

h buffer.h

#ifndef BUFFER_H #define BUFFER_H typedef struct buffer { char *x; unsigned int p; unsigned int n; int fd; int (*op)(); } buffer; #define BUFFER_INIT(op,fd,buf,len) { (buf), 0, (len), (fd)
www.eeworm.com/read/216437/15014211

c buffer.c

/* * linux/fs/buffer.c * * (C) 1991 Linus Torvalds */ /* * 'buffer.c' implements the buffer-cache functions. Race-conditions have * been avoided by NEVER letting a interrupt change a buffer
www.eeworm.com/read/114008/15118282

h buffer.h

#ifndef BUFFER_H #define BUFFER_H // 功能:定义数据缓冲区各抽象类 #ifndef DOUBLE #define DOUBLE double // #define DOUBLE long double // 如double精度不够,则可将此行去注释,而将上行注释 // 即可得到更精确的结果 #endif // DOUBLE
www.eeworm.com/read/114008/15118297

cpp buffer.cpp

#include #include #include // 功能:实现buffer.h中的各个缓冲类的函数 #include "buffer.h" #include "cbuffer.h" DOUBLE defaulterr = 1e-8; // 缺省的误差调整值 int doadjust = 1; /
www.eeworm.com/read/213919/15122360

class buffer.class