代码搜索:AddBlock
找到约 21 项符合「AddBlock」的源代码
代码结果 21
www.eeworm.com/read/482826/6613885
h firstfit.h
//first-fit策略函数
void* mm_request(int n); //分配指定大小的内存
//first fit
void* mm_request(int n)
{
memState *temp;
// memState *p;
temp = head;
int find = 0;
while(temp!=NULL)
{
if(te
www.eeworm.com/read/482826/6613917
h firstfit.h
//first-fit策略函数
void* mm_request(int n); //分配指定大小的内存
//first fit
void* mm_request(int n)
{
memState *temp;
// memState *p;
temp = head;
int find = 0;
while(temp!=NULL)
{
if(te
www.eeworm.com/read/261194/11660858
c movie.c
/*
Ming, an SWF output library
Copyright (C) 2002 Opaque Industries - http://www.opaque.net/
This library is free software; you can redistribute it and/or
modify it under the terms o
www.eeworm.com/read/288587/8620236
h dvb_calogo.h
#ifndef _DVB_CA_LOGO_H_
#define _DVB_CA_LOGO_H_
#define LOGO_START_ADDR (0x200000 - 6 * 64 * 1024)
#define LOGO_MAX_SECTOR (2)
#define MAX_BLOCK (256)
#define MAX_LOGO_SIZE (64 * 1024 - 6 + 4)
www.eeworm.com/read/252489/12279127
fd resource.fd
!MS$FREEFORM
! Microsoft Developer Studio generated include file.
! Used by Draw.rc
!
integer, parameter :: IDM_ABOUTBOX = 16
integer, parameter :: IDD_ABOUTBOX
www.eeworm.com/read/422309/10643985
m4 vorbis.m4
# Configure paths for libvorbis
# Jack Moffitt 10-21-2000
# Shamelessly stolen from Owen Taylor and Manish Singh
# thomasvs added check for vorbis_bitrate_addblock which is new in r
www.eeworm.com/read/427042/1984332
m4 vorbis.m4
# Configure paths for libvorbis
# Jack Moffitt 10-21-2000
# Shamelessly stolen from Owen Taylor and Manish Singh
# thomasvs added check for vorbis_bitrate_addblock which is new in r
www.eeworm.com/read/414527/2145549
m4 vorbis.m4
# Configure paths for libvorbis
# Jack Moffitt 10-21-2000
# Shamelessly stolen from Owen Taylor and Manish Singh
# thomasvs added check for vorbis_bitrate_addblock which is new in r
www.eeworm.com/read/401888/2335256
java blockbo.java
package com.lovo.bo;
import java.util.List;
import com.lovo.po.BlockPO;
public interface BlockBO{
/**添加版块*/
public boolean addBlock(BlockPO po);
/**删除版块*/
public boolean delectBlock(i