代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/339858/12200394
crf queue.crf
www.eeworm.com/read/339858/12200396
d queue.d
.\obj\queue.o: DataQueue\queue.c
.\obj\queue.o: DataQueue\../config.h
.\obj\queue.o: C:\Keil\ARM\INC\Luminary\hw_ints.h
.\obj\queue.o: C:\Keil\ARM\INC\Luminary\hw_memmap.h
.\obj\queue.o: C:\Keil\A
www.eeworm.com/read/339858/12200399
__i queue.__i
-c --device DLM -g -O0 --apcs=interwork -I "C:\Keil\ARM\INC\Luminary" -o ".\obj\queue.o" --omf_browse ".\obj\queue.crf" --depend ".\obj\queue.d" "DataQueue\queue.c"
www.eeworm.com/read/339858/12200431
h queue.h
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/339858/12200433
c queue.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/339831/12202145
h queue.h
/*
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permi
www.eeworm.com/read/339492/12229322
h queue.h
// specification file for an unlimited queue for storing bytes
#ifndef CRYPTOPP_QUEUE_H
#define CRYPTOPP_QUEUE_H
#include "cryptlib.h"
#include
NAMESPACE_BEGIN(CryptoPP)
/**
www.eeworm.com/read/339492/12229505
cpp queue.cpp
// queue.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "queue.h"
#include "filters.h"
NAMESPACE_BEGIN(CryptoPP)
// this class for use by ByteQueue only
www.eeworm.com/read/253260/12234494
h queue.h
// queue.h -- interface for a queue
#ifndef QUEUE_H_
#define QUEUE_H_
// This queue will contain Customer items
class Customer
{
private:
long arrive; // arrival time for customer
www.eeworm.com/read/253260/12234513
cpp queue.cpp
// queue.cpp -- Queue and Customer methods
#include "queue.h"
#include // (or stdlib.h) for rand()
// Queue methods
Queue::Queue(int qs) : qsize(qs)
{
front = rear = NULL