代码搜索:Allocation
找到约 5,034 项符合「Allocation」的源代码
代码结果 5,034
www.eeworm.com/read/341877/12057301
c strat.c
/*
** strat.c 10-5-91 Robert Mashlan, public domain
**
** Interface functions to DOS 3.0+ set allocation strategy
** and get allocation strategy functions via int 21h,
** function 58h.
www.eeworm.com/read/340608/12144783
cpp new_afp.cpp
/*****************************************************************************/
/* new_afp v2.54 */
/* Copyright (c) 1996-2004 Texas Instr
www.eeworm.com/read/254031/12166543
h ac3filesrc.h
#ifndef f_AC3FILESRC_H
#define f_AC3FILESRC_H
#include
#include
#include
/* AC3 audio held in a WAV file
wFormatTag WAVE_FORMAT_DOLBY_AC3
n
www.eeworm.com/read/151339/12218492
c jcss.c
#include"stdio.h"
#include"stdlib.h"
#include "string.h"
#define WAIT 1
#define READY 2
#define FINISH 3
int Available=3;/*剩余资源数量*/
int Max[3]={10,4,9};/*每个进程所需的最大资源量*/
int Allocation[3]={5,
www.eeworm.com/read/151051/12237788
cpp nrutil.cpp
//nrutil.cpp
#include "StdAfx.h"
#include
#include
#include
//报告错误
void nrerror(char *error_text)
{
printf("Numerical Recipes run-time error...\n");
printf
www.eeworm.com/read/252932/12254277
cpp nrutil.cpp
//nrutil.cpp
#include "StdAfx.h"
#include
#include
#include
//报告错误
void nrerror(char *error_text)
{
printf("Numerical Recipes run-time error...\n");
printf
www.eeworm.com/read/339039/12266474
c 例1-2.c
/* Note:Your choice is C IDE */
#include
#include
main()
{
char * str;
if((str=(char * )malloc(10))==NULL)
{
printf("\n Allocation is failed.");
e
www.eeworm.com/read/252691/12267793
c util.c
/*
* FAAC - Freeware Advanced Audio Coder
* Copyright (C) 2001 Menno Bakker
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser Ge
www.eeworm.com/read/150542/12287039
c nrutil.c
/*
** File: nrutil.c
** Purpose: Memory allocation routines borrowed from the
** book "Numerical Recipes" by Press, Flannery, Teukolsky,
** and Vetterling.
** state sequenc
www.eeworm.com/read/252147/12297949
txt 什么是虚拟文件分配表.txt
VFAT (Virtual File <mark>Allocation</mark> Table)
虚拟文件分配表
VFAT是Windows 95/98等以后操作系统的重要组成部分,它主要用于处理长文件名。长文件名不能为FAT文件系统处理。文件分配表是保存文件在硬盘上保存位置的一张表。原来的DOS操作系统要求文件名不能多于8个字符,因此限制了用户的使用。VFAT的功能类似于一个驱动程序,它运行于保护模式下,使用VCAC ...