代码搜索:Cache优化
找到约 10,000 项符合「Cache优化」的源代码
代码结果 10,000
www.eeworm.com/read/375968/9341129
h cache.h
#ifndef CACHE_H
#define CACHE_H
#include "STDAFX.h"
//Cache的最小存储单元
struct Cache_unit
{
bool valid;
bool changed;
sc_uint mark;
sc_uint data;
};
struct Cache_block
{
/
www.eeworm.com/read/375059/9374432
c cache.c
/*****************************************
NAME: cache.c
DESC: CACHE test
HISTORY:
2002.03.07: ver 0.0
*****************************************/
#include "def.h"
#include "option.h"
www.eeworm.com/read/375059/9374460
h cache.h
#ifndef __CACHE_H__
#define __CACHE_H__
void Test_ICache(void);
#endif /*__CACHE_H__*/
www.eeworm.com/read/178210/9414574
o cache.o
www.eeworm.com/read/177586/9446473
py cache.py
# The contents of this file are subject to the BitTorrent Open Source License
# Version 1.1 (the License). You may not copy or use this file, in either
# source code or executable form, except in com
www.eeworm.com/read/176476/9497135
c cache.c
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the l
www.eeworm.com/read/176363/9500959