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

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

?? ixnpedlimagemgr_p.h

?? uboot的源碼,包括了常見的處理器平臺
?? 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一区二区三区免费野_久草精品视频
91精品麻豆日日躁夜夜躁| 亚洲精品老司机| 椎名由奈av一区二区三区| 日韩高清欧美激情| 成人福利电影精品一区二区在线观看 | 91精品国产全国免费观看| 国产精品乱码一区二三区小蝌蚪| 一区二区三区免费| 国产·精品毛片| 精品免费日韩av| 日本不卡123| 欧美日韩一区二区三区高清| 国产精品传媒在线| 国产中文字幕精品| 欧美一卡二卡在线观看| 一区二区三区丝袜| 成人18精品视频| 亚洲国产成人午夜在线一区| 久久精品国产精品亚洲红杏| 欧美高清dvd| 亚洲成人一二三| 欧美日韩一区二区在线观看视频| 亚洲免费电影在线| www.欧美色图| 国产精品久久久久久亚洲毛片| 国产在线看一区| 欧美一级理论性理论a| 亚洲成人黄色影院| 欧美日韩一区中文字幕| 一区二区三区日韩在线观看| 99re这里只有精品首页| 国产精品美女一区二区| 成人午夜av影视| 亚洲国产精品激情在线观看| 丁香婷婷综合色啪| 国产蜜臀97一区二区三区| 国产精品88av| 国产欧美日韩在线看| 国产成人综合精品三级| 中文字幕免费在线观看视频一区| 国产91富婆露脸刺激对白| 中文字幕第一区第二区| www.日韩大片| 一区二区三区中文在线| 欧美日本一道本| 日本不卡免费在线视频| 久久久三级国产网站| 国产一区二区伦理| 国产精品二三区| 日本伦理一区二区| 三级久久三级久久| 欧美成人精品二区三区99精品| 极品美女销魂一区二区三区免费| 日韩美女天天操| 国产精品2024| 亚洲精品亚洲人成人网 | 亚洲国产日韩一区二区| 在线播放91灌醉迷j高跟美女| 日韩精品电影在线| 久久久久久麻豆| 一本色道久久综合亚洲91| 婷婷激情综合网| 久久精品一区八戒影视| 色88888久久久久久影院按摩| 奇米精品一区二区三区在线观看| 国产日韩精品久久久| 91久久精品国产91性色tv| 蜜臀久久99精品久久久画质超高清| 久久精品欧美一区二区三区麻豆| 91视频免费观看| 日本成人在线网站| 国产精品国产自产拍高清av王其 | 欧美一区二区免费| 国产盗摄女厕一区二区三区| 国产精品久久免费看| 欧美视频中文一区二区三区在线观看| 日韩黄色免费电影| 欧美极品美女视频| 91麻豆精品国产91久久久久久久久| 国产高清不卡一区| 天天免费综合色| 亚洲欧洲日产国产综合网| 日韩欧美一区二区免费| 91在线云播放| 国产精品一二三四| 亚洲一区二区综合| 久久午夜电影网| 欧美日韩不卡在线| 97国产一区二区| 国产在线看一区| 奇米色一区二区| 亚洲午夜久久久久久久久久久| 久久精品一级爱片| 精品国产乱码久久久久久闺蜜| 精品视频全国免费看| 国产大陆精品国产| 激情综合色综合久久综合| 天天影视涩香欲综合网| 亚洲视频综合在线| 国产欧美精品日韩区二区麻豆天美| 日韩一级成人av| 欧美日韩久久久一区| 在线观看日产精品| 在线精品视频一区二区三四| 成人免费看黄yyy456| 国内国产精品久久| 麻豆成人综合网| 日日夜夜一区二区| 亚洲成人1区2区| 亚洲大尺度视频在线观看| 一区二区在线观看免费| 国产精品国产三级国产普通话蜜臀| 久久久久九九视频| 久久久久国产免费免费| 久久精品日产第一区二区三区高清版| 欧美大肚乱孕交hd孕妇| 日韩一级片在线播放| 欧美一区日韩一区| 91麻豆精品国产自产在线观看一区| 欧美中文字幕一区| 欧美日韩亚洲综合一区二区三区| 欧美日韩一区二区三区在线看| 在线精品视频免费观看| 欧美日韩另类国产亚洲欧美一级| 欧美日韩一区二区三区不卡| 欧美日韩国产免费| 日韩精品中文字幕一区二区三区| 日韩精品一区二区三区老鸭窝| 欧美tk丨vk视频| 国产日产欧美一区二区视频| 国产精品美女久久久久高潮| 国产精品美女久久久久av爽李琼| ...av二区三区久久精品| 中文字幕一区av| 亚洲国产精品一区二区www在线| 日韩精品91亚洲二区在线观看| 免费成人你懂的| 国产精品亚洲一区二区三区妖精| 国产99久久久国产精品免费看| 99久久婷婷国产精品综合| 色悠悠久久综合| 91精品国产入口| 国产精品无遮挡| 亚洲午夜免费视频| 极品瑜伽女神91| 色婷婷激情综合| 在线综合视频播放| 国产精品视频第一区| 亚洲va欧美va人人爽| 久久精品免费观看| 91女厕偷拍女厕偷拍高清| 制服.丝袜.亚洲.中文.综合| 久久九九久久九九| 亚洲影视在线播放| 国产一区二区三区美女| 91视频com| 欧美大片日本大片免费观看| 国产精品色婷婷久久58| 丝袜亚洲另类欧美综合| 国产99久久久国产精品潘金| 欧美日韩日日骚| 国产日韩欧美综合一区| 亚洲一区二区av在线| 国产精品夜夜爽| 69久久99精品久久久久婷婷| 中文天堂在线一区| 日韩综合小视频| 99久久久精品免费观看国产蜜| 日韩久久免费av| 亚洲一线二线三线久久久| 国产一区二区精品久久| 欧美精品丝袜久久久中文字幕| 国产精品福利影院| 国产一区二区三区观看| 91精品国产全国免费观看| 亚洲黄色小视频| av影院午夜一区| 中文字幕乱码日本亚洲一区二区| 视频一区二区三区中文字幕| 色婷婷精品久久二区二区蜜臂av| 久久久亚洲精品一区二区三区| 日本美女一区二区三区视频| 在线观看不卡视频| 中文字幕在线观看一区| 国产一区二区三区av电影| 日韩欧美在线123| 午夜不卡在线视频| 欧美做爰猛烈大尺度电影无法无天| 国产午夜精品美女毛片视频| 狠狠色狠狠色综合| 欧美精品一区二区在线观看| 免费成人深夜小野草| 欧美巨大另类极品videosbest | 91精品1区2区| 欧美国产精品一区二区三区| 麻豆一区二区三区| 日韩天堂在线观看| 蜜桃精品视频在线| 日韩一卡二卡三卡| 精品制服美女久久|