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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? ixnpedlimagemgr_p.h

?? u-boot1.3.0的原碼,從配了網(wǎng)絡(luò)驅(qū)動和FLASH的驅(qū)動,并該用ESC竟如
?? H
字號:
/** * @file IxNpeDlImageMgr_p.h * * @author Intel Corporation * @date 14 December 2001 * @brief This file contains the private API for the ImageMgr module * *  * @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 --*//** * @defgroup IxNpeDlImageMgr_p IxNpeDlImageMgr_p * * @brief The private API for the IxNpeDl ImageMgr module *  * @{ */#ifndef IXNPEDLIMAGEMGR_P_H#define IXNPEDLIMAGEMGR_P_H/* * Put the user defined include files required. */#include "IxNpeDl.h"#include "IxOsalTypes.h"/* * #defines and macros *//** * @def IX_NPEDL_IMAGEMGR_SIGNATURE * * @brief Signature found as 1st word in a microcode image library */#define IX_NPEDL_IMAGEMGR_SIGNATURE      0xDEADBEEF/** * @def IX_NPEDL_IMAGEMGR_END_OF_HEADER * * @brief Marks end of header in a microcode image library */#define IX_NPEDL_IMAGEMGR_END_OF_HEADER  0xFFFFFFFF/** * @def IX_NPEDL_IMAGEID_NPEID_OFFSET * * @brief Offset from LSB of NPE ID field in Image ID */#define IX_NPEDL_IMAGEID_NPEID_OFFSET      24/** * @def IX_NPEDL_IMAGEID_DEVICEID_OFFSET * * @brief Offset from LSB of Device ID field in Image ID */#define IX_NPEDL_IMAGEID_DEVICEID_OFFSET   28/** * @def IX_NPEDL_IMAGEID_FUNCTIONID_OFFSET * * @brief Offset from LSB of Functionality ID field in Image ID */#define IX_NPEDL_IMAGEID_FUNCTIONID_OFFSET 16/** * @def IX_NPEDL_IMAGEID_MAJOR_OFFSET * * @brief Offset from LSB of Major revision field in Image ID */#define IX_NPEDL_IMAGEID_MAJOR_OFFSET      8/** * @def IX_NPEDL_IMAGEID_MINOR_OFFSET * * @brief Offset from LSB of Minor revision field in Image ID */#define IX_NPEDL_IMAGEID_MINOR_OFFSET      0/** * @def IX_NPEDL_NPEID_FROM_IMAGEID_GET * * @brief Macro to extract NPE ID field from Image ID */#define IX_NPEDL_NPEID_FROM_IMAGEID_GET(imageId) \    (((imageId) >> IX_NPEDL_IMAGEID_NPEID_OFFSET) & \     IX_NPEDL_NPEIMAGE_NPEID_MASK)/** * @def IX_NPEDL_DEVICEID_FROM_IMAGEID_GET * * @brief Macro to extract NPE ID field from Image ID */#define IX_NPEDL_DEVICEID_FROM_IMAGEID_GET(imageId) \    (((imageId) >> IX_NPEDL_IMAGEID_DEVICEID_OFFSET) & \     IX_NPEDL_NPEIMAGE_DEVICEID_MASK)/** * @def IX_NPEDL_FUNCTIONID_FROM_IMAGEID_GET * * @brief Macro to extract Functionality ID field from Image ID */#define IX_NPEDL_FUNCTIONID_FROM_IMAGEID_GET(imageId) \    (((imageId) >> IX_NPEDL_IMAGEID_FUNCTIONID_OFFSET) & \     IX_NPEDL_NPEIMAGE_FIELD_MASK)/** * @def IX_NPEDL_MAJOR_FROM_IMAGEID_GET * * @brief Macro to extract Major revision field from Image ID */#define IX_NPEDL_MAJOR_FROM_IMAGEID_GET(imageId) \    (((imageId) >> IX_NPEDL_IMAGEID_MAJOR_OFFSET) & \     IX_NPEDL_NPEIMAGE_FIELD_MASK)/** * @def IX_NPEDL_MINOR_FROM_IMAGEID_GET * * @brief Macro to extract Minor revision field from Image ID */#define IX_NPEDL_MINOR_FROM_IMAGEID_GET(imageId) \    (((imageId) >> IX_NPEDL_IMAGEID_MINOR_OFFSET) & \     IX_NPEDL_NPEIMAGE_FIELD_MASK)/* * Prototypes for interface functions *//** * @fn IX_STATUS ixNpeDlImageMgrMicrocodeImageLibraryOverride (UINT32 *clientImageLibrary) *  * @brief This instructs NPE Downloader to use client-supplied microcode image library. * * This function sets NPE Downloader to use a client-supplied microcode image library * instead of the standard image library which is included by the NPE Downloader. *  * @note THIS FUNCTION HAS BEEN DEPRECATED AND SHOULD NOT BE USED. *       It will be removed in a future release. *       See API header file IxNpeDl.h for more information.              * * @pre *    - <i>clientImageLibrary</i> should point to a microcode image library valid for use *      by the NPE Downloader component. * * @post *    - the client-supplied image uibrary will be used for all subsequent operations *      performed by the NPE Downloader * * @return *      - IX_SUCCESS if the operation was successful *      - IX_FAIL if the client-supplied image library did not contain a valid signature */ IX_STATUSixNpeDlImageMgrMicrocodeImageLibraryOverride (UINT32 *clientImageLibrary);/** * @fn IX_STATUS ixNpeDlImageMgrImageListExtract (IxNpeDlImageId *imageListPtr,                                                    UINT32 *numImages) *  * @brief Extracts a list of images available in the NPE microcode image library. * * @param IxNpeDlImageId* [out] imageListPtr - pointer to array to contain *                                                 a list of images. If NULL, *                                                 only the number of images  *                                                 is returned (in *                                                 <i>numImages</i>) * @param UINT32* [inout] numImages - As input, it points to a variable *                                      containing the number of images which *                                      can be stored in the *                                      <i>imageListPtr</i> array. Its value *                                      is ignored as input if *                                      <i>imageListPtr</i> is NULL. As an *                                      output, it will contain number of *                                      images in the image library. *  * This function reads the header of the microcode image library and extracts a list of the * images available in the image library.  It can also be used to find the number of * images in the image library. *  * @note THIS FUNCTION HAS BEEN DEPRECATED AND SHOULD NOT BE USED. *       It will be removed in a future release. *       See API header file IxNpeDl.h for more information.              * * @pre *    - if <i>imageListPtr</i> != NULL, <i>numImages</i> should reflect the *      number of image Id elements the <i>imageListPtr</i> can contain. * * @post *    - <i>numImages</i> will reflect the number of image Id's found in the *      microcode image library. * * @return *      - IX_SUCCESS if the operation was successful *      - IX_FAIL otherwise */ IX_STATUSixNpeDlImageMgrImageListExtract (IxNpeDlImageId *imageListPtr,				   UINT32 *numImages);/** * @fn IX_STATUS ixNpeDlImageMgrImageLocate (IxNpeDlImageId *imageId,                                               UINT32 **imagePtr,                                               UINT32 *imageSize) *  * @brief Finds a image block in the NPE microcode image library.  * * @param IxNpeDlImageId* [in] imageId - the id of the image to locate * @param UINT32** [out] imagePtr        - pointer to the image in memory * @param UINT32* [out] imageSize        - size (in 32-bit words) of image *  * This function examines the header of the microcode image library for the location * and size of the specified image. *  * @note THIS FUNCTION HAS BEEN DEPRECATED AND SHOULD NOT BE USED. *       It will be removed in a future release. *       See API header file IxNpeDl.h for more information.              * * @pre * * @post * * @return  *      - IX_SUCCESS if the operation was successful *      - IX_FAIL otherwise */ IX_STATUSixNpeDlImageMgrImageLocate (IxNpeDlImageId *imageId,			      UINT32 **imagePtr,			      UINT32 *imageSize);/** * @fn IX_STATUS ixNpeDlImageMgrLatestImageExtract (IxNpeDlImageId *imageId) *  * @brief Finds the most recent version of an image in the NPE image library.  * * @param IxNpeDlImageId* [inout] imageId - the id of the image  *  * This function determines the most recent version of a specified image by its  * higest major release and minor revision numbers *  * @note THIS FUNCTION HAS BEEN DEPRECATED AND SHOULD NOT BE USED. *       It will be removed in a future release. *       See API header file IxNpeDl.h for more information.              * * @pre * * @post * * @return  *      - IX_SUCCESS if the operation was successful *      - IX_FAIL otherwise */ IX_STATUSixNpeDlImageMgrLatestImageExtract (IxNpeDlImageId *imageId);/** * @fn void ixNpeDlImageMgrStatsShow (void) * * @brief This function will display the statistics of the IxNpeDl ImageMgr *        module * * @return none */voidixNpeDlImageMgrStatsShow (void);/** * @fn void ixNpeDlImageMgrStatsReset (void) * * @brief This function will reset the statistics of the IxNpeDl ImageMgr *        module * * @return none */voidixNpeDlImageMgrStatsReset (void);/** * @fn IX_STATUS ixNpeDlImageMgrImageGet (UINT32 *imageLibrary,                                          UINT32 imageId,                                          UINT32 **imagePtr,                                          UINT32 *imageSize) *  * @brief Finds a image block in the NPE microcode image library.  * * @param UINT32*  [in]  imageLibrary - the image library to use * @param UINT32   [in]  imageId      - the id of the image to locate * @param UINT32** [out] imagePtr     - pointer to the image in memory * @param UINT32*  [out] imageSize    - size (in 32-bit words) of image *  * This function examines the header of the specified microcode image library * for the location and size of the specified image.  It returns a pointer to * the image in the <i>imagePtr</i> parameter. * If no image library is specified (imageLibrary == NULL), then the default * built-in image library will be used. *  * @pre * * @post * * @return  *      - IX_SUCCESS if the operation was successful *      - IX_FAIL otherwise */ IX_STATUSixNpeDlImageMgrImageFind (UINT32 *imageLibrary,                          UINT32 imageId,			  UINT32 **imagePtr,			  UINT32 *imageSize);#endif /* IXNPEDLIMAGEMGR_P_H *//** * @} defgroup IxNpeDlImageMgr_p */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久免费美女视频| 婷婷国产v国产偷v亚洲高清| 一区二区三区四区蜜桃| 日本不卡一区二区| 91视频在线看| 一区二区三区国产精华| 欧洲精品在线观看| 欧美激情在线看| 日韩av一级电影| 亚洲精品一区二区三区蜜桃下载| 亚洲乱码中文字幕| 欧美亚洲动漫另类| 中文字幕人成不卡一区| 国产一区二区三区久久久| 欧美精品久久99| 精品亚洲国内自在自线福利| 欧美激情一区三区| 欧美视频精品在线| 国产毛片一区二区| 欧美电影免费观看高清完整版在| 一区二区三区四区激情 | 国产精品一卡二卡在线观看| 国产精品私人自拍| 5566中文字幕一区二区电影 | 成人精品一区二区三区中文字幕| 日韩小视频在线观看专区| 国产精品18久久久久久久久| 亚洲美女一区二区三区| 精品久久久久一区| 久久精品国产亚洲一区二区三区| 国产精品视频看| 欧美日韩国产高清一区二区| 一区二区高清视频在线观看| 欧美mv和日韩mv的网站| 91福利社在线观看| 国产精品一区一区三区| 五月婷婷另类国产| 日韩一区中文字幕| 久久综合久久鬼色中文字| 91在线porny国产在线看| 亚洲丝袜自拍清纯另类| 91视频国产观看| 韩国女主播成人在线| 精品电影一区二区| 欧美色成人综合| 91视频免费看| 亚洲国产aⅴ成人精品无吗| 国产欧美日本一区视频| 欧美www视频| 欧美美女一区二区| 欧美午夜不卡视频| 免费高清视频精品| 亚洲成a人片在线不卡一二三区| 欧美日韩国产区一| 欧美最新大片在线看| 成人18视频日本| 国产成人综合在线观看| 亚洲精品欧美综合四区| 56国语精品自产拍在线观看| 色综合中文字幕国产| 一区二区视频免费在线观看| 国产精品视频yy9299一区| 2020国产精品| 91美女片黄在线观看91美女| 天堂在线亚洲视频| 亚洲国产成人高清精品| 亚洲综合在线电影| 一区二区三区 在线观看视频| 欧美一区二区三区四区久久| 7878成人国产在线观看| 国产精品12区| 国产裸体歌舞团一区二区| 亚洲欧美日韩国产综合在线| 亚洲欧美一区二区三区久本道91 | 久久久亚洲午夜电影| 91美女蜜桃在线| 99re视频这里只有精品| 亚洲va在线va天堂| 欧美国产一区视频在线观看| 国产精品拍天天在线| 1区2区3区国产精品| 91精品久久久久久久99蜜桃| 日韩一区国产二区欧美三区| 日韩欧美精品在线| 久久久国产精品麻豆| 国产欧美日韩视频在线观看| 在线电影欧美成精品| 日韩三级电影网址| 久久伊人中文字幕| 亚洲欧美在线高清| 偷拍与自拍一区| 狠狠色综合日日| 99国产欧美另类久久久精品| 欧美日韩视频在线一区二区| 精品国产一区二区国模嫣然| 欧美中文字幕一区| 日韩一级二级三级| 亚洲国产精品成人综合色在线婷婷 | 日韩一区二区电影网| 日韩精品中午字幕| 欧美丝袜丝交足nylons图片| 26uuu久久天堂性欧美| 欧美亚洲高清一区二区三区不卡| 成人性生交大片免费看中文网站| 丁香婷婷深情五月亚洲| 成人午夜精品在线| 久久99精品久久久久| 欧美日韩1区2区| 欧美亚洲日本国产| 色综合天天综合网国产成人综合天| 美女视频一区二区| 国产精品夜夜嗨| 欧美成人a∨高清免费观看| 亚洲国产cao| 久久电影网站中文字幕 | 欧美一级黄色录像| 久久亚洲二区三区| 美女看a上一区| 成人免费毛片aaaaa**| 欧美在线你懂得| 亚洲品质自拍视频网站| 99久久99久久综合| 中文字幕不卡一区| 亚洲国产欧美在线| 欧洲一区在线观看| 精品国产乱码久久久久久牛牛| 午夜精品视频在线观看| 欧美日韩第一区日日骚| 欧美精品一区二区精品网| 日本不卡不码高清免费观看| 91精品国产色综合久久ai换脸| 亚洲一区二区欧美激情| 欧美日韩二区三区| 国产精品网友自拍| 麻豆成人av在线| 日韩欧美一级在线播放| 亚洲精品网站在线观看| 一本大道综合伊人精品热热| 亚洲精品乱码久久久久久黑人| 久久精品国产色蜜蜜麻豆| 日韩精品一区二区三区四区 | 男女男精品视频网| 成人av电影在线| 成人欧美一区二区三区1314| 久久国产精品一区二区| 精品国产第一区二区三区观看体验| 黄色小说综合网站| 国产亚洲精品资源在线26u| 高清不卡一区二区| 日韩免费高清视频| 国产精品夜夜嗨| 中文字幕日韩av资源站| 国产成人在线视频网站| 一区在线观看视频| 国产乱子伦视频一区二区三区| 欧美午夜不卡视频| 中文字幕一区二区日韩精品绯色| 九色综合国产一区二区三区| 欧美成人女星排行榜| 国产成人精品亚洲午夜麻豆| 专区另类欧美日韩| 欧美美女一区二区三区| 国产精品自拍av| 亚洲欧美国产三级| 成人黄色777网| 亚洲成人高清在线| 久久一区二区三区国产精品| 久久精品国产99| 国产精品卡一卡二| 69成人精品免费视频| 五月天丁香久久| 国产日产欧美一区二区视频| 一本在线高清不卡dvd| 毛片av一区二区| 亚洲欧美视频在线观看| 精品日产卡一卡二卡麻豆| 26uuu精品一区二区三区四区在线| 亚洲妇熟xx妇色黄| 在线欧美一区二区| 亚洲尤物视频在线| 久久蜜桃av一区精品变态类天堂 | 亚洲午夜久久久久久久久久久 | 欧美视频一区二区| 国产一区不卡视频| 久久女同性恋中文字幕| 色婷婷激情综合| 国产乱色国产精品免费视频| 午夜久久福利影院| 欧美日韩国产在线观看| 成人美女视频在线观看18| 国产精品天美传媒| 日韩视频永久免费| 欧洲一区在线观看| 成人精品高清在线| 亚洲人精品午夜| 久久久久久久综合色一本| 91麻豆精品久久久久蜜臀| 色综合视频一区二区三区高清| 亚洲精品国产精华液| 欧美国产精品v|