代码搜索:Memory

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

代码结果 10,000
www.eeworm.com/read/229459/14337311

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/229304/14346025

c qc-memory.c

/* Start of file */ /* {{{ [fold] Comments */ /* * qce-ga, linux V4L driver for the QuickCam Express and Dexxa QuickCam * * memory.c - contains all needed memory management functions * * This pr
www.eeworm.com/read/229304/14346027

h qc-memory.h

#ifndef _LINUX_QC_MEMORY_H #define _LINUX_QC_MEMORY_H #include void *qc_mm_rvmalloc(unsigned long size); void qc_mm_rvfree(void *mem, unsigned long size); int qc_mm_remap(struct vm_area
www.eeworm.com/read/228773/14364088

c memory2.c

#include #include #include #define A_MEGABYTE (1024 * 1024) int main() { char *some_memory; size_t size_to_allocate = A_MEGABYTE; int megs_obtained
www.eeworm.com/read/228773/14364096

c memory1.c

#include #include #include #define A_MEGABYTE (1024 * 1024) int main() { char *some_memory; int megabyte = A_MEGABYTE; int exit_code = EXIT_FAILURE;
www.eeworm.com/read/228773/14364097

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/228773/14364102

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/228773/14364104

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/228773/14364129

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