代码搜索:Allocation
找到约 5,034 项符合「Allocation」的源代码
代码结果 5,034
www.eeworm.com/read/223512/14637654
m modulate.m
function y = modulate(x,b,e, s2,s4,s16,s64,s256)
% function y = modulate(x,b,e, s2,s4,s16,s64,s256)
%
% y - modulated output, in the form of a row vector
% x - a vector of input bits, for all th
www.eeworm.com/read/118392/14873940
c dw_gtk_viewport.c
/*
* File: dw_gtk_viewport.c
*
* Copyright (C) 2001-2003 Sebastian Geerken
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of t
www.eeworm.com/read/219389/14882994
h ac3_decoder.h
/*****************************************************************************
* ac3_decoder.h : ac3 decoder interface
*****************************************************************************
www.eeworm.com/read/207654/15265952
c dblclock.c
/*
* Auth: Eric Harlow
* File: dblclock.c
* Linux application development
*
* Double buffered clock (no flickering)
*/
#include
#include
#include
/* --- Backing p
www.eeworm.com/read/207654/15265956
c graph.c
/*
* File: graph.c
* Auth: Eric Harlow
*
*
*/
#include
#include "device.h"
void DrawDevice (GtkWidget *drawing_area, char *szName, GdkGC *pen, int bAvg);
int NetworkButtonDown ();
i
www.eeworm.com/read/162614/5531289
c ext-4.c
/* Test for scanf formats. %a extensions. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-std=gnu89 -Wformat" } */
#include "format.h"
void
foo (char **sp
www.eeworm.com/read/161054/5563287
c memcheck.c
/*
*----------------------------------------------------------------------
* T-Kernel
*
* Copyright (C) 2004-2006 by Ken Sakamura. All rights reserved.
* T-Kernel is distributed under th
www.eeworm.com/read/393697/8269283
cpp 2.cpp
#include "iostream"
using namespace std;
#define false 0
#define true 1
#define w 10 //最大进程数
#define r 20 //最大资源数
int m ; //总进程数
int n ; //资源种类
int all_resource[r]={10,5,7};//系统中各种资源的数目总和
www.eeworm.com/read/392882/8320747
c 死锁避免.c
#include "string.h"
#include "stdio.h"
#include "stdlib.h"
#include "time.h"
#include "conio.h"
#include "dos.h"
#define m 7 //资源类型的种类
#define n 1000 //系统进程的个数
int head; //正在运行的
www.eeworm.com/read/369636/9637549
cpp bank.cpp
#include "string.h"
#include "iostream.h"
#define M 5 //总进程数
#define N 3 //总资源数
#define FALSE 0
#define TRUE 1
//M个进程对N类资源最大资源需求量
int MAX[M][N]={{6,4,5},{2,5,1},{4,2,5},{3,2,4},{1,2,4}};