亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ixqmgr.h

?? u-boot1.3.0的原碼,從配了網絡驅動和FLASH的驅動,并該用ESC竟如
?? H
?? 第 1 頁 / 共 5 頁
字號:
/** * @file    IxQMgr.h * * @date    30-Oct-2001 * * @brief This file contains the public API of IxQMgr component. * * Some functions contained in this module are inline to achieve better * data-path performance. For this to work, the function definitions are * contained in this header file. The "normal" use of inline functions * is to use the inline functions in the module in which they are * defined. In this case these inline functions are used in external * modules and therefore the use of "inline extern". What this means * is as follows: if a function foo is declared as "inline extern" this * definition is only used for inlining, in no case is the function * compiled on its own. If the compiler cannot inline the function it * becomes an external reference. Therefore in IxQMgrQAccess.c all * inline functions are defined without the "inline extern" specifier * and so define the external references. In all other source files * including this header file, these funtions are defined as "inline * extern". * *  * @par * IXP400 SW Release version 2.0 *  * -- Copyright Notice -- *  * @par * Copyright 2001-2005, Intel Corporation. * All rights reserved. *  * @par * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. Neither the name of the Intel Corporation nor the names of its contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. *  * @par * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *  * @par * -- End of Copyright Notice --*//* ------------------------------------------------------   Doxygen group definitions   ------------------------------------------------------ *//** * @defgroup IxQMgrAPI IXP400 Queue Manager (IxQMgr) API * * @brief The public API for the IXP400 QMgr component. * * IxQMgr is a low level interface to the AHB Queue Manager * * @{ */#ifndef IXQMGR_H#define IXQMGR_H/* * User defined include files */#include "IxOsal.h"/*  * Define QMgr's IoMem macros, in DC mode if in LE  * regular if in BE. (Note: For Linux LSP gold release * may need to adjust mode. */#if defined (__BIG_ENDIAN)#define IX_QMGR_INLINE_READ_LONG IX_OSAL_READ_LONG_BE#define IX_QMGR_INLINE_WRITE_LONG IX_OSAL_WRITE_LONG_BE#else#define IX_QMGR_INLINE_READ_LONG IX_OSAL_READ_LONG_LE_DC#define IX_QMGR_INLINE_WRITE_LONG IX_OSAL_WRITE_LONG_LE_DC#endif/* * #defines and macros *//**** @ingroup IxQMgrAPI** @def IX_QMGR_INLINE** @brief Inline definition, for inlining of Queue Access functions on API** Please read the header information in this file for more details on the* use of function inlining in this component.**/#ifndef __wince#ifdef IXQMGRQACCESS_C/* If IXQMGRQACCESS_C is set then the IxQmgrQAccess.c is including this file   and must instantiate a concrete definition for each inlineable API function   whether or not that function actually gets inlined. */#    ifdef NO_INLINE_APIS#        undef NO_INLINE_APIS#    endif#    define IX_QMGR_INLINE  /* Empty Define */#else#    ifndef NO_INLINE_APIS#       define IX_QMGR_INLINE IX_OSAL_INLINE_EXTERN#    else#       define IX_QMGR_INLINE /* Empty Define */#    endif#endif#else /* ndef __wince */#    ifndef NO_INLINE_APIS#       define NO_INLINE_APIS#    endif#    define IX_QMGR_INLINE#endif/**** @ingroup IxQMgrAPI** @def IX_QMGR_MAX_NUM_QUEUES** @brief Number of queues supported by the AQM.** This constant is used to indicate the number of AQM queues**/#define IX_QMGR_MAX_NUM_QUEUES  64/**** @ingroup IxQMgrAPI** @def IX_QMGR_MIN_QID** @brief Minimum queue identifier.** This constant is used to indicate the smallest queue identifier**/#define IX_QMGR_MIN_QID IX_QMGR_QUEUE_0/**** @ingroup IxQMgrAPI** @def IX_QMGR_MAX_QID** @brief Maximum queue identifier.** This constant is used to indicate the largest queue identifier**/#define IX_QMGR_MAX_QID IX_QMGR_QUEUE_63/**** @ingroup IxQMgrAPI** @def IX_QMGR_MIN_QUEUPP_QID** @brief Minimum queue identifier for reduced functionality queues.** This constant is used to indicate Minimum queue identifier for reduced* functionality queues**/#define IX_QMGR_MIN_QUEUPP_QID 32/**** @ingroup IxQMgrAPI** @def IX_QMGR_MAX_QNAME_LEN** @brief Maximum queue name length.** This constant is used to indicate the maximum null terminated string length* (excluding '\0') for a queue name**/#define IX_QMGR_MAX_QNAME_LEN 16/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_WARNING * * @brief Warning return code. * * Execution complete, but there is a special case to handle * */#define IX_QMGR_WARNING 2/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_PARAMETER_ERROR * * @brief Parameter error return code (NULL pointer etc..). * * parameter error out of range/invalid * */#define IX_QMGR_PARAMETER_ERROR 3/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_INVALID_Q_ENTRY_SIZE * * @brief Invalid entry size return code. * * Invalid queue entry size for a queue read/write * */#define IX_QMGR_INVALID_Q_ENTRY_SIZE 4/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_INVALID_Q_ID * * @brief Invalid queue identifier return code. * * Invalid queue id, not in range 0-63 * */#define IX_QMGR_INVALID_Q_ID 5/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_INVALID_CB_ID * * @brief Invalid callback identifier return code. * * Invalid callback id */#define IX_QMGR_INVALID_CB_ID 6/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_CB_ALREADY_SET * * @brief Callback set error return code. * * The specified callback has already been for this queue * */#define IX_QMGR_CB_ALREADY_SET 7/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_NO_AVAILABLE_SRAM * * @brief Sram consumed return code. * * All AQM Sram is consumed by queue configuration * */#define IX_QMGR_NO_AVAILABLE_SRAM 8/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_INVALID_INT_SOURCE_ID * * @brief Invalid queue interrupt source identifier return code. * * Invalid queue interrupt source given for notification enable */#define IX_QMGR_INVALID_INT_SOURCE_ID 9/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_INVALID_QSIZE * * @brief Invalid queue size error code. * * Invalid queue size not one of 16,32, 64, 128 * * */#define IX_QMGR_INVALID_QSIZE 10/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_INVALID_Q_WM * * @brief Invalid queue watermark return code. * * Invalid queue watermark given for watermark set */#define IX_QMGR_INVALID_Q_WM 11/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_Q_NOT_CONFIGURED * * @brief Queue not configured return code. * * Returned to the client when a function has been called on an unconfigured * queue * */#define IX_QMGR_Q_NOT_CONFIGURED 12/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_Q_ALREADY_CONFIGURED * * @brief Queue already configured return code. * * Returned to client to indicate that a queue has already been configured */#define IX_QMGR_Q_ALREADY_CONFIGURED 13/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_Q_UNDERFLOW * * @brief Underflow return code. * * Underflow on a queue read has occurred * */#define IX_QMGR_Q_UNDERFLOW 14/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_Q_OVERFLOW * * @brief Overflow return code. * * Overflow on a queue write has occurred * */#define IX_QMGR_Q_OVERFLOW 15/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_Q_INVALID_PRIORITY * * @brief Invalid priority return code. * * Invalid priority, not one of 0,1,2 */#define IX_QMGR_Q_INVALID_PRIORITY 16/** * * @ingroup IxQMgrAPI * * @def IX_QMGR_ENTRY_INDEX_OUT_OF_BOUNDS * * @brief  Entry index out of bounds return code. * * Entry index is greater than number of entries in queue. */#define IX_QMGR_ENTRY_INDEX_OUT_OF_BOUNDS 17/** * * @ingroup IxQMgrAPI * * @def ixQMgrDispatcherLoopRun * * @brief  Map old function name ixQMgrDispatcherLoopRun ()  *         to @ref ixQMgrDispatcherLoopRunA0 (). *

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人教育av在线| 欧美一区二区三区视频免费播放| 99热精品国产| 欧美一区二区视频网站| 亚洲国产精品成人综合| 三级亚洲高清视频| 99re热这里只有精品免费视频| 91精品国产欧美一区二区成人| 国产精品私人自拍| 麻豆高清免费国产一区| 91黄色小视频| 国产精品免费视频一区| 国产在线麻豆精品观看| 欧美精品123区| 一区二区欧美国产| 成人精品国产免费网站| 精品人在线二区三区| 亚洲国产一区视频| 91色九色蝌蚪| 国产精品久久久久影视| 懂色av一区二区三区免费观看| 欧美一区二区高清| 午夜精品在线视频一区| 日本大香伊一区二区三区| 国产精品美女久久久久久久| 国产一区不卡在线| 精品久久一二三区| 久久se这里有精品| 日韩精品一区二区三区蜜臀| 日韩中文字幕区一区有砖一区 | 亚洲欧洲国产日本综合| 国产一区二区免费在线| 久久久综合网站| 经典三级一区二区| 欧美tickling挠脚心丨vk| 麻豆国产一区二区| 精品国产一区二区精华| 国产一区二区在线观看免费| 2024国产精品视频| 国产成人亚洲精品狼色在线 | 欧美三级视频在线播放| 亚洲一二三四在线观看| 欧美日韩一区 二区 三区 久久精品| 亚洲精品五月天| 欧美特级限制片免费在线观看| 一区二区三区精品视频在线| 欧美探花视频资源| 美女免费视频一区二区| 久久久电影一区二区三区| 成人免费毛片片v| 亚洲视频综合在线| 欧美日韩高清一区二区| 久久9热精品视频| 欧美激情一区二区三区蜜桃视频| www.日韩在线| 亚洲第一综合色| 日韩女同互慰一区二区| 成人免费视频免费观看| 亚洲蜜臀av乱码久久精品 | 亚洲大型综合色站| 91精品国产免费| 国产一区二区美女| 亚洲一区二区三区不卡国产欧美| 51精品久久久久久久蜜臀| 国产一区二区三区香蕉| 亚洲人成网站色在线观看| 日韩三级电影网址| 北条麻妃一区二区三区| 首页综合国产亚洲丝袜| 欧美国产日本韩| 欧美喷潮久久久xxxxx| 国产在线麻豆精品观看| 亚洲精品国产精华液| 欧美一级片免费看| 91丨porny丨国产入口| 日本亚洲电影天堂| 综合久久给合久久狠狠狠97色| 欧美片在线播放| 91性感美女视频| 国内精品免费**视频| 亚洲国产你懂的| 国产精品嫩草久久久久| 欧美大片免费久久精品三p| 色吧成人激情小说| 国产成人免费视频网站| 婷婷亚洲久悠悠色悠在线播放| 国产农村妇女毛片精品久久麻豆| 欧美日本精品一区二区三区| 不卡在线视频中文字幕| 老鸭窝一区二区久久精品| 亚洲一区二区三区不卡国产欧美| 国产亚洲综合av| 91精品国产色综合久久ai换脸| 色综合久久中文综合久久牛| 国产一二精品视频| 蜜桃久久精品一区二区| 亚洲va中文字幕| 成人欧美一区二区三区视频网页| 久久免费看少妇高潮| 日韩视频免费直播| 欧美久久久影院| 欧美综合色免费| 91亚洲国产成人精品一区二三| 国产成a人亚洲| 国产在线精品一区二区三区不卡 | 久久精品夜色噜噜亚洲aⅴ| 欧美理论片在线| 欧美优质美女网站| 色婷婷综合激情| 色综合久久综合| 91福利精品第一导航| 色天天综合久久久久综合片| 99在线精品观看| 99热99精品| 99re8在线精品视频免费播放| 国产精品伊人色| 国产精品一品二品| 成人免费高清在线| av一区二区三区四区| 不卡在线视频中文字幕| 97国产一区二区| 色综合久久久久久久久| 色天天综合色天天久久| 91极品视觉盛宴| 欧美一区二区私人影院日本| 欧美一区二区成人6969| 精品国产伦一区二区三区观看方式| 欧美一区二区三区成人| 欧美精品一区二区三| 亚洲国产精品二十页| 亚洲乱码中文字幕综合| 亚洲电影一级片| 六月丁香综合在线视频| 国产精品自拍毛片| 99免费精品在线| 欧美日韩精品电影| 精品国产免费一区二区三区香蕉| 国产亚洲一区二区三区| 亚洲免费看黄网站| 麻豆精品在线播放| 成人美女在线视频| 欧美日韩一区高清| 久久影院午夜论| 亚洲精品综合在线| 免费一级片91| 99久久夜色精品国产网站| 欧美亚洲一区二区在线观看| 日韩一级黄色片| 亚洲国产精华液网站w| 亚洲一区二区三区免费视频| 精品亚洲成a人| 91丨国产丨九色丨pron| 日韩亚洲欧美一区二区三区| 日本一区二区三区四区 | 韩国女主播一区| 91免费看片在线观看| 4hu四虎永久在线影院成人| 国产亚洲短视频| 亚洲一级在线观看| 成人免费av网站| 日韩视频在线一区二区| 亚洲人123区| 国模套图日韩精品一区二区| 一本大道久久精品懂色aⅴ| 日韩女同互慰一区二区| 亚洲午夜一二三区视频| 国产精品一区二区在线播放 | 大白屁股一区二区视频| 在线成人av影院| 国产精品伦理一区二区| 久久99精品久久久久久| 欧美午夜片在线观看| 国产欧美日韩另类一区| 日本美女一区二区三区视频| 99久久国产综合精品色伊| 精品国产凹凸成av人导航| 亚洲国产精品久久人人爱蜜臀| 成人综合婷婷国产精品久久 | 日韩黄色免费网站| 91麻豆国产福利在线观看| 久久免费视频色| 久久精品国产亚洲a| 欧美女孩性生活视频| 一区二区三区 在线观看视频| 成人教育av在线| 日本一二三不卡| 国产成人精品免费| 精品奇米国产一区二区三区| 奇米综合一区二区三区精品视频| 在线观看www91| 亚洲免费看黄网站| 91在线云播放| 亚洲视频精选在线| 99在线精品免费| 亚洲乱码国产乱码精品精小说 | 国产a区久久久| 精品国产乱码久久久久久影片| 五月天亚洲精品| 欧美久久一二区| 毛片av一区二区|