代码搜索:Memory

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

代码结果 10,000
www.eeworm.com/read/176535/9494095

c memory allocation.c

/******************** memory allocation function ********************/ #include #include // 159.335 assignment 3 // This is a working memory allocation program // but it is
www.eeworm.com/read/372449/9510496

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/372449/9510503

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/372449/9510505

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/372449/9510511

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/372449/9510514

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/372449/9510537

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/371050/9570171

h sexp_memory.h

/** SFSEXP: Small, Fast S-Expression Library version 1.0 Written by Matthew Sottile (matt@lanl.gov) Copyright (2004). The Regents of the University of California. This material was produced under U
www.eeworm.com/read/371050/9570180

c sexp_memory.c

/** SFSEXP: Small, Fast S-Expression Library version 1.0 Written by Matthew Sottile (matt@lanl.gov) Copyright (2004). The Regents of the University of California. This material was produced under U
www.eeworm.com/read/174886/9570731

class sys_memory.class