代码搜索:AddBlock
找到约 21 项符合「AddBlock」的源代码
代码结果 21
www.eeworm.com/read/256722/11977080
cs admin_addblock.aspx.cs
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
usin
www.eeworm.com/read/482826/6613876
h worstfit.h
//worst-fit策略函数
void* mm_request(int n)
{
int blocksize;
int maxblocksize=0;
memState *temp;
memState *maxBlock;
temp = head;
maxBlock = head;
while(temp!=NULL) //此循环找出空间最大的空闲块由maxBl
www.eeworm.com/read/482826/6613882
h worstfit.h
//worst-fit策略函数
void* mm_request(int n)
{
int blocksize;
int maxblocksize=0;
memState *temp;
memState *maxBlock;
temp = head;
maxBlock = head;
while(temp!=NULL) //此循环找出空间最大的空闲块由maxBl
www.eeworm.com/read/482826/6613912
h nextfit.h
void* mm_request(int n)
{
// memState *addBlock = (memState*)malloc(sizeof(memState));
memState *temp = nextfit;//上次分配成功时的位置
//temp = temp->next; //从上次分配成功位置的下一个开始搜索
while(temp!=NULL) //搜索到末
www.eeworm.com/read/482826/6613943
h nextfit.h
void* mm_request(int n)
{
// memState *addBlock = (memState*)malloc(sizeof(memState));
memState *temp = nextfit;//上次分配成功时的位置
//temp = temp->next; //从上次分配成功位置的下一个开始搜索
while(temp!=NULL) //搜索到末
www.eeworm.com/read/406885/11433349
c romload2.c
/*******************************************************************************
File Name : romload2.c
Description : ROM boot loader (phase 2)
(C)Copyright ST Microelectronics 1998
Re