代码搜索:Allocation
找到约 5,034 项符合「Allocation」的源代码
代码结果 5,034
www.eeworm.com/read/271693/10983744
m radchanalloc.m
function [k, obkn] = radchanalloc(b, obk, bdes)
% DESCRIPTION [k ,obkn] = radchanalloc(b, obk, bdes)
% Radio Channel Allocation.
% INPUT
% b -- Bases where channels are requested.
% obk --
www.eeworm.com/read/470865/6901193
makefile
ALLOCOBSJ = dlfusc.o allocation.o dlamc.o dlpusc.o ulpusc.o
CC = gcc -g
LD = gcc -g
CFLAGS =
analyze: analyze.o
$(LD) -o $@ analyze.o
allocation: dlfusc.o allocation.o dlamc.o dlpusc.o
$(LD) -o $@
www.eeworm.com/read/470496/6912220
cpp casteroidpool.cpp
/*
* ============================================================================
* Name : CGfxTimer from CGfxTimer.h
* Part of : roids
* Created : 05/12/2001 by Twm Davies
* Implementa
www.eeworm.com/read/124341/6965382
c dw_image.c
/*
* File: dw_image.c
*
* Copyright (C) 2001 Sebastian Geerken ,
* Jorge Arellano Cid
*
* This program is free software; you can redistrib
www.eeworm.com/read/465930/7049007
todo
FS:
support extended attributes (in their own blocks/udf 2.0 streams)
do delayed block assignments
make sure reading works on big endian and/or 64 bit machines
make sure block allocati
www.eeworm.com/read/223598/7104154
c dw_image.c
/*
* File: dw_image.c
*
* Copyright (C) 2001 Sebastian Geerken ,
* Jorge Arellano Cid
*
* This program is free software; you can redistrib
www.eeworm.com/read/189342/7115361
cpp no_free.cpp
#include
void main(void)
{
char *pointer;
do {
pointer = new char[10000];
if (pointer)
cout
www.eeworm.com/read/189342/7115363
cpp new_far.cpp
#include
void main(void)
{
char far *pointer;
do {
pointer = new far char[10000];
if (pointer)
cout
www.eeworm.com/read/456598/7343980
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