代码搜索:Memory
找到约 10,000 项符合「Memory」的源代码
代码结果 10,000
www.eeworm.com/read/283196/9036780
c memory6.c
#include
#define ONE_K (1024)
int main()
{
char *some_memory;
int exit_code = EXIT_FAILURE;
some_memory = (char *)malloc(ONE_K);
if (some_memory != NULL) {
free(s
www.eeworm.com/read/283196/9036787
c memory3.c
#include
#include
#include
#define ONE_K (1024)
int main() {
char *some_memory;
int size_to_allocate = ONE_K;
int megs_obtained = 0;
int ks_obtaine
www.eeworm.com/read/283196/9036790
c memory4.c
#include
#include
#define ONE_K (1024)
int main() {
char *some_memory;
char *scan_ptr;
some_memory = (char *)malloc(ONE_K);
if (some_memory == NULL) exit(E
www.eeworm.com/read/283196/9036812
c memory5a.c
#include
#include
#include
int main() {
char *some_memory = (char *)0;
printf("A read from null %s\n", some_memory);
sprintf(some_memory, "A write to nul
www.eeworm.com/read/381152/9107291
c share_memory.c
#include
#include
#include
#include
#include
#define BUFSZ 2048
int main()
{
int shmid;
char *shmadd;
if((shmid=shmget(IPC_PRI
www.eeworm.com/read/183413/9159758
uv2 memory.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (MCB2140 Board), 0x0005 // Tools: ''
Group (Startup Code)
Group (Disk Image)
Group (Source Code)
Group (Documentation)
F
www.eeworm.com/read/183413/9159775
bak memory_opt.bak
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
www.eeworm.com/read/183306/9170639
c memory_1.c
www.eeworm.com/read/379944/9171867
v testbench_memory.v
// Simple tester for Memory Interface
// NB. Run in a maximised xterm, with a small font on a very hi-res screen.
`include "MemoryInterface.v"
`define DEBUG
module top;
// All regs
reg [31:0