代码搜索:alloc

找到约 10,000 项符合「alloc」的源代码

代码结果 10,000
www.eeworm.com/read/148696/12441447

cpp global_alloc.cpp

#include #include "Global_Alloc.h" #if defined (WIN32) #define IS_WIN32 TRUE #else #define IS_WIN32 FALSE #endif #define IS_NT IS_WIN32 && (BOOL)(GetVersion() < 0x
www.eeworm.com/read/231733/14222489

h alloc_2.h

// // alloc_2.h // // 该文件为比特分配表2 // static int sblim_2 = 8; static unsigned int alloc_2_size = 80; static unsigned int alloc_2[80][6] = { {0, 0, 0, 4, 0, 0}, {0, 1, 3, 5, 1, 0}, {0, 2,
www.eeworm.com/read/231733/14222502

h alloc_1.h

// // alloc_1.h // // 该文件为比特分配表1 // static int sblim_1 = 30; static unsigned int alloc_1_size = 300; static unsigned int alloc_1[300][6] = { {0, 0, 0, 4, 0, 0}, {0, 1, 3, 5, 1, 0}, {0,
www.eeworm.com/read/231733/14222517

h alloc_0.h

// // alloc_0.h // // 该文件为比特分配表0 // static int sblim_0 = 27; static unsigned int alloc_0_size = 288; static unsigned int alloc_0[288][6] = { {0, 0, 0, 4, 0, 0}, {0, 1, 3, 5, 1, 0}, {0
www.eeworm.com/read/128628/14286951

rc global_alloc.rc

#include "windows.h" #include "Global_Alloc.h" MYAPP ICON DISCARDABLE "GENERIC.ICO" MYAPP MENU DISCARDABLE BEGIN POPUP "&File" BEGIN MENUITEM "E&xit",
www.eeworm.com/read/128628/14286953

h global_alloc.h

#define IDM_EXIT 100 #define IDM_TEST 200 #define IDM_ABOUT 301 LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM); LRESULT CALLBACK About (HWND, UINT, WPARAM
www.eeworm.com/read/128628/14286954

mak global_alloc.mak

# Nmake macros for building Windows 32-Bit apps all: Global~1.exe # Update the resource if necessary Global~1.res: Global~1.rc Global~1.h rc -r -fo Global~1.res Global~1.rc # Update t
www.eeworm.com/read/128628/14286956

cpp global_alloc.cpp

#include #include "Global_Alloc.h" #if defined (WIN32) #define IS_WIN32 TRUE #else #define IS_WIN32 FALSE #endif #define IS_NT IS_WIN32 && (BOOL)(GetVersion() < 0x
www.eeworm.com/read/227599/14420144

h my_alloc.h

/* Copyright (C) 2000 MySQL AB This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software
www.eeworm.com/read/226770/14452745

h gen_alloc.h

/* Public domain. */ #ifndef GEN_ALLOC_H #define GEN_ALLOC_H #define GEN_ALLOC_typedef(ta,type,field,len,a) \ typedef struct ta { type *field; unsigned int len; unsigned int a; } ta; #endif