代码搜索:Memory
找到约 10,000 项符合「Memory」的源代码
代码结果 10,000
www.eeworm.com/read/251577/12333293
h memory_functions.h
#ifndef COMSTL_INCL_COMSTL_H_COMSTL
# include
#endif /* !COMSTL_INCL_COMSTL_H_COMSTL */
#ifdef STLSOFT_CF_PRAGMA_MESSAGE_SUPPORT
# pragma message("This file is now obsolete, an
www.eeworm.com/read/251540/12338715
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/251540/12338725
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/251540/12338728
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/251540/12338734
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/251540/12338739
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/251540/12338773
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/149714/12355492
d memory_asm.d
memory_asm.o: /cygdrive/e/Ubicom/sdk/pkg/ipLibC/src/ip2k/memory_asm.S \
config/config.h /cygdrive/e/Ubicom/sdk/pkg/ipHAL/include/ip2k/ip2000.h \
/cygdrive/e/Ubicom/sdk/pkg/ipHAL/include/ip2k/ip2
www.eeworm.com/read/149714/12355724
o memory_asm.o
www.eeworm.com/read/149560/12365382