代码搜索:Allocation
找到约 5,034 项符合「Allocation」的源代码
代码结果 5,034
www.eeworm.com/read/404377/11486581
cmd test2407.cmd
/*********************************************************************
* Filename: example_c.cmd *
*
www.eeworm.com/read/401520/11556576
cpp cpp1.cpp
#include
#include
#include
#include
#define M 5 /*进程数*/
#define N 3 /*资源数*/
//系统可用资源向量
int Available[N] = {3,3,2};
//最大需求向量
int Max[M][N] = {
www.eeworm.com/read/158276/11628884
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/260790/11701907
c dw_hruler.c
/*
* File: dw_hruler.c
*
* Copyright (C) 2000 Jorge Arellano Cid
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Gene
www.eeworm.com/read/260790/11701909
c dw_gtk_viewport.c
/*
* File: dw_gtk_viewport.c
*
* Copyright (C) 2001 Sebastian Geerken
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the G
www.eeworm.com/read/346994/11706305
c calloc.c
/* Demonstrates calloc(). */
#include
#include
int main( void )
{
unsigned long num;
int *ptr;
printf("Enter the number of type int to allocate: ");
www.eeworm.com/read/260557/11719002
h header.h
#include
#include
#include
#include
#include
#define STRBUF 256 /* Default string buffer size */
#define SEPARATOR(a)
www.eeworm.com/read/259463/11788782
lst chap17.lst
listing 1
#include
#include
float *get_mem(void)
{
float *p;
p = calloc(100, sizeof(float));
if(!p) {
printf("Allocation Error\n");
exit(1);
}
ret
www.eeworm.com/read/258434/11864640
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.