代码搜索:FREE 开发教程
找到约 10,000 项符合「FREE 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/438449/7731096
c nxtval_free.c
void MPE_Counter_free( MPI_Win *counter_win )
{
int counter_flag, *counter_mem, flag, *myval_p;
MPI_Win_get_attr( *counter_win, MPI_WIN_BASE,
&counter_mem, &counter_flag );
MPI_W
www.eeworm.com/read/438449/7731098
c ga_free.c
#include "ga.h"
int ga_free( GA ga )
{
int flag;
void *ga_win_ptr;
MPI_Win_get_attr( ga->ga_win, MPI_WIN_BASE, &ga_win_ptr,
&flag );
if (!flag) return 1;
MPI_Win_free( &ga
www.eeworm.com/read/436097/7776514
inc vieweroptions_free.inc
//{$define PRO}
{$define CMDLINE}
{$define MEMINI}
{$define HELP}
{$define MENX}
{$define EXIF}
www.eeworm.com/read/434785/7801672
c free_block.c
#include "memory.h"
void free_one_block(int physical_block_number)
{
int i,bn,front,back;
struct physical_block *b,*b_f,*b_b;
struct file_window *f;
struct memory_process *p;
struct memo
www.eeworm.com/read/434785/7801689
c block_free.c
#include "memory.h"
#define NO_FREE_BLOCK (-1)
int get_free_block(int memory_process_number)
{
int bn;
struct physical_block *b;
if((bn=(*(memory_body->free_physical_block)))
www.eeworm.com/read/399279/7875833
f90 free.f90
! --- Free Coding Format
PROGRAM Factorial
INTEGER :: i, f=1 ! Initializing as f=1
DO i = 1, 10
f = f * i ; PRINT *, i, '! =', f
END DO
END PROGRAM Factorial
www.eeworm.com/read/199143/7884336
gif free2.gif
www.eeworm.com/read/246953/12696127
c tst_free.c
#include
#include /* for printf */
void tst_free (void) {
void * mbuf;
printf ("Allocating memory\n");
mbuf = malloc (1000);
if (mbuf == NULL)