代码搜索:buffer

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

代码结果 10,000
www.eeworm.com/read/100656/15867925

h buffer.h

// Buffer.h: interface for the CBuffer class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_BUFFER_H__829F6693_AC4D_11D2_8C37_00600877E420__INCLUDED_)
www.eeworm.com/read/100573/15871658

c buffer.c

/* * 'buffer.c' implements the buffer-cache functions. Race-conditions have * been avoided by NEVER letting a interrupt change a buffer (except for the * data, of course), but instead letting the
www.eeworm.com/read/100325/15877107

c buffer.c

/* Buffer management for tar. Copyright (C) 1988 Free Software Foundation This file is part of GNU Tar. GNU Tar is free software; you can redistribute it and/or modify it under the terms of
www.eeworm.com/read/100265/15879356

h buffer.h

#ifndef BUFFER_H #define BUFFER_H class Buffer { public: Buffer (const Buffer&); Buffer(int min_size = 1024); void clear(); // remove everything void shift (int
www.eeworm.com/read/100265/15879401

cc buffer.cc

// Buffer object #include #include #include #include #include #include "defs.h" #include "Buffer.h" int Buffer::find_mem_size (int min_size) { i
www.eeworm.com/read/100119/15883605

c buffer.c

/* vi:set ts=8 sts=4 sw=4: * * VIM - Vi IMproved by Bram Moolenaar * * Do ":help uganda" in Vim to read copying and usage conditions. * Do ":help credits" in Vim to see a list of people who
www.eeworm.com/read/100119/15883647

pro buffer.pro

/* buffer.c */ int open_buffer __ARGS((int read_stdin)); int buf_valid __ARGS((BUF *buf)); void close_buffer __ARGS((WIN *win, BUF *buf, int free_buf, int del_buf)); void buf_clear __ARGS((BUF *bu
www.eeworm.com/read/100019/15887951

c buffer.c

// // This example demonstrates semaphores. // #include #include #include class typeit : public pthread { protected: semaphore t_sem; string s; int i;