代码搜索:kernel
找到约 10,000 项符合「kernel」的源代码
代码结果 10,000
www.eeworm.com/read/289120/8574892
makefile
AR =ar
AS =as
CC =gcc -mcpu=i386
LD =ld
CFLAGS =-Wall -fstrength-reduce -fomit-frame-pointer \
-nostdinc -I../include
CPP =gcc -E -nostdinc -I../include
.c.s:
$(CC) $(CFLAGS) \
-S -o $*.s $<
.c.o
www.eeworm.com/read/432630/8585664
pro chapter09laplacefiltering.pro
; Chapter09LaplaceFiltering.pro
PRO Chapter09LaplaceFiltering
file = FILEPATH('nyny.dat', SUBDIRECTORY = ['examples', 'data'])
imageSize = [768, 512]
image = READ_BINARY(file, DATA_DIMS = im
www.eeworm.com/read/432630/8585920
pro chapter09highpassfiltering.pro
; Chapter09HighPassFiltering.pro
PRO Chapter09HighPassFiltering
file = FILEPATH('nyny.dat', SUBDIRECTORY = ['examples', 'data'])
imageSize = [768, 512]
image = READ_BINARY(file, DATA_DIMS =
www.eeworm.com/read/432630/8586171
pro chapter09sharpening.pro
; Chapter09Sharpening.pro
PRO Chapter09Sharpening
file = FILEPATH('mr_knee.dcm', SUBDIRECTORY = ['examples', 'data'])
image = READ_DICOM(file)
imageSize = SIZE(image, /DIMENSIONS)
DEVICE,
www.eeworm.com/read/432630/8586279
pro chapter09directionfiltering.pro
; Chapter09DirectionFiltering.pro
PRO Chapter09DirectionFiltering
file = FILEPATH('nyny.dat', SUBDIRECTORY = ['examples', 'data'])
imageSize = [768, 512]
image = READ_BINARY(file, DATA_DIMS
www.eeworm.com/read/187912/8591371
makefile
#
# Makefile for linux.
# If you don't have '-mstring-insns' in your gcc (and nobody but me has :-)
# remove them from the CFLAGS defines.
#
AS86 =as -0 -a
CC86 =cc -0
LD86 =ld -0
AS =gas
www.eeworm.com/read/187912/8591532
h memory.h
/*
* NOTE!!! memcpy(dest,src,n) assumes ds=es=normal data segment. This
* goes for all kernel functions (ds=es=kernel space, fs=local data,
* gs=null), as well as for all well-behaving user p
www.eeworm.com/read/187912/8591547
makefile
#
# Makefile for the FREAX-kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's somet
www.eeworm.com/read/187912/8591588
makefile
AR =gar
AS =gas
CC =gcc
LD =gld
CFLAGS =-Wall -O -fstrength-reduce -fcombine-regs -fomit-frame-pointer \
-mstring-insns -nostdinc -I../include
CPP =gcc -E -nostdinc -I../include
.c.s:
$(CC
www.eeworm.com/read/288856/8598184
inc head.inc
.386p
.model flat,stdcall
option casemap:none
include \masm32\include\windows.inc
include \masm32\include\user32.inc
include \masm32\include\kernel32.inc
include \masm32\include\advapi32.inc
in